Skip to content

Theme Helper

To make managing the active theme easier, we provide a helper class to get, set and toggle the theme. Additionally, you can provide callbacks for when the theme gets changed!

script.ts
import {
import ThemeHelper
ThemeHelper
} from 'studiocms:ui/utils';
// Instanciate a new helper
const
const themeHelper: any
themeHelper
= new
import ThemeHelper
ThemeHelper
();
// Get the current theme. (One of `dark`, `light` or `system`)
const
const theme: any
theme
=
const themeHelper: any
themeHelper
.
any
getTheme
();
// Get the current theme but resolve the actual theme if `system` is selected
const
const resolvedTheme: any
resolvedTheme
=
const themeHelper: any
themeHelper
.
any
getTheme
(true);
// Set the theme to light
const themeHelper: any
themeHelper
.
any
setTheme
('light');
// Toggle the theme
const themeHelper: any
themeHelper
.
any
toggleTheme
();
// Register an element that should act as a toggle
const
const toggleButton: any
toggleButton
=
any
document
.
any
querySelector
<
type HTMLButtonElement = /*unresolved*/ any
HTMLButtonElement
>('#toggle-button');
const themeHelper: any
themeHelper
.
any
registerToggle
(
const toggleButton: any
toggleButton
);

Using the ThemeHelper class, you can listen to theme changes! This is useful when you have logic that needs to run whenever the color scheme changes, for example in a three.js canvas where you need to change an image (*cough cough* our login page *cough*).

script.ts
import {
import ThemeHelper
ThemeHelper
} from 'studiocms:ui/utils';
// Instanciate a new helper
const
const themeHelper: any
themeHelper
= new
import ThemeHelper
ThemeHelper
();
// Add a callback that gets called when the theme changes
const themeHelper: any
themeHelper
.
any
onThemeChange
((
newTheme: any
newTheme
) => {
// Your logic here!
});

Here’s a live example: Change the theme via the option in the top-right corner of your screen. If you’re on mobile, open the navbar and scroll all the way down. After you’ve changed the theme, check the text below:

Theme hasn’t changed yet.

Since @studiocms/ui is compatible with Starlight’s theme system, this even picks up on those changes.

One of the few things the ThemeHelper does not do is saving the users theme preference. This is by design, since we don’t want to force websites operating in the EU (and other GDPR-enforcing countries) to have to add a cookie notice just for a UI library. Instead, implementation of this functionality is up to the developers themselves.

As a starting point, here’s a barebones example of how to implement this:

Script Tag
import {
import ThemeHelper
ThemeHelper
, type
import Theme
Theme
} from 'studiocms:ui/utils';
const
const themeHelper: any
themeHelper
= new
import ThemeHelper
ThemeHelper
();
const themeHelper: any
themeHelper
.
any
onThemeChange
((
newTheme: Theme
newTheme
:
import Theme
Theme
) => {
any
localStorage
.
any
setItem
('theme-selection',
newTheme: Theme
newTheme
);
});

If you want to go even further, you can store this information in a cookie to retrieve it server-side.