AepColor
Data class representing colors for both light and dark themes in Experience Platform UI components.
Public Properties
| Property | Type | Description |
|---|---|---|
light | The color to use in light theme mode. | |
dark | The color to use in dark theme mode. |
Usage Example
Kotlin
Copied to your clipboardimport com.adobe.marketing.mobile.aepcomposeui.uimodels.AepColorimport androidx.compose.ui.graphics.Colorval unreadBgColor = AepColor(light = Color(0xFFE3F2FD), // Light blue for light themedark = Color(0xFF1E3A5F) // Dark blue for dark theme)
