You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
471 B

  1. // Registry of available themes for the Storybook theme switcher.
  2. // `value` is written to the `data-theme` attribute on <html> and must match
  3. // the `[data-theme="..."]` selector used in the corresponding `file`.
  4. export const themes = [
  5. {
  6. name: 'Standard',
  7. value: 'standard',
  8. file: 'theme-standard.scss',
  9. },
  10. {
  11. name: 'Digital Blue',
  12. value: 'digitalblue',
  13. file: 'theme-digitalblue.scss',
  14. },
  15. ];
  16. export const defaultTheme = themes[0].value;