UI Color & Theme
Apply a light or dark theme to the Luciq UI in your KMP app, and use ThemeConfig for deeper control over colors, backgrounds, text, and fonts.
Color theme (light/dark)
LuciqKmp.setColorTheme(ColorTheme.Light)
LuciqKmp.setColorTheme(ColorTheme.Dark)Custom theme (ThemeConfig)
val theme = ThemeConfig(
primaryColor = 0xFF6200EE.toInt(),
backgroundColor = 0xFFFFFFFF.toInt(),
primaryTextColor = 0xFF000000.toInt()
// ... other fields as per your platform
)
LuciqKmp.setTheme(theme)Fullscreen (Android)
Custom branding image
Override strings
Last updated