@patternfly/design-tokens 1.13.1 → 1.14.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 (36) hide show
  1. package/build/css/tokens-charts-dark.scss +2 -2
  2. package/build/css/tokens-charts.scss +2 -2
  3. package/build/css/tokens-dark.scss +21 -5
  4. package/build/css/tokens-default.scss +90 -30
  5. package/build/css/tokens-highcontrast-dark.scss +392 -0
  6. package/build/css/tokens-highcontrast.scss +427 -0
  7. package/build/css/tokens-palette.scss +8 -2
  8. package/build.js +15 -1
  9. package/config.highcontrast.dark.json +23 -0
  10. package/config.highcontrast.json +24 -0
  11. package/config.palette-colors.json +1 -1
  12. package/package.json +1 -1
  13. package/patternfly-docs/content/token-layers-dark.json +4308 -966
  14. package/patternfly-docs/content/token-layers-default.json +4382 -1485
  15. package/patternfly-docs/content/tokensTable.css +16 -3
  16. package/patternfly-docs/content/tokensTable.js +7 -5
  17. package/plugins/export-patternfly-tokens/dist/code.js +87 -0
  18. package/plugins/export-patternfly-tokens/dist/ui.html +34212 -0
  19. package/plugins/export-patternfly-tokens/src/ui.tsx +12 -4
  20. package/tokens/dark/base.dark.json +36 -0
  21. package/tokens/dark/charts.dark.json +8 -8
  22. package/tokens/dark/palette.color.json +24 -0
  23. package/tokens/dark/semantic.dark.json +51 -9
  24. package/tokens/default/base.dimension.json +38 -6
  25. package/tokens/default/base.json +171 -3
  26. package/tokens/default/charts.json +8 -8
  27. package/tokens/default/palette.color.json +24 -0
  28. package/tokens/default/semantic.dimension.json +69 -48
  29. package/tokens/default/semantic.json +51 -9
  30. package/tokens/default/semantic.motion.json +28 -28
  31. package/tokens/highcontrast/base.json +559 -0
  32. package/tokens/highcontrast/palette.color.json +319 -0
  33. package/tokens/highcontrast/semantic.highcontrast.json +1758 -0
  34. package/tokens/highcontrast-dark/base.dark.json +421 -0
  35. package/tokens/highcontrast-dark/palette.color.json +319 -0
  36. package/tokens/highcontrast-dark/semantic.highcontrast.dark.json +1758 -0
@@ -0,0 +1,319 @@
1
+
2
+ {
3
+ "color": {
4
+ "white": {
5
+ "type": "color",
6
+ "value": "#ffffff"
7
+ },
8
+ "gray": {
9
+ "10": {
10
+ "type": "color",
11
+ "value": "#f2f2f2"
12
+ },
13
+ "20": {
14
+ "type": "color",
15
+ "value": "#e0e0e0"
16
+ },
17
+ "30": {
18
+ "type": "color",
19
+ "value": "#c7c7c7"
20
+ },
21
+ "40": {
22
+ "type": "color",
23
+ "value": "#a3a3a3"
24
+ },
25
+ "50": {
26
+ "type": "color",
27
+ "value": "#707070"
28
+ },
29
+ "60": {
30
+ "type": "color",
31
+ "value": "#4d4d4d"
32
+ },
33
+ "70": {
34
+ "type": "color",
35
+ "value": "#383838"
36
+ },
37
+ "80": {
38
+ "type": "color",
39
+ "value": "#292929"
40
+ },
41
+ "90": {
42
+ "type": "color",
43
+ "value": "#1f1f1f"
44
+ },
45
+ "95": {
46
+ "type": "color",
47
+ "value": "#151515"
48
+ }
49
+ },
50
+ "black": {
51
+ "type": "color",
52
+ "value": "#000000"
53
+ },
54
+ "blue": {
55
+ "10": {
56
+ "type": "color",
57
+ "value": "#e0f0ff"
58
+ },
59
+ "20": {
60
+ "type": "color",
61
+ "value": "#b9dafc"
62
+ },
63
+ "30": {
64
+ "type": "color",
65
+ "value": "#92c5f9"
66
+ },
67
+ "40": {
68
+ "type": "color",
69
+ "value": "#4394e5"
70
+ },
71
+ "50": {
72
+ "type": "color",
73
+ "value": "#0066cc"
74
+ },
75
+ "60": {
76
+ "type": "color",
77
+ "value": "#004d99"
78
+ },
79
+ "70": {
80
+ "type": "color",
81
+ "value": "#003366"
82
+ },
83
+ "80": {
84
+ "type": "color",
85
+ "value": "#002250"
86
+ }
87
+ },
88
+ "teal": {
89
+ "10": {
90
+ "type": "color",
91
+ "value": "#daf2f2"
92
+ },
93
+ "20": {
94
+ "type": "color",
95
+ "value": "#b9e5e5"
96
+ },
97
+ "30": {
98
+ "type": "color",
99
+ "value": "#9ad8d8"
100
+ },
101
+ "40": {
102
+ "type": "color",
103
+ "value": "#63bdbd"
104
+ },
105
+ "50": {
106
+ "type": "color",
107
+ "value": "#37a3a3"
108
+ },
109
+ "60": {
110
+ "type": "color",
111
+ "value": "#147878"
112
+ },
113
+ "70": {
114
+ "type": "color",
115
+ "value": "#004d4d"
116
+ },
117
+ "80": {
118
+ "type": "color",
119
+ "value": "#003333"
120
+ }
121
+ },
122
+ "yellow": {
123
+ "10": {
124
+ "type": "color",
125
+ "value": "#fff4cc"
126
+ },
127
+ "20": {
128
+ "type": "color",
129
+ "value": "#ffe072"
130
+ },
131
+ "30": {
132
+ "type": "color",
133
+ "value": "#ffcc17"
134
+ },
135
+ "40": {
136
+ "type": "color",
137
+ "value": "#dca614"
138
+ },
139
+ "50": {
140
+ "type": "color",
141
+ "value": "#b98412"
142
+ },
143
+ "60": {
144
+ "type": "color",
145
+ "value": "#96640f"
146
+ },
147
+ "70": {
148
+ "type": "color",
149
+ "value": "#73480b"
150
+ },
151
+ "80": {
152
+ "type": "color",
153
+ "value": "#54330b"
154
+ }
155
+ },
156
+ "green": {
157
+ "10": {
158
+ "type": "color",
159
+ "value": "#e9f7df"
160
+ },
161
+ "20": {
162
+ "type": "color",
163
+ "value": "#d1f1bb"
164
+ },
165
+ "30": {
166
+ "type": "color",
167
+ "value": "#afdc8f"
168
+ },
169
+ "40": {
170
+ "type": "color",
171
+ "value": "#87bb62"
172
+ },
173
+ "50": {
174
+ "type": "color",
175
+ "value": "#63993d"
176
+ },
177
+ "60": {
178
+ "type": "color",
179
+ "value": "#3d7317"
180
+ },
181
+ "70": {
182
+ "type": "color",
183
+ "value": "#204d00"
184
+ }
185
+ },
186
+ "orange": {
187
+ "10": {
188
+ "type": "color",
189
+ "value": "#ffe8cc"
190
+ },
191
+ "20": {
192
+ "type": "color",
193
+ "value": "#fccb8f"
194
+ },
195
+ "30": {
196
+ "type": "color",
197
+ "value": "#f8ae54"
198
+ },
199
+ "40": {
200
+ "type": "color",
201
+ "value": "#f5921b"
202
+ },
203
+ "50": {
204
+ "type": "color",
205
+ "value": "#ca6c0f"
206
+ },
207
+ "60": {
208
+ "type": "color",
209
+ "value": "#9e4a06"
210
+ },
211
+ "70": {
212
+ "type": "color",
213
+ "value": "#732e00"
214
+ },
215
+ "80": {
216
+ "type": "color",
217
+ "value": "#4d1f00"
218
+ }
219
+ },
220
+ "red-orange": {
221
+ "10": {
222
+ "type": "color",
223
+ "value": "#ffe3d9"
224
+ },
225
+ "20": {
226
+ "type": "color",
227
+ "value": "#fbbea8"
228
+ },
229
+ "30": {
230
+ "type": "color",
231
+ "value": "#f89b78"
232
+ },
233
+ "40": {
234
+ "type": "color",
235
+ "value": "#f4784a"
236
+ },
237
+ "50": {
238
+ "type": "color",
239
+ "value": "#f0561d"
240
+ },
241
+ "60": {
242
+ "type": "color",
243
+ "value": "#b1380b"
244
+ },
245
+ "70": {
246
+ "type": "color",
247
+ "value": "#731f00"
248
+ }
249
+ },
250
+ "purple": {
251
+ "10": {
252
+ "type": "color",
253
+ "value": "#ece6ff"
254
+ },
255
+ "20": {
256
+ "type": "color",
257
+ "value": "#d0c5f4"
258
+ },
259
+ "30": {
260
+ "type": "color",
261
+ "value": "#b6a6e9"
262
+ },
263
+ "40": {
264
+ "type": "color",
265
+ "value": "#876fd4"
266
+ },
267
+ "50": {
268
+ "type": "color",
269
+ "value": "#5e40be"
270
+ },
271
+ "60": {
272
+ "type": "color",
273
+ "value": "#3d2785"
274
+ },
275
+ "70": {
276
+ "type": "color",
277
+ "value": "#21134d"
278
+ },
279
+ "80": {
280
+ "type": "color",
281
+ "value": "#1b0d33"
282
+ }
283
+ },
284
+ "red": {
285
+ "10": {
286
+ "type": "color",
287
+ "value": "#fce3e3"
288
+ },
289
+ "20": {
290
+ "type": "color",
291
+ "value": "#fbc5c5"
292
+ },
293
+ "30": {
294
+ "type": "color",
295
+ "value": "#f9a8a8"
296
+ },
297
+ "40": {
298
+ "type": "color",
299
+ "value": "#f56e6e"
300
+ },
301
+ "50": {
302
+ "type": "color",
303
+ "value": "#ee0000"
304
+ },
305
+ "60": {
306
+ "type": "color",
307
+ "value": "#a60000"
308
+ },
309
+ "70": {
310
+ "type": "color",
311
+ "value": "#5f0000"
312
+ },
313
+ "80": {
314
+ "type": "color",
315
+ "value": "#3f0000"
316
+ }
317
+ }
318
+ }
319
+ }