// Registry of available themes for the Storybook theme switcher. // `value` is written to the `data-theme` attribute on 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', }, { name: 'Farbvariante 10', value: 'colorvariant-10', file: 'theme-colorvariant-10.scss', }, { name: 'Farbvariante 11', value: 'colorvariant-11', file: 'theme-colorvariant-11.scss', }, { name: 'Farbvariante 12', value: 'colorvariant-12', file: 'theme-colorvariant-12.scss', }, { name: 'Farbvariante 13', value: 'colorvariant-13', file: 'theme-colorvariant-13.scss', }, { name: 'Farbvariante 14', value: 'colorvariant-14', file: 'theme-colorvariant-14.scss', }, { name: 'Farbvariante 02', value: 'colorvariant-02', file: 'theme-colorvariant-02.scss', }, { name: 'Farbvariante 03', value: 'colorvariant-03', file: 'theme-colorvariant-03.scss', }, { name: 'Farbvariante 04', value: 'colorvariant-04', file: 'theme-colorvariant-04.scss', }, { name: 'Farbvariante 05', value: 'colorvariant-05', file: 'theme-colorvariant-05.scss', }, { name: 'Farbvariante 06', value: 'colorvariant-06', file: 'theme-colorvariant-06.scss', }, { name: 'Farbvariante 07', value: 'colorvariant-07', file: 'theme-colorvariant-07.scss', }, { name: 'Farbvariante 08', value: 'colorvariant-08', file: 'theme-colorvariant-08.scss', }, { name: 'Farbvariante 09', value: 'colorvariant-09', file: 'theme-colorvariant-09.scss', }, { name: 'Farbvariante 15', value: 'colorvariant-15', file: 'theme-colorvariant-15.scss', }, ]; export const defaultTheme = themes[0].value;