Theming
Theming in Unistyles
differs from other libraries as it doesn’t impose any specific syntax.
Any JavaScript object can be a Unistyles theme.
There is also no limit to the number of themes. You can even register dozens of them eg. when you needs to support some premium ones.
Theming is optional. If you dont’t register themes with StyleSheet.configure the library will use an empty object by default.
Create a theme
You can organize your themes however you want:
If you use TypeScript you need to override the library’s type:
Finally, to register the theme, you need to call StyleSheet.configure
:
Where name
is the unique name of your theme.
Select theme
If you’ve registered more than one theme, Unistyles won’t know which one is the initial one. At this point, you have 3 options:
- If you know the initial theme upfront, select it with
settings
from StyleSheet.configure
- If you need to resolve the user-selected theme during runtime, use a synchronous function:
- Use adaptive themes, which are described below
Get the current theme
To get the current theme you can access it in the StyleSheet.create
function:
Get the current theme name
To get the current theme name, import UnistylesRuntime
:
Adaptive themes
Adaptive themes allow Unistyles to automatically manage the selection of your themes based on device color scheme settings. To enable this, you need to meet two conditions:
- register two themes with reserved names
light
anddark
:
- Explicitly enable
adaptiveThemes
:
Toggle adaptive themes during runtime
To toggle adaptive theme support at any point, use UnistylesRuntime
:
With disabled adaptive themes, you can now change the theme.
Check if adaptive themes are enabled
To check if adaptive themes are enabled, again use UnistylesRuntime
:
Get device color scheme
Check your device color preference with UnistylesRuntime
:
Available options are: dark
, light
or unspecified
for devices that don’t support color schemes.
If your app’s theme is not changing based on device settings, please refer to the FAQ
Change theme
To change the theme at any time, simply call setTheme
function:
Update theme during runtime
Unistyles allows you to update your theme during runtime. This is useful if you want to show the user interface with default colors and later alter theme based on user preferences.
If you update the currently selected theme, it will be automatically applied, and Unistyles will notify all stylesheets about the change. Otherwise, theme will be updated silently.
To update the theme during runtime, call updateTheme
function, and return new theme object:
Update rootView background color during runtime
You can also change dynamically the root view background color with UnistylesRuntime
:
Changing rootView background color is useful when your app supports different orientations and you want to match the background color with your theme while transitioning.