hr-design-system-handlebars 1.11.12 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/.storybook/main.js +9 -0
  2. package/.storybook/manager.js +18 -18
  3. package/.storybook/preview.js +9 -1
  4. package/CHANGELOG.md +12 -0
  5. package/README.md +13 -2
  6. package/build/handlebars/handlebars.js +1 -1
  7. package/build/scripts/build.js +1 -1
  8. package/config.js +1 -0
  9. package/dist/assets/index.css +223 -190
  10. package/dist/views/components/base/image/icon.hbs +1 -1
  11. package/dist/views/components/base/link.hbs +11 -1
  12. package/dist/views/components/base/link_open.hbs +12 -13
  13. package/dist/views/components/base/link_v2.hbs +14 -0
  14. package/dist/views/components/button/button.hbs +9 -24
  15. package/dist/views/components/button/components/button_icon.hbs +2 -1
  16. package/dist/views/components/button/components/button_label.hbs +1 -1
  17. package/dist/views/components/button/link_button.hbs +6 -0
  18. package/dist/views/components/button/utilities/button_base_classes.hbs +1 -0
  19. package/dist/views/components/button/utilities/button_dimension_classes.hbs +1 -0
  20. package/dist/views/components/button/utilities/button_on_image_classes.hbs +39 -0
  21. package/dist/views/components/button/utilities/button_variation_classes.hbs +14 -0
  22. package/dist/views/components/content_nav/content_nav_container.hbs +1 -1
  23. package/dist/views/components/content_nav/content_nav_item.hbs +1 -1
  24. package/dist/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  25. package/dist/views/components/event/event_ticket_button.hbs +11 -9
  26. package/dist/views/components/grid/grid_group_highlight.hbs +1 -1
  27. package/dist/views/components/label/label_old.hbs +1 -1
  28. package/dist/views/components/mediaplayer/media_player.hbs +4 -22
  29. package/dist/views/components/mediaplayer/mediaplayer_button.hbs +9 -0
  30. package/dist/views/components/modal/modal.hbs +2 -2
  31. package/dist/views/components/site_header/brand_navigation/brand_navigation.hbs +1 -1
  32. package/dist/views/components/teaser/cluster/teaser_cluster.hbs +4 -1
  33. package/dist/views/components/teaser/cluster/teaser_cluster_byline.hbs +1 -1
  34. package/dist/views/components/teaser/cluster/teaser_cluster_item.hbs +1 -1
  35. package/dist/views/components/teaser/components/teaser_av_consumption_close_button.hbs +6 -20
  36. package/dist/views/components/teaser/components/teaser_byline.hbs +1 -1
  37. package/dist/views/components/teaser/components/teaser_image.hbs +6 -14
  38. package/dist/views/components/teaser/podcast/podcast_subscribe_button.hbs +18 -15
  39. package/dist/views/components/teaser/podcast/podcast_title.hbs +2 -2
  40. package/dist/views/components/teaser/tabbox/group_tabbox.hbs +4 -1
  41. package/dist/views/components/teaser/tabbox/teaser_tabbox.hbs +10 -11
  42. package/dist/views/components/teaser/teaser_poster.hbs +5 -1
  43. package/gulpfile.js +9 -0
  44. package/package.json +4 -2
  45. package/src/assets/css/custom-components.css +37 -38
  46. package/src/assets/css/custom-utilities.css +2 -2
  47. package/src/assets/fixtures/event/calendar/event_calendar_months.inc.json +5 -1
  48. package/src/assets/tailwind.css +54 -22
  49. package/src/stories/conventions-and-datastructure.mdx +217 -4
  50. package/src/stories/views/components/base/image/icon.hbs +1 -1
  51. package/src/stories/views/components/base/link.hbs +11 -1
  52. package/src/stories/views/components/base/link_open.hbs +12 -13
  53. package/src/stories/views/components/base/link_v2.hbs +14 -0
  54. package/src/stories/views/components/button/button.hbs +9 -24
  55. package/src/stories/views/components/button/button.mdx +186 -0
  56. package/src/stories/views/components/button/button.stories.js +508 -0
  57. package/src/stories/views/components/button/components/button_icon.hbs +2 -1
  58. package/src/stories/views/components/button/components/button_icon.mdx +25 -0
  59. package/src/stories/views/components/button/components/button_icon.stories.js +44 -0
  60. package/src/stories/views/components/button/components/button_label.hbs +1 -1
  61. package/src/stories/views/components/button/components/button_label.mdx +25 -0
  62. package/src/stories/views/components/button/components/button_label.stories.js +33 -0
  63. package/src/stories/views/components/button/link_button.hbs +6 -0
  64. package/src/stories/views/components/button/link_button.mdx +137 -0
  65. package/src/stories/views/components/button/link_button.stories.js +420 -0
  66. package/src/stories/views/components/button/utilities/button_base_classes.hbs +1 -0
  67. package/src/stories/views/components/button/utilities/button_dimension_classes.hbs +1 -0
  68. package/src/stories/views/components/button/utilities/button_on_image_classes.hbs +39 -0
  69. package/src/stories/views/components/button/utilities/button_variation_classes.hbs +14 -0
  70. package/src/stories/views/components/content_nav/content_nav_container.hbs +1 -1
  71. package/src/stories/views/components/content_nav/content_nav_item.hbs +1 -1
  72. package/src/stories/views/components/event/calendar/event_calendar_footer.hbs +1 -1
  73. package/src/stories/views/components/event/event_ticket_button.hbs +11 -9
  74. package/src/stories/views/components/grid/grid_group_highlight.hbs +1 -1
  75. package/src/stories/views/components/label/label_old.hbs +1 -1
  76. package/src/stories/views/components/mediaplayer/media_player.hbs +4 -22
  77. package/src/stories/views/components/mediaplayer/mediaplayer_button.hbs +9 -0
  78. package/src/stories/views/components/mediaplayer/mediaplayer_button.mdx +82 -0
  79. package/src/stories/views/components/mediaplayer/mediaplayer_button.stories.js +178 -0
  80. package/src/stories/views/components/modal/modal.hbs +2 -2
  81. package/src/stories/views/components/site_header/brand_navigation/brand_navigation.hbs +1 -1
  82. package/src/stories/views/components/teaser/cluster/teaser_cluster.hbs +4 -1
  83. package/src/stories/views/components/teaser/cluster/teaser_cluster_byline.hbs +1 -1
  84. package/src/stories/views/components/teaser/cluster/teaser_cluster_item.hbs +1 -1
  85. package/src/stories/views/components/teaser/components/teaser_av_consumption_close_button.hbs +6 -20
  86. package/src/stories/views/components/teaser/components/teaser_byline.hbs +1 -1
  87. package/src/stories/views/components/teaser/components/teaser_image.hbs +6 -14
  88. package/src/stories/views/components/teaser/fixtures/teaser_event_calendar_100_serif.json +1 -1
  89. package/src/stories/views/components/teaser/podcast/podcast_subscribe_button.hbs +18 -15
  90. package/src/stories/views/components/teaser/podcast/podcast_title.hbs +2 -2
  91. package/src/stories/views/components/teaser/tabbox/group_tabbox.hbs +4 -1
  92. package/src/stories/views/components/teaser/tabbox/teaser_tabbox.hbs +10 -11
  93. package/src/stories/views/components/teaser/teaser_poster.hbs +5 -1
  94. package/tailwind.config.js +8 -1
  95. package/dist/views/components/button/button_pseudo.hbs +0 -8
  96. package/dist/views/components/button/button_pseudo.inc.hbs +0 -18
  97. package/dist/views/components/button/button_pseudo_v2.hbs +0 -12
  98. package/dist/views/components/button/button_round.hbs +0 -23
  99. package/dist/views/components/button/button_round_classes.hbs +0 -46
  100. package/dist/views/components/button/button_transparent.hbs +0 -17
  101. package/dist/views/components/button/button_v2.hbs +0 -7
  102. package/dist/views/components/button/components/button_pseudo_link.hbs +0 -3
  103. package/src/stories/views/components/button/button_pseudo.hbs +0 -8
  104. package/src/stories/views/components/button/button_pseudo.inc.hbs +0 -18
  105. package/src/stories/views/components/button/button_pseudo_v2.hbs +0 -12
  106. package/src/stories/views/components/button/button_round.hbs +0 -23
  107. package/src/stories/views/components/button/button_round_classes.hbs +0 -46
  108. package/src/stories/views/components/button/button_transparent.hbs +0 -17
  109. package/src/stories/views/components/button/button_v2.hbs +0 -7
  110. package/src/stories/views/components/button/components/button_pseudo_link.hbs +0 -3
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "repository": "https://github.com/szuelch/hr-design-system-handlebars",
9
- "version": "1.11.12",
9
+ "version": "1.12.0",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -15,7 +15,7 @@
15
15
  "build-storybook-docs": "storybook build --docs",
16
16
  "build-storybook-docs-with-tailwind": "npm run build:tailwind && npm run build-storybook-docs",
17
17
  "build:tailwind": "postcss src/assets/tailwind.css -o dist/assets/index.css",
18
- "build": "npm run clean && npm run build:tailwind && node ./build/scripts/build.js",
18
+ "build": "yarn clean && yarn build:tailwind && node ./build/scripts/build.js && yarn preparePartialsForDelivery",
19
19
  "chromatic": "npx chromatic --project-token 84f1628f224a",
20
20
  "clean": "rimraf dist",
21
21
  "release": "npx auto shipit --base-branch=main",
@@ -23,6 +23,7 @@
23
23
  "optimize-svgs": "gulp optimizeSvgs",
24
24
  "parseJson": "gulp parseJson",
25
25
  "partialsToJs": "gulp convertPartialsToJs",
26
+ "preparePartialsForDelivery": "gulp preparePartialsForDelivery",
26
27
  "create-modernizr-config": "gulp createModernizrConfig",
27
28
  "merge-locatags": "gulp mergeLocatags"
28
29
  },
@@ -71,6 +72,7 @@
71
72
  "gulp-merge-json": "^2.1.2",
72
73
  "gulp-modernizr": "^4.0.3",
73
74
  "gulp-rename": "^2.0.0",
75
+ "gulp-replace": "^1.1.4",
74
76
  "gulp-svgmin": "^4.0.1",
75
77
  "gulp-svgstore": "^8.0.0",
76
78
  "handlebars": "^4.7.6",
@@ -42,12 +42,12 @@
42
42
  .headline-barrier:before,
43
43
  .headline-barrier:after {
44
44
  border-bottom: 1px solid;
45
- content: '';
46
- @apply pt-3.5 md:pt-5
45
+ content: '';
46
+ @apply pt-3.5 md:pt-5;
47
47
  }
48
48
  .justifyLine.headline-barrier:before,
49
49
  .justifyLine.headline-barrier:after {
50
- @apply pt-3.5
50
+ @apply pt-3.5;
51
51
  }
52
52
 
53
53
  /* PODCAST SEEK SLIDER*/
@@ -77,12 +77,11 @@
77
77
  /* CONTENT NAV ACCENTED GROUP MIXED*/
78
78
 
79
79
  .group-accented .autoSuggest .mixed-input {
80
- border-color: transparent!important;
80
+ border-color: transparent !important;
81
81
  height: 32px;
82
82
  border-bottom: none;
83
83
  }
84
84
 
85
-
86
85
  .ds-focus {
87
86
  @apply z-20;
88
87
  @apply focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
@@ -111,27 +110,23 @@
111
110
  }
112
111
 
113
112
  .ds-link {
114
- @apply block focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
113
+ @apply focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
115
114
  }
116
-
115
+
117
116
  .ds-link:focus:not(:focus-visible) {
118
117
  @apply shadow-none;
119
118
  }
120
119
 
121
- .ds-link-clusterTeaser {
122
- @apply block text-grey-scorpion focus:shadow-teaser-focus focus:shadow-focus-state focus:outline-none;
123
- }
124
-
125
- .ds-link-clusterTeaser:focus:not(:focus-visible) {
126
- @apply shadow-none;
120
+ .ds-link.ds-teaser-focus {
121
+ @apply focus:shadow-none;
127
122
  }
128
123
 
129
- .ds-link-inset {
130
- @apply block focus:ring-inset focus:ring-4 focus:outline-none focus:ring-focus-state ;
124
+ .ds-link-inset {
125
+ @apply focus:ring-inset focus:ring-4 focus:outline-none focus:ring-focus-state;
131
126
  }
132
127
 
133
128
  .ds-link-inset:focus:not(:focus-visible) {
134
- @apply ring-0;
129
+ @apply ring-0;
135
130
  }
136
131
 
137
132
  .ds-teaser-focus {
@@ -139,23 +134,23 @@
139
134
  }
140
135
 
141
136
  .ds-teaser-focus:focus::before,
142
- .ds-teaser-focus:focus + .ds-cta span {
137
+ .ds-teaser-focus:focus + .ds-cta > * {
143
138
  @apply shadow-teaser-focus;
144
139
  @apply shadow-focus-state;
145
140
  }
146
141
 
147
- .ds-teaser-focus:focus + .ds-cta span {
142
+ .ds-teaser-focus:focus + .ds-cta > * {
148
143
  @apply bg-button-inverted;
149
144
  @apply text-button-hollow;
150
145
  @apply border-none;
151
146
  }
152
147
 
153
148
  .ds-teaser-focus:focus:not(:focus-visible)::before,
154
- .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta span {
149
+ .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta > * {
155
150
  @apply shadow-none;
156
151
  }
157
152
 
158
- .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta span {
153
+ .ds-teaser-focus:focus:not(:focus-visible) + .ds-cta > * {
159
154
  @apply bg-transparent;
160
155
  @apply text-button-inverted;
161
156
  @apply border-solid;
@@ -164,10 +159,10 @@
164
159
  .ds-teaser-focus:focus {
165
160
  @apply outline-none;
166
161
  }
167
- /* ----------------Content NAV------------------ */
168
- /* ---------------- NAV ITEMS ------------------ */
162
+ /* ----------------Content NAV------------------ */
163
+ /* ---------------- NAV ITEMS ------------------ */
169
164
  .content-nav-item {
170
- @apply h-10;
165
+ @apply h-10;
171
166
  @apply text-base;
172
167
  @apply font-copy;
173
168
  @apply list-none;
@@ -180,7 +175,7 @@
180
175
  @apply hover:text-white;
181
176
  @apply hover:underline;
182
177
  }
183
- /* ----------------LIST - NAV ITEMS ------------------ */
178
+ /* ----------------LIST - NAV ITEMS ------------------ */
184
179
  .content-nav-item.content-nav-item-list {
185
180
  @apply w-full;
186
181
  @apply border;
@@ -191,13 +186,13 @@
191
186
  @apply w-full;
192
187
  @apply md:w-fit;
193
188
  }
194
- /* ----------------FLOW - NAV ITEMS ------------------ */
189
+ /* ----------------FLOW - NAV ITEMS ------------------ */
195
190
  .content-nav-item.content-nav-item-flow {
196
191
  @apply w-fit;
197
192
  @apply border;
198
193
  @apply hover:no-underline;
199
194
  }
200
- /* ----------------MIXED - NAV ITEMS ------------------ */
195
+ /* ----------------MIXED - NAV ITEMS ------------------ */
201
196
  .teaser-size-100 .content-nav-item.content-nav-item-mixed,
202
197
  .teaser-size-66 .content-nav-item.content-nav-item-mixed {
203
198
  @apply md:w-fit;
@@ -210,7 +205,6 @@
210
205
  @apply md:hover:text-white;
211
206
  @apply md:hover:!bg-content-nav;
212
207
  @apply md:hover:!fill-white;
213
-
214
208
  }
215
209
  .content-nav-item.content-nav-item-mixed {
216
210
  @apply w-full;
@@ -226,7 +220,7 @@
226
220
  @apply hover:!bg-white;
227
221
  @apply hover:!fill-content-nav;
228
222
  }
229
- /* ----------------DROPDOWN - NAV ITEMS ------------------ */
223
+ /* ----------------DROPDOWN - NAV ITEMS ------------------ */
230
224
  .content-nav-item.content-nav-item-dropdown {
231
225
  @apply w-full;
232
226
  @apply border-gray-400;
@@ -236,21 +230,20 @@
236
230
  @apply hover:text-content-nav;
237
231
  @apply hover:!bg-white;
238
232
  @apply hover:!fill-content-nav;
239
-
240
233
  }
241
- /* ---------------- NAV DROPDOWN - DROPDOWN ------------------ */
242
- .content-nav-dropdown_dropdown.-isDropdown {
234
+ /* ---------------- NAV DROPDOWN - DROPDOWN ------------------ */
235
+ .content-nav-dropdown_dropdown.-isDropdown {
243
236
  @apply flex;
244
237
  }
245
- .content-nav-dropdown_dropdown.-isMixed {
238
+ .content-nav-dropdown_dropdown.-isMixed {
246
239
  @apply flex;
247
240
  }
248
241
  .teaser-size-100 .content-nav-dropdown_dropdown.-isMixed,
249
- .teaser-size-66 .content-nav-dropdown_dropdown.-isMixed {
242
+ .teaser-size-66 .content-nav-dropdown_dropdown.-isMixed {
250
243
  @apply flex;
251
244
  @apply md:hidden;
252
245
  }
253
- /* ---------------- NAV DROPDOWN - CONTENT ------------------ */
246
+ /* ---------------- NAV DROPDOWN - CONTENT ------------------ */
254
247
  .content-nav-dropdown_content.-isOpen {
255
248
  @apply z-9999;
256
249
  @apply shadow-lg;
@@ -260,12 +253,12 @@
260
253
  @apply z-10;
261
254
  @apply hidden;
262
255
  }
263
- /* ---------------- NAV DROPDOWN - CONTENT - MIXED------------------ */
264
- .content-nav-dropdown_content.-isMixed {
256
+ /* ---------------- NAV DROPDOWN - CONTENT - MIXED------------------ */
257
+ .content-nav-dropdown_content.-isMixed {
265
258
  @apply hidden;
266
259
  }
267
260
  .teaser-size-100 .content-nav-dropdown_content.-isMixed,
268
- .teaser-size-66 .content-nav-dropdown_content.-isMixed {
261
+ .teaser-size-66 .content-nav-dropdown_content.-isMixed {
269
262
  @apply md:block;
270
263
  }
271
264
  .content-nav-dropdown_content.-isMixed.-isOpen {
@@ -281,4 +274,10 @@
281
274
  @apply hidden;
282
275
  @apply md:block;
283
276
  }
284
- }
277
+ }
278
+
279
+ /* ---------------------------- BUTTON ------------------------------ */
280
+ .ds-button-label + .ds-button-icon,
281
+ .ds-button-icon + .ds-button-label {
282
+ @apply ml-2;
283
+ }
@@ -118,10 +118,10 @@
118
118
  }
119
119
 
120
120
  .link-focus-inset {
121
- @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-inset focus-visible:ring-grey-scorpion/50;
121
+ @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-inset focus-visible:ring-gray-scorpion/50;
122
122
  }
123
123
  .link-focus {
124
- @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-grey-scorpion/50;
124
+ @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-gray-scorpion/50;
125
125
  }
126
126
  .link-focus-inset-white {
127
127
  @apply focus-visible:outline-none focus-visible:ring focus-visible:ring-inset focus-visible:ring-white/50;
@@ -389,7 +389,11 @@
389
389
  "url": "https://hr.de",
390
390
  "isTargetBlank": true,
391
391
  "webviewUrl": "",
392
- "readMoreText": ""
392
+ "readMoreText": "",
393
+ "cmsDocument": {
394
+ "title": "Tickets Finale Landeswettbewerb Jugend jazzt",
395
+ "sophoraId": "finale_landeswettbewerb_jugend_jazzt_100"
396
+ }
393
397
  }
394
398
  },
395
399
  "concertInfo": {
@@ -28,7 +28,7 @@
28
28
  /* Sendung */
29
29
  --color-label-program: theme('colors.blue.matisse');
30
30
  /* Download */
31
- --color-label-download: theme('colors.grey.scorpion');
31
+ --color-label-download: theme('colors.gray.scorpion');
32
32
  /* Pressemitteilungen */
33
33
  --color-label-pm: theme('colors.blue.deepCerulean');
34
34
  /* Sendungsdokument */
@@ -42,7 +42,7 @@
42
42
  /* Eventkalender */
43
43
  --color-label-event-calendar-title: theme('colors.teal.deeperPool');
44
44
  --color-eventcalendar-primary: var(--color-primary-ds);
45
- --color-eventcalendar-secondary: theme('colors.grey.boulder');
45
+ --color-eventcalendar-secondary: theme('colors.gray.boulder');
46
46
  /* Subline */
47
47
  --color-subline: var(--color-topline);
48
48
  /* Link */
@@ -53,7 +53,7 @@
53
53
  --color-stage-primary: theme('colors.blue.deepCerulean');
54
54
  --color-stage-link: var('--color-link');
55
55
  /* geoTag */
56
- --color-geoTag: theme('colors.grey.brightGray');
56
+ --color-geoTag: theme('colors.gray.brightGray');
57
57
  /* Cluster-Teaser */
58
58
  --color-cluster-teaser-link: theme('colors.blue.science');
59
59
  --color-cluster-teaser-headline: theme('colors.blue.congress');
@@ -61,6 +61,8 @@
61
61
  --color-button: var(--color-primary-ds);
62
62
  --color-button-inverted: theme('colors.white.DEFAULT');
63
63
  --color-button-hollow: theme('colors.blue.science');
64
+ --color-button-secondary: theme('colors.blue.science');
65
+ --color-button-ghost: theme('colors.blue.science');
64
66
  /* Media-Button */
65
67
  --color-media-button: theme('colors.blue.jellyBean');
66
68
  /* States */
@@ -71,7 +73,7 @@
71
73
  --color-podcast: theme('colors.blue.science');
72
74
  --color-podcast-text: var(--color-link);
73
75
  /* Byline */
74
- --color-byline: theme('colors.grey.scorpion');
76
+ --color-byline: theme('colors.gray.scorpion');
75
77
  /* Font */
76
78
  --font-title: theme('fontFamily.heading');
77
79
  --font-weight-title: theme('fontWeight.bold');
@@ -102,7 +104,7 @@
102
104
  /* Sendung */
103
105
  --color-label-program: theme('colors.blue.matisse');
104
106
  /* Download */
105
- --color-label-download: theme('colors.grey.scorpion');
107
+ --color-label-download: theme('colors.gray.scorpion');
106
108
  /* Pressemitteilungen */
107
109
  --color-label-pm: theme('colors.blue.deepCerulean');
108
110
  /* Kurzmeldung */
@@ -121,14 +123,20 @@
121
123
  --color-stage-text: theme('colors.white.DEFAULT');
122
124
  --color-stage-link: theme('colors.white.DEFAULT');
123
125
  /* geoTag */
124
- --color-geoTag: theme('colors.grey.brightGray');
126
+ --color-geoTag: theme('colors.gray.brightGray');
125
127
  /* Cluster-Teaser */
126
128
  --color-cluster-teaser-link: theme('colors.blue.science');
127
129
  --color-cluster-teaser-headline: theme('colors.blue.congress');
128
130
  /* Button */
129
131
  --color-button: var(--color-primary-ds);
132
+ --color-button-primary: theme('colors.blue.science');
133
+ --color-button-primary-dark: theme('colors.blue.congress');
134
+ --color-button-primary-inverted: theme('colors.white.DEFAULT');
135
+ --color-button-primary-inverted-dark: theme('colors.blue.accented');
130
136
  --color-button-inverted: theme('colors.white.DEFAULT');
131
137
  --color-button-hollow: theme('colors.blue.science');
138
+ --color-button-secondary: theme('colors.blue.science');
139
+ --color-button-ghost: theme('colors.blue.science');
132
140
  /* Media-Button */
133
141
  --color-media-button: theme('colors.blue.science');
134
142
  /* States */
@@ -165,7 +173,7 @@
165
173
  /* Sendung */
166
174
  --color-label-program: theme('colors.red.mexican');
167
175
  /* Download */
168
- --color-label-download: theme('colors.grey.scorpion');
176
+ --color-label-download: theme('colors.gray.scorpion');
169
177
  /* Event */
170
178
  --color-label-event: theme('colors.black.DEFAULT');
171
179
  /* Kurzmeldung */
@@ -190,6 +198,8 @@
190
198
  --color-button: var(--color-primary-ds);
191
199
  --color-button-inverted: theme('colors.white.DEFAULT');
192
200
  --color-button-hollow: theme('colors.purple.jazzberry');
201
+ --color-button-secondary: theme('colors.purple.jazzberry');
202
+ --color-button-ghost: theme('colors.purple.jazzberry');
193
203
  /* Media-Button */
194
204
  --color-media-button: var(--color-primary-ds);
195
205
  /* States */
@@ -222,7 +232,7 @@
222
232
  /* Sendung */
223
233
  --color-label-program: theme('colors.pink.rose');
224
234
  /* Download */
225
- --color-label-download: theme('colors.grey.scorpion');
235
+ --color-label-download: theme('colors.gray.scorpion');
226
236
  /* Event */
227
237
  --color-label-event: theme('colors.black.DEFAULT');
228
238
  /* Kurzmeldung */
@@ -246,6 +256,8 @@
246
256
  --color-button: var(--color-primary-ds);
247
257
  --color-button-inverted: theme('colors.white.DEFAULT');
248
258
  --color-button-hollow: theme('colors.blue.jellyBean');
259
+ --color-button-secondary: theme('colors.blue.jellyBean');
260
+ --color-button-ghost: theme('colors.blue.jellyBean');
249
261
  /* Media-Button */
250
262
  --color-media-button: var(--color-primary-ds);
251
263
  /* States */
@@ -262,7 +274,7 @@
262
274
  }
263
275
 
264
276
  [data-theme='hr-rundfunkrat'] {
265
- --color-primary-ds: theme('colors.grey.scorpion');
277
+ --color-primary-ds: theme('colors.gray.scorpion');
266
278
  --color-secondary-ds: #007179;
267
279
  --color-highlight-1: theme('colors.blue.accented');
268
280
  --color-highlight-2: theme('colors.orange.spicyCarrot');
@@ -278,7 +290,7 @@
278
290
  /* Sendung */
279
291
  --color-label-program: theme('colors.red.mexican');
280
292
  /* Download */
281
- --color-label-download: theme('colors.grey.scorpion');
293
+ --color-label-download: theme('colors.gray.scorpion');
282
294
  /* Event */
283
295
  --color-label-event: theme('colors.black.DEFAULT');
284
296
  /* Pressemitteilungen */
@@ -304,6 +316,8 @@
304
316
  --color-button: theme('colors.blue.deepCerulean');
305
317
  --color-button-inverted: theme('colors.white.DEFAULT');
306
318
  --color-button-hollow: theme('colors.blue.deepCerulean');
319
+ --color-button-secondary: theme('colors.blue.deepCerulean');
320
+ --color-button-ghost: theme('colors.blue.deepCerulean');
307
321
  /* Media-Button */
308
322
  --color-media-button: var(--color-primary-ds);
309
323
  /* States */
@@ -336,7 +350,7 @@
336
350
  /* Sendung */
337
351
  --color-label-program: theme('colors.red.mexican');
338
352
  /* Download */
339
- --color-label-download: theme('colors.grey.scorpion');
353
+ --color-label-download: theme('colors.gray.scorpion');
340
354
  /* Event */
341
355
  --color-label-event: theme('colors.black.DEFAULT');
342
356
  /* Pressemitteilungen */
@@ -362,6 +376,8 @@
362
376
  --color-button: var(--color-primary-ds);
363
377
  --color-button-inverted: theme('colors.white.DEFAULT');
364
378
  --color-button-hollow: var(--color-primary-ds);
379
+ --color-button-secondary: var(--color-primary-ds);
380
+ --color-button-ghost: var(--color-primary-ds);
365
381
  /* Media-Button */
366
382
  --color-media-button: var(--color-primary-ds);
367
383
  /* States */
@@ -380,7 +396,7 @@
380
396
  [data-theme='hr-sinfonieorchester'] {
381
397
  --color-primary-ds: theme('colors.red.burntUmber');
382
398
  --color-secondary-ds: #007179;
383
- --color-highlight-1: theme('colors.grey.alto');
399
+ --color-highlight-1: theme('colors.gray.alto');
384
400
  --color-highlight-2: theme('colors.orange.spicyCarrot');
385
401
 
386
402
  /* Medieninhalte, Video, Audio, Bildergalerie */
@@ -394,7 +410,7 @@
394
410
  /* Sendung */
395
411
  --color-label-program: theme('colors.green.goBen');
396
412
  /* Download */
397
- --color-label-download: theme('colors.grey.scorpion');
413
+ --color-label-download: theme('colors.gray.scorpion');
398
414
  /* Event */
399
415
  --color-label-event: theme('colors.black.DEFAULT');
400
416
  /* Kurzmeldung */
@@ -418,6 +434,8 @@
418
434
  --color-button: theme('colors.red.wellRead');
419
435
  --color-button-inverted: theme('colors.white.DEFAULT');
420
436
  --color-button-hollow: theme('colors.red.wellRead');
437
+ --color-button-secondary: theme('colors.red.wellRead');
438
+ --color-button-ghost: theme('colors.red.wellRead');
421
439
  /* Media-Button */
422
440
  --color-media-button: theme('colors.red.wellRead');
423
441
  /* States */
@@ -450,7 +468,7 @@
450
468
  /* Sendung */
451
469
  --color-label-program: theme('colors.blue.blueStone');
452
470
  /* Download */
453
- --color-label-download: theme('colors.grey.scorpion');
471
+ --color-label-download: theme('colors.gray.scorpion');
454
472
  /* Event */
455
473
  --color-label-event: theme('colors.black.DEFAULT');
456
474
  /* Kurzmeldung */
@@ -474,6 +492,8 @@
474
492
  --color-button: theme('colors.blue.teal');
475
493
  --color-button-inverted: theme('colors.white.DEFAULT');
476
494
  --color-button-hollow: theme('colors.blue.teal');
495
+ --color-button-secondary: theme('colors.blue.teal');
496
+ --color-button-ghost: theme('colors.blue.teal');
477
497
  /* Media-Button */
478
498
  --color-media-button: theme('colors.blue.teal');
479
499
  /* States */
@@ -506,7 +526,7 @@
506
526
  /* Sendung */
507
527
  --color-label-program: theme('colors.red.mexican');
508
528
  /* Download */
509
- --color-label-download: theme('colors.grey.scorpion');
529
+ --color-label-download: theme('colors.gray.scorpion');
510
530
  /* Event */
511
531
  --color-label-event: theme('colors.black.DEFAULT');
512
532
  /* Pressemitteilungen */
@@ -532,6 +552,8 @@
532
552
  --color-button: var(--color-primary-ds);
533
553
  --color-button-inverted: theme('colors.white.DEFAULT');
534
554
  --color-button-hollow: var(--color-primary-ds);
555
+ --color-button-secondary: var(--color-primary-ds);
556
+ --color-button-ghost: var(--color-primary-ds);
535
557
  /* Media-Button */
536
558
  --color-media-button: var(--color-primary-ds);
537
559
  /* States */
@@ -590,6 +612,8 @@
590
612
  --color-button: theme('colors.yellow.olive');
591
613
  --color-button-inverted: theme('colors.white.DEFAULT');
592
614
  --color-button-hollow: theme('colors.yellow.olive');
615
+ --color-button-secondary: theme('colors.yellow.olive');
616
+ --color-button-ghost: theme('colors.yellow.olive');
593
617
  /* Media-Button */
594
618
  --color-media-button: theme('colors.yellow.olive');
595
619
  /* States */
@@ -608,7 +632,7 @@
608
632
  [data-theme='hr2'] {
609
633
  --color-primary-ds: theme('colors.orange.clementine');
610
634
  --color-secondary-ds: #007179;
611
- --color-highlight-1: theme('colors.grey.alto');
635
+ --color-highlight-1: theme('colors.gray.alto');
612
636
  --color-highlight-2: theme('colors.orange.spicyCarrot');
613
637
 
614
638
  /* Medieninhalte, Video, Audio, Bildergalerie */
@@ -622,7 +646,7 @@
622
646
  /* Sendung */
623
647
  --color-label-program: theme('colors.red.paprika');
624
648
  /* Download */
625
- --color-label-download: theme('colors.grey.scorpion');
649
+ --color-label-download: theme('colors.gray.scorpion');
626
650
  /* Event */
627
651
  --color-label-event: theme('colors.black.DEFAULT');
628
652
  /* Kurzmeldung */
@@ -647,6 +671,8 @@
647
671
  --color-button: theme('colors.red.paprika');
648
672
  --color-button-inverted: theme('colors.white.DEFAULT');
649
673
  --color-button-hollow: theme('colors.red.paprika');
674
+ --color-button-secondary: theme('colors.red.paprika');
675
+ --color-button-ghost: theme('colors.red.paprika');
650
676
  /* Media-Button */
651
677
  --color-media-button: theme('colors.orange.burntOrange');
652
678
  /* States */
@@ -665,7 +691,7 @@
665
691
  [data-theme='hr3'] {
666
692
  --color-primary-ds: theme('colors.red.monza');
667
693
  --color-secondary-ds: #007179;
668
- --color-highlight-1: theme('colors.grey.mercury');
694
+ --color-highlight-1: theme('colors.gray.mercury');
669
695
  --color-highlight-2: theme('colors.orange.spicyCarrot');
670
696
 
671
697
  /* Medieninhalte, Video, Audio, Bildergalerie */
@@ -679,7 +705,7 @@
679
705
  /* Sendung */
680
706
  --color-label-program: theme('colors.green.pineGreen');
681
707
  /* Download */
682
- --color-label-download: theme('colors.grey.scorpion');
708
+ --color-label-download: theme('colors.gray.scorpion');
683
709
  /* Event */
684
710
  --color-label-event: theme('colors.black.DEFAULT');
685
711
  /* Kurzmeldung */
@@ -706,6 +732,8 @@
706
732
  --color-button: theme('colors.red.scarlett');
707
733
  --color-button-inverted: theme('colors.white.DEFAULT');
708
734
  --color-button-hollow: theme('colors.red.scarlett');
735
+ --color-button-secondary: theme('colors.red.scarlett');
736
+ --color-button-ghost: theme('colors.red.scarlett');
709
737
  /* Media-Button */
710
738
  --color-media-button: var(--color-primary-ds);
711
739
  /* States */
@@ -738,7 +766,7 @@
738
766
  /* Sendung */
739
767
  --color-label-program: theme('colors.pink.fuchsie');
740
768
  /* Download */
741
- --color-label-download: theme('colors.grey.scorpion');
769
+ --color-label-download: theme('colors.gray.scorpion');
742
770
  /* Event */
743
771
  --color-label-event: theme('colors.black.DEFAULT');
744
772
  /* Kurzmeldung */
@@ -765,6 +793,8 @@
765
793
  --color-button: theme('colors.green.casal');
766
794
  --color-button-inverted: theme('colors.white.DEFAULT');
767
795
  --color-button-hollow: theme('colors.green.casal');
796
+ --color-button-secondary: theme('colors.green.casal');
797
+ --color-button-ghost: theme('colors.green.casal');
768
798
  /* Media-Button */
769
799
  --color-media-button: theme('colors.green.eden');
770
800
  /* States */
@@ -785,7 +815,7 @@
785
815
  [data-theme='you-fm'] {
786
816
  --color-primary-ds: #c20016;
787
817
  --color-secondary-ds: #007179;
788
- --color-highlight-1: theme('colors.grey.platinum');
818
+ --color-highlight-1: theme('colors.gray.platinum');
789
819
  --color-highlight-2: theme('colors.orange.spicyCarrot');
790
820
 
791
821
  /* Medieninhalte, Video, Audio, Bildergalerien */
@@ -799,7 +829,7 @@
799
829
  /* Sendung */
800
830
  --color-label-program: theme('colors.blue.lightCerulean');
801
831
  /* Download */
802
- --color-label-download: theme('colors.grey.scorpion');
832
+ --color-label-download: theme('colors.gray.scorpion');
803
833
  /* Event */
804
834
  --color-label-event: theme('colors.black.DEFAULT');
805
835
  /* Kurzmeldung */
@@ -824,6 +854,8 @@
824
854
  --color-button: var(--color-link);
825
855
  --color-button-inverted: theme('colors.white.DEFAULT');
826
856
  --color-button-hollow: var(--color-link);
857
+ --color-button-secondary: var(--color-link);
858
+ --color-button-ghost: var(--color-link);
827
859
  /* Media-Button */
828
860
  --color-media-button: theme('colors.black.DEFAULT');
829
861
  /* States */