Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

58 рядки
1.3 KiB

  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. name: 'Farbvariante 10',
  17. value: 'colorvariant-10',
  18. file: 'theme-colorvariant-10.scss',
  19. },
  20. {
  21. name: 'Farbvariante 11',
  22. value: 'colorvariant-11',
  23. file: 'theme-colorvariant-11.scss',
  24. },
  25. {
  26. name: 'Farbvariante 12',
  27. value: 'colorvariant-12',
  28. file: 'theme-colorvariant-12.scss',
  29. },
  30. {
  31. name: 'Farbvariante 13',
  32. value: 'colorvariant-13',
  33. file: 'theme-colorvariant-13.scss',
  34. },
  35. {
  36. name: 'Farbvariante 14',
  37. value: 'colorvariant-14',
  38. file: 'theme-colorvariant-14.scss',
  39. },
  40. {
  41. name: 'Farbvariante 02',
  42. value: 'colorvariant-02',
  43. file: 'theme-colorvariant-02.scss',
  44. },
  45. {
  46. name: 'Farbvariante 03',
  47. value: 'colorvariant-03',
  48. file: 'theme-colorvariant-03.scss',
  49. },
  50. {
  51. name: 'Farbvariante 04',
  52. value: 'colorvariant-04',
  53. file: 'theme-colorvariant-04.scss',
  54. },
  55. ];
  56. export const defaultTheme = themes[0].value;