Version 1
Home
/
Notifications
/
UIKit
Notifications v1
Notifications

By default, Sendbird Chat UIKit for Notifications provides two themes: Light and Dark for all templates and notification channels. But you can customize the theme to create your own brand identity on Sendbird Dashboard under Notifications > Theme. If you select the default theme when creating a new template on the dashboard, it uses the same global theme settings as the UIKit. See the guide below on how to change the UIKit's theme settings.


Set up the default theme

Copy link

The Light or Dark theme in Chat UIKit Android for Notifications can be applied using the SendbirdUIKit.setDefaultThemeMode() method.

Light theme

Copy link

This is the default theme for all templates if another theme hasn't been specified.

JavaKotlin
SendbirdUIKit.setDefaultThemeMode(SendbirdUIKit.ThemeMode.Light);

Dark theme

Copy link

The Dark theme can be applied as shown below:

JavaKotlin
SendbirdUIKit.setDefaultThemeMode(SendbirdUIKit.ThemeMode.Dark);