AboutSupportDeveloper GuideVersion 18.0.9

Hierarchy

Properties

label: string
logoUrl?: string
notificationIndicatorColors?: Record<string, NotificationIndicatorColorsSet>

NOTE: Only used in Notifications

Used for providing color overrides of notification indicators or defining custom colors that clients could target.

Example

const themeOptions = {
default: 'light',
palettes: {...}
notificationIndicatorColors: {
red: {
background: '#FF0000',
foreground: '#FFFFDD'
},
customred: {
// If `foreground` is not defined it will default to `#FFFFFF`
background: '#FF0011'
}
}
};