You can customize the default light and dark themes to make the SDK look more like your application.

Kotlin
Java
If you want to switch the theme to dark mode, use the below method:
Kotlin
Java
Theme Builder provides additional color customization options such as setColorAccent and setTextColorPrimary.
Kotlin
val light: ZDTheme = ZDTheme.Builder(false).build()
val dark: ZDTheme = ZDTheme.Builder(true).build()
ZConfigUtil.setThemeBuilder(light)
ZDTheme light = new ZDTheme.Builder(false).build();
ZDTheme dark = new ZDTheme.Builder(true).build();
ZConfigUtil.setThemeBuilder(light)
