Theme Options

const THEME_OPTIONS

This constant defines the theme options shown in the Settings Page Component.

theme-options.constant.ts
export const THEME_OPTIONS: ThemeOption[] = [
  {
    icon: 'contrast',
    nameKey: 'automatic',
    value: 'automatic',
  },
  {
    icon: 'light_mode',
    nameKey: 'light',
    value: 'light',
  },
  {
    icon: 'dark_mode',
    nameKey: 'dark',
    value: 'dark',
  },
];

Last updated