|
- // Registry of available themes for the Storybook theme switcher.
- // `value` is written to the `data-theme` attribute on <html> and must match
- // the `[data-theme="..."]` selector used in the corresponding `file`.
- export const themes = [
- {
- name: 'Standard',
- value: 'standard',
- file: 'theme-standard.scss',
- },
- {
- name: 'Digital Blue',
- value: 'digitalblue',
- file: 'theme-digitalblue.scss',
- },
- ];
-
- export const defaultTheme = themes[0].value;
|