Interface IapticTheme

Theme configuration for Iaptic components

{
* primaryColor: '#007AFF',
* secondaryColor: '#4CAF50',
* backgroundColor: '#FFFFFF',
* textColor: '#1A1A1A',
* secondaryTextColor: '#666666',
* borderColor: '#EEEEEE',
* successColor: '#4CAF50',
* warningColor: '#FF9800',
* errorColor: '#FF3B30'
* }
interface IapticTheme {
    backgroundColor: string;
    borderColor: string;
    errorColor?: string;
    primaryColor: string;
    secondaryColor: string;
    secondaryTextColor: string;
    successColor?: string;
    textColor: string;
    warningColor?: string;
}

Properties

backgroundColor: string

Background color for modals/cards

borderColor: string

Border and divider colors

errorColor?: string

Error states color

primaryColor: string

Primary brand color for buttons, highlights

secondaryColor: string

Secondary color for current plan badges, success states

secondaryTextColor: string

Secondary/subdued text color

successColor?: string

Success states color

textColor: string

Primary text color

warningColor?: string

Warning states color