Available Theme

type AvailableTheme

This type governs the Default Theme constant and the Theme Option interface.

Its value is used in the App Component to set the theme class on the body element, which is a class defined in styles.scss.

available-theme.type.ts
export type AvailableTheme = 'automatic' | 'dark' | 'light';

Last updated