@carbon/themes 11.77.0 → 11.78.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.
- package/es/index.js +1360 -1722
- package/js/generated/component-tokens/button.d.ts +98 -0
- package/{src/component-tokens/button/tokens.ts → js/generated/component-tokens/button.js} +65 -97
- package/js/generated/component-tokens/content-switcher.d.ts +25 -0
- package/js/generated/component-tokens/content-switcher.js +25 -0
- package/js/generated/component-tokens/notification.d.ts +65 -0
- package/js/generated/component-tokens/notification.js +65 -0
- package/js/generated/component-tokens/status.d.ts +63 -0
- package/js/generated/component-tokens/status.js +63 -0
- package/js/generated/component-tokens/tag.d.ts +247 -0
- package/js/generated/component-tokens/tag.js +247 -0
- package/js/generated/themes/g10.d.ts +242 -0
- package/js/generated/themes/g10.js +242 -0
- package/js/generated/themes/g100.d.ts +242 -0
- package/js/generated/themes/g100.js +242 -0
- package/js/generated/themes/g90.d.ts +242 -0
- package/js/generated/themes/g90.js +242 -0
- package/js/generated/themes/white.d.ts +242 -0
- package/js/generated/themes/white.js +242 -0
- package/lib/index.d.ts +12 -10
- package/lib/index.js +1360 -1722
- package/package.json +12 -9
- package/scss/generated/_button-tokens.scss +2 -2
- package/src/dtcg/README.md +210 -0
- package/src/dtcg/color-palette.json +3204 -0
- package/src/dtcg/components/button.json +193 -0
- package/src/dtcg/components/content-switcher.json +60 -0
- package/src/dtcg/components/notification.json +130 -0
- package/src/dtcg/components/status.json +122 -0
- package/src/dtcg/components/tag.json +486 -0
- package/src/dtcg/g10.json +1453 -0
- package/src/dtcg/g100.json +1478 -0
- package/src/dtcg/g90.json +1478 -0
- package/src/dtcg/white.json +1345 -0
- package/src/index.ts +96 -10
- package/test-dtcg.scss +28 -0
- package/umd/index.js +1363 -1725
- package/lib/component-tokens/button/index.d.ts +0 -7
- package/lib/component-tokens/button/tokens.d.ts +0 -98
- package/lib/component-tokens/content-switcher/index.d.ts +0 -7
- package/lib/component-tokens/content-switcher/tokens.d.ts +0 -24
- package/lib/component-tokens/notification/index.d.ts +0 -7
- package/lib/component-tokens/notification/tokens.d.ts +0 -64
- package/lib/component-tokens/status/index.d.ts +0 -7
- package/lib/component-tokens/status/tokens.d.ts +0 -62
- package/lib/component-tokens/tag/index.d.ts +0 -7
- package/lib/component-tokens/tag/tokens.d.ts +0 -246
- package/lib/g10.d.ts +0 -242
- package/lib/g100.d.ts +0 -242
- package/lib/g90.d.ts +0 -242
- package/lib/white.d.ts +0 -243
- package/src/component-tokens/button/index.ts +0 -8
- package/src/component-tokens/content-switcher/index.ts +0 -7
- package/src/component-tokens/content-switcher/tokens.ts +0 -29
- package/src/component-tokens/notification/index.ts +0 -8
- package/src/component-tokens/notification/tokens.ts +0 -105
- package/src/component-tokens/status/index.ts +0 -8
- package/src/component-tokens/status/tokens.ts +0 -90
- package/src/component-tokens/tag/index.ts +0 -8
- package/src/component-tokens/tag/tokens.ts +0 -353
- package/src/g10.ts +0 -452
- package/src/g100.ts +0 -453
- package/src/g90.ts +0 -455
- package/src/white.ts +0 -455
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://tr.designtokens.org/format/",
|
|
3
|
+
"$description": "Tag component color tokens for all tag color variants and states.",
|
|
4
|
+
"tag": {
|
|
5
|
+
"background-blue": {
|
|
6
|
+
"$type": "color",
|
|
7
|
+
"$description": "Background color for blue tags. Use for informational tags or to categorize content with blue semantic meaning.",
|
|
8
|
+
"$extensions": {
|
|
9
|
+
"carbon.themes": {
|
|
10
|
+
"white": "{blue.20}",
|
|
11
|
+
"g10": "{blue.20}",
|
|
12
|
+
"g90": "{blue.70}",
|
|
13
|
+
"g100": "{blue.70}"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"background-cool-gray": {
|
|
18
|
+
"$type": "color",
|
|
19
|
+
"$description": "Background color for cool gray tags. Use for neutral categorization or when color semantics are not needed.",
|
|
20
|
+
"$extensions": {
|
|
21
|
+
"carbon.themes": {
|
|
22
|
+
"white": "{coolGray.20}",
|
|
23
|
+
"g10": "{coolGray.20}",
|
|
24
|
+
"g90": "{coolGray.70}",
|
|
25
|
+
"g100": "{coolGray.70}"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"background-cyan": {
|
|
30
|
+
"$type": "color",
|
|
31
|
+
"$description": "Background color for cyan tags. Use for tags related to data, analytics, or technical information.",
|
|
32
|
+
"$extensions": {
|
|
33
|
+
"carbon.themes": {
|
|
34
|
+
"white": "{cyan.20}",
|
|
35
|
+
"g10": "{cyan.20}",
|
|
36
|
+
"g90": "{cyan.70}",
|
|
37
|
+
"g100": "{cyan.70}"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"background-gray": {
|
|
42
|
+
"$type": "color",
|
|
43
|
+
"$description": "Background color for gray tags. Use for default or neutral tags without specific semantic meaning.",
|
|
44
|
+
"$extensions": {
|
|
45
|
+
"carbon.themes": {
|
|
46
|
+
"white": "{gray.20}",
|
|
47
|
+
"g10": "{gray.20}",
|
|
48
|
+
"g90": "{gray.70}",
|
|
49
|
+
"g100": "{gray.70}"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"background-green": {
|
|
54
|
+
"$type": "color",
|
|
55
|
+
"$description": "Background color for green tags. Use for success states, positive indicators, or approved/active status.",
|
|
56
|
+
"$extensions": {
|
|
57
|
+
"carbon.themes": {
|
|
58
|
+
"white": "{green.20}",
|
|
59
|
+
"g10": "{green.20}",
|
|
60
|
+
"g90": "{green.70}",
|
|
61
|
+
"g100": "{green.70}"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"background-magenta": {
|
|
66
|
+
"$type": "color",
|
|
67
|
+
"$description": "Background color for magenta tags. Use for creative, design-related, or special category tags.",
|
|
68
|
+
"$extensions": {
|
|
69
|
+
"carbon.themes": {
|
|
70
|
+
"white": "{magenta.20}",
|
|
71
|
+
"g10": "{magenta.20}",
|
|
72
|
+
"g90": "{magenta.70}",
|
|
73
|
+
"g100": "{magenta.70}"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"background-purple": {
|
|
78
|
+
"$type": "color",
|
|
79
|
+
"$description": "Background color for purple tags. Use for premium features, special status, or priority indicators.",
|
|
80
|
+
"$extensions": {
|
|
81
|
+
"carbon.themes": {
|
|
82
|
+
"white": "{purple.20}",
|
|
83
|
+
"g10": "{purple.20}",
|
|
84
|
+
"g90": "{purple.70}",
|
|
85
|
+
"g100": "{purple.70}"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"background-red": {
|
|
90
|
+
"$type": "color",
|
|
91
|
+
"$description": "Background color for red tags. Use for error states, critical issues, or urgent/high-priority items.",
|
|
92
|
+
"$extensions": {
|
|
93
|
+
"carbon.themes": {
|
|
94
|
+
"white": "{red.20}",
|
|
95
|
+
"g10": "{red.20}",
|
|
96
|
+
"g90": "{red.70}",
|
|
97
|
+
"g100": "{red.70}"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"background-teal": {
|
|
102
|
+
"$type": "color",
|
|
103
|
+
"$description": "Background color for teal tags. Use for tags related to support, help, or secondary informational content.",
|
|
104
|
+
"$extensions": {
|
|
105
|
+
"carbon.themes": {
|
|
106
|
+
"white": "{teal.20}",
|
|
107
|
+
"g10": "{teal.20}",
|
|
108
|
+
"g90": "{teal.70}",
|
|
109
|
+
"g100": "{teal.70}"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"background-warm-gray": {
|
|
114
|
+
"$type": "color",
|
|
115
|
+
"$description": "Background color for warm gray tags. Use for neutral categorization with a warmer tone than cool gray.",
|
|
116
|
+
"$extensions": {
|
|
117
|
+
"carbon.themes": {
|
|
118
|
+
"white": "{warmGray.20}",
|
|
119
|
+
"g10": "{warmGray.20}",
|
|
120
|
+
"g90": "{warmGray.70}",
|
|
121
|
+
"g100": "{warmGray.70}"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"border-blue": {
|
|
126
|
+
"$type": "color",
|
|
127
|
+
"$description": "Border color for blue tags. Provides visual definition and contrast for blue tag variants.",
|
|
128
|
+
"$extensions": {
|
|
129
|
+
"carbon.themes": {
|
|
130
|
+
"white": "{blue.40}",
|
|
131
|
+
"g10": "{blue.40}",
|
|
132
|
+
"g90": "{blue.50}",
|
|
133
|
+
"g100": "{blue.50}"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"border-cool-gray": {
|
|
138
|
+
"$type": "color",
|
|
139
|
+
"$description": "Border color for cool gray tags. Provides visual definition and contrast for cool gray tag variants.",
|
|
140
|
+
"$extensions": {
|
|
141
|
+
"carbon.themes": {
|
|
142
|
+
"white": "{coolGray.40}",
|
|
143
|
+
"g10": "{coolGray.40}",
|
|
144
|
+
"g90": "{coolGray.50}",
|
|
145
|
+
"g100": "{coolGray.50}"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"border-cyan": {
|
|
150
|
+
"$type": "color",
|
|
151
|
+
"$description": "Border color for cyan tags. Provides visual definition and contrast for cyan tag variants.",
|
|
152
|
+
"$extensions": {
|
|
153
|
+
"carbon.themes": {
|
|
154
|
+
"white": "{cyan.40}",
|
|
155
|
+
"g10": "{cyan.40}",
|
|
156
|
+
"g90": "{cyan.50}",
|
|
157
|
+
"g100": "{cyan.50}"
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"border-gray": {
|
|
162
|
+
"$type": "color",
|
|
163
|
+
"$description": "Border color for gray tags. Provides visual definition and contrast for gray tag variants.",
|
|
164
|
+
"$extensions": {
|
|
165
|
+
"carbon.themes": {
|
|
166
|
+
"white": "{gray.40}",
|
|
167
|
+
"g10": "{gray.40}",
|
|
168
|
+
"g90": "{gray.50}",
|
|
169
|
+
"g100": "{gray.50}"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"border-green": {
|
|
174
|
+
"$type": "color",
|
|
175
|
+
"$description": "Border color for green tags. Provides visual definition and contrast for green tag variants.",
|
|
176
|
+
"$extensions": {
|
|
177
|
+
"carbon.themes": {
|
|
178
|
+
"white": "{green.40}",
|
|
179
|
+
"g10": "{green.40}",
|
|
180
|
+
"g90": "{green.50}",
|
|
181
|
+
"g100": "{green.50}"
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"border-magenta": {
|
|
186
|
+
"$type": "color",
|
|
187
|
+
"$description": "Border color for magenta tags. Provides visual definition and contrast for magenta tag variants.",
|
|
188
|
+
"$extensions": {
|
|
189
|
+
"carbon.themes": {
|
|
190
|
+
"white": "{magenta.40}",
|
|
191
|
+
"g10": "{magenta.40}",
|
|
192
|
+
"g90": "{magenta.50}",
|
|
193
|
+
"g100": "{magenta.50}"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"border-purple": {
|
|
198
|
+
"$type": "color",
|
|
199
|
+
"$description": "Border color for purple tags. Provides visual definition and contrast for purple tag variants.",
|
|
200
|
+
"$extensions": {
|
|
201
|
+
"carbon.themes": {
|
|
202
|
+
"white": "{purple.40}",
|
|
203
|
+
"g10": "{purple.40}",
|
|
204
|
+
"g90": "{purple.50}",
|
|
205
|
+
"g100": "{purple.50}"
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"border-red": {
|
|
210
|
+
"$type": "color",
|
|
211
|
+
"$description": "Border color for red tags. Provides visual definition and contrast for red tag variants.",
|
|
212
|
+
"$extensions": {
|
|
213
|
+
"carbon.themes": {
|
|
214
|
+
"white": "{red.40}",
|
|
215
|
+
"g10": "{red.40}",
|
|
216
|
+
"g90": "{red.50}",
|
|
217
|
+
"g100": "{red.50}"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"border-teal": {
|
|
222
|
+
"$type": "color",
|
|
223
|
+
"$description": "Border color for teal tags. Provides visual definition and contrast for teal tag variants.",
|
|
224
|
+
"$extensions": {
|
|
225
|
+
"carbon.themes": {
|
|
226
|
+
"white": "{teal.40}",
|
|
227
|
+
"g10": "{teal.40}",
|
|
228
|
+
"g90": "{teal.50}",
|
|
229
|
+
"g100": "{teal.50}"
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"border-warm-gray": {
|
|
234
|
+
"$type": "color",
|
|
235
|
+
"$description": "Border color for warm gray tags. Provides visual definition and contrast for warm gray tag variants.",
|
|
236
|
+
"$extensions": {
|
|
237
|
+
"carbon.themes": {
|
|
238
|
+
"white": "{warmGray.40}",
|
|
239
|
+
"g10": "{warmGray.40}",
|
|
240
|
+
"g90": "{warmGray.50}",
|
|
241
|
+
"g100": "{warmGray.50}"
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"color-blue": {
|
|
246
|
+
"$type": "color",
|
|
247
|
+
"$description": "Text color for blue tags. Ensures readable contrast against blue tag backgrounds.",
|
|
248
|
+
"$extensions": {
|
|
249
|
+
"carbon.themes": {
|
|
250
|
+
"white": "{blue.70}",
|
|
251
|
+
"g10": "{blue.70}",
|
|
252
|
+
"g90": "{blue.20}",
|
|
253
|
+
"g100": "{blue.20}"
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
"color-cool-gray": {
|
|
258
|
+
"$type": "color",
|
|
259
|
+
"$description": "Text color for cool gray tags. Ensures readable contrast against cool gray tag backgrounds.",
|
|
260
|
+
"$extensions": {
|
|
261
|
+
"carbon.themes": {
|
|
262
|
+
"white": "{coolGray.100}",
|
|
263
|
+
"g10": "{coolGray.100}",
|
|
264
|
+
"g90": "{coolGray.10}",
|
|
265
|
+
"g100": "{coolGray.10}"
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"color-cyan": {
|
|
270
|
+
"$type": "color",
|
|
271
|
+
"$description": "Text color for cyan tags. Ensures readable contrast against cyan tag backgrounds.",
|
|
272
|
+
"$extensions": {
|
|
273
|
+
"carbon.themes": {
|
|
274
|
+
"white": "{cyan.70}",
|
|
275
|
+
"g10": "{cyan.70}",
|
|
276
|
+
"g90": "{cyan.20}",
|
|
277
|
+
"g100": "{cyan.20}"
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"color-gray": {
|
|
282
|
+
"$type": "color",
|
|
283
|
+
"$description": "Text color for gray tags. Ensures readable contrast against gray tag backgrounds.",
|
|
284
|
+
"$extensions": {
|
|
285
|
+
"carbon.themes": {
|
|
286
|
+
"white": "{gray.100}",
|
|
287
|
+
"g10": "{gray.100}",
|
|
288
|
+
"g90": "{gray.10}",
|
|
289
|
+
"g100": "{gray.10}"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"color-green": {
|
|
294
|
+
"$type": "color",
|
|
295
|
+
"$description": "Text color for green tags. Ensures readable contrast against green tag backgrounds.",
|
|
296
|
+
"$extensions": {
|
|
297
|
+
"carbon.themes": {
|
|
298
|
+
"white": "{green.70}",
|
|
299
|
+
"g10": "{green.70}",
|
|
300
|
+
"g90": "{green.20}",
|
|
301
|
+
"g100": "{green.20}"
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"color-magenta": {
|
|
306
|
+
"$type": "color",
|
|
307
|
+
"$description": "Text color for magenta tags. Ensures readable contrast against magenta tag backgrounds.",
|
|
308
|
+
"$extensions": {
|
|
309
|
+
"carbon.themes": {
|
|
310
|
+
"white": "{magenta.70}",
|
|
311
|
+
"g10": "{magenta.70}",
|
|
312
|
+
"g90": "{magenta.20}",
|
|
313
|
+
"g100": "{magenta.20}"
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"color-purple": {
|
|
318
|
+
"$type": "color",
|
|
319
|
+
"$description": "Text color for purple tags. Ensures readable contrast against purple tag backgrounds.",
|
|
320
|
+
"$extensions": {
|
|
321
|
+
"carbon.themes": {
|
|
322
|
+
"white": "{purple.70}",
|
|
323
|
+
"g10": "{purple.70}",
|
|
324
|
+
"g90": "{purple.20}",
|
|
325
|
+
"g100": "{purple.20}"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"color-red": {
|
|
330
|
+
"$type": "color",
|
|
331
|
+
"$description": "Text color for red tags. Ensures readable contrast against red tag backgrounds.",
|
|
332
|
+
"$extensions": {
|
|
333
|
+
"carbon.themes": {
|
|
334
|
+
"white": "{red.70}",
|
|
335
|
+
"g10": "{red.70}",
|
|
336
|
+
"g90": "{red.20}",
|
|
337
|
+
"g100": "{red.20}"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
"color-teal": {
|
|
342
|
+
"$type": "color",
|
|
343
|
+
"$description": "Text color for teal tags. Ensures readable contrast against teal tag backgrounds.",
|
|
344
|
+
"$extensions": {
|
|
345
|
+
"carbon.themes": {
|
|
346
|
+
"white": "{teal.70}",
|
|
347
|
+
"g10": "{teal.70}",
|
|
348
|
+
"g90": "{teal.20}",
|
|
349
|
+
"g100": "{teal.20}"
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"color-warm-gray": {
|
|
354
|
+
"$type": "color",
|
|
355
|
+
"$description": "Text color for warm gray tags. Ensures readable contrast against warm gray tag backgrounds.",
|
|
356
|
+
"$extensions": {
|
|
357
|
+
"carbon.themes": {
|
|
358
|
+
"white": "{warmGray.100}",
|
|
359
|
+
"g10": "{warmGray.100}",
|
|
360
|
+
"g90": "{warmGray.10}",
|
|
361
|
+
"g100": "{warmGray.10}"
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"hover-blue": {
|
|
366
|
+
"$type": "color",
|
|
367
|
+
"$description": "Background color for blue tags on hover. Use when blue tags are interactive or dismissible.",
|
|
368
|
+
"$extensions": {
|
|
369
|
+
"carbon.themes": {
|
|
370
|
+
"white": "{blue.20Hover}",
|
|
371
|
+
"g10": "{blue.20Hover}",
|
|
372
|
+
"g90": "{blue.70Hover}",
|
|
373
|
+
"g100": "{blue.70Hover}"
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
"hover-cool-gray": {
|
|
378
|
+
"$type": "color",
|
|
379
|
+
"$description": "Background color for cool gray tags on hover. Use when cool gray tags are interactive or dismissible.",
|
|
380
|
+
"$extensions": {
|
|
381
|
+
"carbon.themes": {
|
|
382
|
+
"white": "{coolGray.20Hover}",
|
|
383
|
+
"g10": "{coolGray.20Hover}",
|
|
384
|
+
"g90": "{coolGray.70Hover}",
|
|
385
|
+
"g100": "{coolGray.70Hover}"
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
"hover-cyan": {
|
|
390
|
+
"$type": "color",
|
|
391
|
+
"$description": "Background color for cyan tags on hover. Use when cyan tags are interactive or dismissible.",
|
|
392
|
+
"$extensions": {
|
|
393
|
+
"carbon.themes": {
|
|
394
|
+
"white": "{cyan.20Hover}",
|
|
395
|
+
"g10": "{cyan.20Hover}",
|
|
396
|
+
"g90": "{cyan.70Hover}",
|
|
397
|
+
"g100": "{cyan.70Hover}"
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"hover-gray": {
|
|
402
|
+
"$type": "color",
|
|
403
|
+
"$description": "Background color for gray tags on hover. Use when gray tags are interactive or dismissible.",
|
|
404
|
+
"$extensions": {
|
|
405
|
+
"carbon.themes": {
|
|
406
|
+
"white": "{gray.20Hover}",
|
|
407
|
+
"g10": "{gray.20Hover}",
|
|
408
|
+
"g90": "{gray.70Hover}",
|
|
409
|
+
"g100": "{gray.70Hover}"
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
"hover-green": {
|
|
414
|
+
"$type": "color",
|
|
415
|
+
"$description": "Background color for green tags on hover. Use when green tags are interactive or dismissible.",
|
|
416
|
+
"$extensions": {
|
|
417
|
+
"carbon.themes": {
|
|
418
|
+
"white": "{green.20Hover}",
|
|
419
|
+
"g10": "{green.20Hover}",
|
|
420
|
+
"g90": "{green.70Hover}",
|
|
421
|
+
"g100": "{green.70Hover}"
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"hover-magenta": {
|
|
426
|
+
"$type": "color",
|
|
427
|
+
"$description": "Background color for magenta tags on hover. Use when magenta tags are interactive or dismissible.",
|
|
428
|
+
"$extensions": {
|
|
429
|
+
"carbon.themes": {
|
|
430
|
+
"white": "{magenta.20Hover}",
|
|
431
|
+
"g10": "{magenta.20Hover}",
|
|
432
|
+
"g90": "{magenta.70Hover}",
|
|
433
|
+
"g100": "{magenta.70Hover}"
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"hover-purple": {
|
|
438
|
+
"$type": "color",
|
|
439
|
+
"$description": "Background color for purple tags on hover. Use when purple tags are interactive or dismissible.",
|
|
440
|
+
"$extensions": {
|
|
441
|
+
"carbon.themes": {
|
|
442
|
+
"white": "{purple.20Hover}",
|
|
443
|
+
"g10": "{purple.20Hover}",
|
|
444
|
+
"g90": "{purple.70Hover}",
|
|
445
|
+
"g100": "{purple.70Hover}"
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
},
|
|
449
|
+
"hover-red": {
|
|
450
|
+
"$type": "color",
|
|
451
|
+
"$description": "Background color for red tags on hover. Use when red tags are interactive or dismissible.",
|
|
452
|
+
"$extensions": {
|
|
453
|
+
"carbon.themes": {
|
|
454
|
+
"white": "{red.20Hover}",
|
|
455
|
+
"g10": "{red.20Hover}",
|
|
456
|
+
"g90": "{red.70Hover}",
|
|
457
|
+
"g100": "{red.70Hover}"
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
"hover-teal": {
|
|
462
|
+
"$type": "color",
|
|
463
|
+
"$description": "Background color for teal tags on hover. Use when teal tags are interactive or dismissible.",
|
|
464
|
+
"$extensions": {
|
|
465
|
+
"carbon.themes": {
|
|
466
|
+
"white": "{teal.20Hover}",
|
|
467
|
+
"g10": "{teal.20Hover}",
|
|
468
|
+
"g90": "{teal.70Hover}",
|
|
469
|
+
"g100": "{teal.70Hover}"
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
"hover-warm-gray": {
|
|
474
|
+
"$type": "color",
|
|
475
|
+
"$description": "Background color for warm gray tags on hover. Use when warm gray tags are interactive or dismissible.",
|
|
476
|
+
"$extensions": {
|
|
477
|
+
"carbon.themes": {
|
|
478
|
+
"white": "{warmGray.20Hover}",
|
|
479
|
+
"g10": "{warmGray.20Hover}",
|
|
480
|
+
"g90": "{warmGray.70Hover}",
|
|
481
|
+
"g100": "{warmGray.70Hover}"
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|