選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

88 行
1.9 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. name: 'Farbvariante 05',
  57. value: 'colorvariant-05',
  58. file: 'theme-colorvariant-05.scss',
  59. },
  60. {
  61. name: 'Farbvariante 06',
  62. value: 'colorvariant-06',
  63. file: 'theme-colorvariant-06.scss',
  64. },
  65. {
  66. name: 'Farbvariante 07',
  67. value: 'colorvariant-07',
  68. file: 'theme-colorvariant-07.scss',
  69. },
  70. {
  71. name: 'Farbvariante 08',
  72. value: 'colorvariant-08',
  73. file: 'theme-colorvariant-08.scss',
  74. },
  75. {
  76. name: 'Farbvariante 09',
  77. value: 'colorvariant-09',
  78. file: 'theme-colorvariant-09.scss',
  79. },
  80. {
  81. name: 'Farbvariante 15',
  82. value: 'colorvariant-15',
  83. file: 'theme-colorvariant-15.scss',
  84. },
  85. ];
  86. export const defaultTheme = themes[0].value;