// 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', }, ]; export const defaultTheme = themes[0].value;