@workday/canvas-tokens-web 4.0.0-alpha.1 → 4.0.0-alpha.11
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/css/base/_variables.css +106 -17
- package/css/brand/_variables.css +136 -38
- package/css/system/_variables.css +291 -199
- package/dist/common-js/base/index.d.ts +108 -15
- package/dist/common-js/base/index.js +103 -14
- package/dist/common-js/brand/index.d.ts +381 -65
- package/dist/common-js/brand/index.js +102 -2
- package/dist/common-js/index.d.ts +3 -3
- package/dist/common-js/index.js +3 -3
- package/dist/common-js/system/index.d.ts +1681 -1349
- package/dist/common-js/system/index.js +269 -107
- package/dist/es6/base/index.d.ts +108 -15
- package/dist/es6/base/index.js +103 -14
- package/dist/es6/brand/index.d.ts +381 -65
- package/dist/es6/brand/index.js +102 -2
- package/dist/es6/index.d.ts +3 -3
- package/dist/es6/index.js +3 -3
- package/dist/es6/system/index.d.ts +1681 -1349
- package/dist/es6/system/index.js +269 -107
- package/less/base/_variables.less +106 -17
- package/less/brand/_variables.less +136 -38
- package/less/system/_variables.less +291 -199
- package/package.json +5 -1
- package/scss/base/_variables.sass +106 -17
- package/scss/base/_variables.scss +106 -17
- package/scss/brand/_variables.sass +136 -38
- package/scss/brand/_variables.scss +136 -38
- package/scss/system/_variables.sass +291 -199
- package/scss/system/_variables.scss +291 -199
|
@@ -1,172 +1,488 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Fri, 16 Jan 2026 21:46:13 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
/** {base.palette.blue.25} */
|
|
7
|
+
export declare const primary25: "--cnvs-brand-primary-25";
|
|
8
|
+
|
|
9
|
+
/** {base.palette.blue.50} */
|
|
10
|
+
export declare const primary50: "--cnvs-brand-primary-50";
|
|
11
|
+
|
|
12
|
+
/** {base.palette.blue.100} */
|
|
13
|
+
export declare const primary100: "--cnvs-brand-primary-100";
|
|
14
|
+
|
|
15
|
+
/** {base.palette.blue.200} */
|
|
16
|
+
export declare const primary200: "--cnvs-brand-primary-200";
|
|
17
|
+
|
|
18
|
+
/** {base.palette.blue.300} */
|
|
19
|
+
export declare const primary300: "--cnvs-brand-primary-300";
|
|
20
|
+
|
|
21
|
+
/** {base.palette.blue.400} */
|
|
22
|
+
export declare const primary400: "--cnvs-brand-primary-400";
|
|
23
|
+
|
|
24
|
+
/** {base.palette.blue.500} */
|
|
25
|
+
export declare const primary500: "--cnvs-brand-primary-500";
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* {base.palette.blue.600}
|
|
29
|
+
*
|
|
30
|
+
* Base primary color. Use fg.inverse on this.
|
|
31
|
+
*
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
export declare const primary600: "--cnvs-brand-primary-600";
|
|
35
|
+
|
|
36
|
+
/** {base.palette.blue.700} */
|
|
37
|
+
export declare const primary700: "--cnvs-brand-primary-700";
|
|
38
|
+
|
|
39
|
+
/** {base.palette.blue.800} */
|
|
40
|
+
export declare const primary800: "--cnvs-brand-primary-800";
|
|
41
|
+
|
|
42
|
+
/** {base.palette.blue.900} */
|
|
43
|
+
export declare const primary900: "--cnvs-brand-primary-900";
|
|
44
|
+
|
|
45
|
+
/** {base.palette.blue.950} */
|
|
46
|
+
export declare const primary950: "--cnvs-brand-primary-950";
|
|
47
|
+
|
|
48
|
+
/** {base.palette.blue.975} */
|
|
49
|
+
export declare const primary975: "--cnvs-brand-primary-975";
|
|
50
|
+
|
|
6
51
|
export declare const primary: {
|
|
7
|
-
/**
|
|
52
|
+
/** {brand.primary.600} */
|
|
8
53
|
"base": "--cnvs-brand-primary-base",
|
|
9
|
-
/**
|
|
54
|
+
/** {brand.primary.25} */
|
|
10
55
|
"lightest": "--cnvs-brand-primary-lightest",
|
|
11
|
-
/**
|
|
56
|
+
/** {brand.primary.800} */
|
|
12
57
|
"darkest": "--cnvs-brand-primary-darkest",
|
|
13
|
-
/**
|
|
58
|
+
/** {brand.primary.700} */
|
|
14
59
|
"dark": "--cnvs-brand-primary-dark",
|
|
15
|
-
/**
|
|
60
|
+
/** {sys.color.fg.inverse} */
|
|
16
61
|
"accent": "--cnvs-brand-primary-accent",
|
|
17
|
-
/**
|
|
62
|
+
/** {brand.primary.50} */
|
|
18
63
|
"lighter": "--cnvs-brand-primary-lighter",
|
|
19
|
-
/**
|
|
64
|
+
/** {brand.primary.200} */
|
|
20
65
|
"light": "--cnvs-brand-primary-light",
|
|
21
66
|
};
|
|
22
67
|
|
|
68
|
+
/** oklch(0.6499 0.1912 253.52 / 0.08) */
|
|
69
|
+
export declare const primaryA25: "--cnvs-brand-primary-a25";
|
|
70
|
+
|
|
71
|
+
/** oklch(0.6152 0.2108 256.1 / 0.11) */
|
|
72
|
+
export declare const primaryA50: "--cnvs-brand-primary-a50";
|
|
73
|
+
|
|
74
|
+
/** oklch(0.6225 0.2064 255.9 / 0.17) */
|
|
75
|
+
export declare const primaryA100: "--cnvs-brand-primary-a100";
|
|
76
|
+
|
|
77
|
+
/** oklch(0.6048 0.2166 257.21 / 0.31) */
|
|
78
|
+
export declare const primaryA200: "--cnvs-brand-primary-a200";
|
|
79
|
+
|
|
23
80
|
export declare const error: {
|
|
24
|
-
/**
|
|
81
|
+
/** {brand.critical.600} */
|
|
25
82
|
"base": "--cnvs-brand-error-base",
|
|
26
|
-
/**
|
|
83
|
+
/** {brand.critical.25} */
|
|
27
84
|
"lightest": "--cnvs-brand-error-lightest",
|
|
28
|
-
/**
|
|
85
|
+
/** {brand.critical.700} */
|
|
29
86
|
"dark": "--cnvs-brand-error-dark",
|
|
30
|
-
/**
|
|
87
|
+
/** {brand.critical.800} */
|
|
31
88
|
"darkest": "--cnvs-brand-error-darkest",
|
|
32
|
-
/**
|
|
89
|
+
/** {sys.color.fg.inverse} */
|
|
33
90
|
"accent": "--cnvs-brand-error-accent",
|
|
34
|
-
/**
|
|
91
|
+
/** {brand.critical.50} */
|
|
35
92
|
"lighter": "--cnvs-brand-error-lighter",
|
|
36
|
-
/**
|
|
93
|
+
/** {brand.critical.200} */
|
|
37
94
|
"light": "--cnvs-brand-error-light",
|
|
38
95
|
};
|
|
39
96
|
|
|
40
97
|
export declare const alert: {
|
|
41
|
-
/**
|
|
98
|
+
/** {brand.caution.400} */
|
|
42
99
|
"base": "--cnvs-brand-alert-base",
|
|
43
|
-
/**
|
|
100
|
+
/** {brand.caution.50} */
|
|
44
101
|
"lighter": "--cnvs-brand-alert-lighter",
|
|
45
|
-
/**
|
|
102
|
+
/** {brand.caution.25} */
|
|
46
103
|
"lightest": "--cnvs-brand-alert-lightest",
|
|
47
|
-
/**
|
|
104
|
+
/** {brand.caution.500} */
|
|
48
105
|
"dark": "--cnvs-brand-alert-dark",
|
|
49
|
-
/**
|
|
106
|
+
/** {brand.caution.600} */
|
|
50
107
|
"darkest": "--cnvs-brand-alert-darkest",
|
|
51
|
-
/**
|
|
108
|
+
/** {sys.color.fg.contrast.default} */
|
|
52
109
|
"accent": "--cnvs-brand-alert-accent",
|
|
53
|
-
/**
|
|
110
|
+
/** {brand.caution.200} */
|
|
54
111
|
"light": "--cnvs-brand-alert-light",
|
|
55
112
|
};
|
|
56
113
|
|
|
57
114
|
export declare const success: {
|
|
58
|
-
/**
|
|
115
|
+
/** {brand.positive.600} */
|
|
59
116
|
"base": "--cnvs-brand-success-base",
|
|
60
|
-
/**
|
|
117
|
+
/** {brand.positive.25} */
|
|
61
118
|
"lightest": "--cnvs-brand-success-lightest",
|
|
62
|
-
/**
|
|
119
|
+
/** {brand.positive.50} */
|
|
63
120
|
"lighter": "--cnvs-brand-success-lighter",
|
|
64
|
-
/**
|
|
121
|
+
/** {brand.positive.700} */
|
|
65
122
|
"dark": "--cnvs-brand-success-dark",
|
|
66
|
-
/**
|
|
123
|
+
/** {brand.positive.800} */
|
|
67
124
|
"darkest": "--cnvs-brand-success-darkest",
|
|
68
|
-
/**
|
|
125
|
+
/** {sys.color.fg.inverse} */
|
|
69
126
|
"accent": "--cnvs-brand-success-accent",
|
|
70
|
-
/**
|
|
127
|
+
/** {brand.positive.200} */
|
|
71
128
|
"light": "--cnvs-brand-success-light",
|
|
72
129
|
};
|
|
73
130
|
|
|
131
|
+
/** {base.palette.slate.25} */
|
|
132
|
+
export declare const neutral25: "--cnvs-brand-neutral-25";
|
|
133
|
+
|
|
134
|
+
/** {base.palette.slate.50} */
|
|
135
|
+
export declare const neutral50: "--cnvs-brand-neutral-50";
|
|
136
|
+
|
|
137
|
+
/** {base.palette.slate.100} */
|
|
138
|
+
export declare const neutral100: "--cnvs-brand-neutral-100";
|
|
139
|
+
|
|
140
|
+
/** {base.palette.slate.200} */
|
|
141
|
+
export declare const neutral200: "--cnvs-brand-neutral-200";
|
|
142
|
+
|
|
143
|
+
/** {base.palette.slate.300} */
|
|
144
|
+
export declare const neutral300: "--cnvs-brand-neutral-300";
|
|
145
|
+
|
|
146
|
+
/** {base.palette.slate.400} */
|
|
147
|
+
export declare const neutral400: "--cnvs-brand-neutral-400";
|
|
148
|
+
|
|
149
|
+
/** {base.palette.slate.500} */
|
|
150
|
+
export declare const neutral500: "--cnvs-brand-neutral-500";
|
|
151
|
+
|
|
152
|
+
/** {base.palette.slate.600} */
|
|
153
|
+
export declare const neutral600: "--cnvs-brand-neutral-600";
|
|
154
|
+
|
|
155
|
+
/** {base.palette.slate.700} */
|
|
156
|
+
export declare const neutral700: "--cnvs-brand-neutral-700";
|
|
157
|
+
|
|
158
|
+
/** {base.palette.slate.800} */
|
|
159
|
+
export declare const neutral800: "--cnvs-brand-neutral-800";
|
|
160
|
+
|
|
161
|
+
/** {base.palette.slate.900} */
|
|
162
|
+
export declare const neutral900: "--cnvs-brand-neutral-900";
|
|
163
|
+
|
|
164
|
+
/** {base.palette.slate.950} */
|
|
165
|
+
export declare const neutral950: "--cnvs-brand-neutral-950";
|
|
166
|
+
|
|
167
|
+
/** {base.palette.slate.975} */
|
|
168
|
+
export declare const neutral975: "--cnvs-brand-neutral-975";
|
|
169
|
+
|
|
74
170
|
export declare const neutral: {
|
|
75
|
-
/**
|
|
171
|
+
/** {brand.neutral.25} */
|
|
76
172
|
"lightest": "--cnvs-brand-neutral-lightest",
|
|
77
|
-
/**
|
|
173
|
+
/** {brand.neutral.600} */
|
|
78
174
|
"base": "--cnvs-brand-neutral-base",
|
|
79
|
-
/**
|
|
175
|
+
/** {brand.neutral.700} */
|
|
80
176
|
"dark": "--cnvs-brand-neutral-dark",
|
|
81
|
-
/**
|
|
177
|
+
/** {brand.neutral.800} */
|
|
82
178
|
"darkest": "--cnvs-brand-neutral-darkest",
|
|
83
|
-
/**
|
|
179
|
+
/** {sys.color.fg.inverse} */
|
|
84
180
|
"accent": "--cnvs-brand-neutral-accent",
|
|
85
|
-
/**
|
|
181
|
+
/** {base.palette.slate.50} */
|
|
86
182
|
"lighter": "--cnvs-brand-neutral-lighter",
|
|
87
|
-
/**
|
|
183
|
+
/** {base.palette.slate.200} */
|
|
88
184
|
"light": "--cnvs-brand-neutral-light",
|
|
89
185
|
};
|
|
90
186
|
|
|
187
|
+
/** oklch(0.4688 0.0781 250.43 / 0.03) */
|
|
188
|
+
export declare const neutralA25: "--cnvs-brand-neutral-a25";
|
|
189
|
+
|
|
190
|
+
/** oklch(0.3343 0.0951 253.3 / 0.05) */
|
|
191
|
+
export declare const neutralA50: "--cnvs-brand-neutral-a50";
|
|
192
|
+
|
|
193
|
+
/** oklch(0.3337 0.0688 250.79 / 0.09) */
|
|
194
|
+
export declare const neutralA100: "--cnvs-brand-neutral-a100";
|
|
195
|
+
|
|
196
|
+
/** oklch(0.3057 0.079 256.22 / 0.13) */
|
|
197
|
+
export declare const neutralA200: "--cnvs-brand-neutral-a200";
|
|
198
|
+
|
|
199
|
+
/** oklch(0.2442 0.0693 257.66 / 0.21) */
|
|
200
|
+
export declare const neutralA300: "--cnvs-brand-neutral-a300";
|
|
201
|
+
|
|
202
|
+
/** oklch(0.2333 0.0665 257.09 / 0.35) */
|
|
203
|
+
export declare const neutralA400: "--cnvs-brand-neutral-a400";
|
|
204
|
+
|
|
205
|
+
/** oklch(0.2187 0.0685 255.77 / 0.51) */
|
|
206
|
+
export declare const neutralA500: "--cnvs-brand-neutral-a500";
|
|
207
|
+
|
|
208
|
+
/** oklch(0.1793 0.0503 254.55 / 0.64) */
|
|
209
|
+
export declare const neutralA600: "--cnvs-brand-neutral-a600";
|
|
210
|
+
|
|
211
|
+
/** oklch(0.1595 0.0431 250.87 / 0.7) */
|
|
212
|
+
export declare const neutralA700: "--cnvs-brand-neutral-a700";
|
|
213
|
+
|
|
214
|
+
/** oklch(0.157 0.0349 253.16 / 0.79) */
|
|
215
|
+
export declare const neutralA800: "--cnvs-brand-neutral-a800";
|
|
216
|
+
|
|
217
|
+
/** oklch(0.1351 0.0244 244.09 / 0.87) */
|
|
218
|
+
export declare const neutralA900: "--cnvs-brand-neutral-a900";
|
|
219
|
+
|
|
220
|
+
/** oklch(0.1312 0.0198 248.87 / 0.9) */
|
|
221
|
+
export declare const neutralA950: "--cnvs-brand-neutral-a950";
|
|
222
|
+
|
|
223
|
+
/** oklch(0.1168 0.014 231.47 / 0.95) */
|
|
224
|
+
export declare const neutralA975: "--cnvs-brand-neutral-a975";
|
|
225
|
+
|
|
91
226
|
export declare const common: {
|
|
92
|
-
/**
|
|
227
|
+
/** {brand.common.focus} */
|
|
93
228
|
"focusOutline": "--cnvs-brand-common-focus-outline",
|
|
94
|
-
/**
|
|
229
|
+
/** {brand.common.critical} */
|
|
95
230
|
"errorInner": "--cnvs-brand-common-error-inner",
|
|
96
|
-
/**
|
|
231
|
+
/** {brand.common.caution.inner} */
|
|
97
232
|
"alertInner": "--cnvs-brand-common-alert-inner",
|
|
98
|
-
/**
|
|
233
|
+
/** {brand.common.caution.outer} */
|
|
99
234
|
"alertOuter": "--cnvs-brand-common-alert-outer",
|
|
235
|
+
/** {brand.primary.500} */
|
|
236
|
+
"focus": "--cnvs-brand-common-focus",
|
|
237
|
+
/** {brand.critical.500} */
|
|
238
|
+
"critical": "--cnvs-brand-common-critical",
|
|
239
|
+
"caution": {
|
|
240
|
+
/** {brand.caution.400} */
|
|
241
|
+
"inner": "--cnvs-brand-common-caution-inner",
|
|
242
|
+
/** {brand.caution.500} */
|
|
243
|
+
"outer": "--cnvs-brand-common-caution-outer",
|
|
244
|
+
},
|
|
100
245
|
};
|
|
101
246
|
|
|
247
|
+
/** {base.palette.red.25} */
|
|
248
|
+
export declare const critical25: "--cnvs-brand-critical-25";
|
|
249
|
+
|
|
250
|
+
/** {base.palette.red.50} */
|
|
251
|
+
export declare const critical50: "--cnvs-brand-critical-50";
|
|
252
|
+
|
|
253
|
+
/** {base.palette.red.100} */
|
|
254
|
+
export declare const critical100: "--cnvs-brand-critical-100";
|
|
255
|
+
|
|
256
|
+
/** {base.palette.red.200} */
|
|
257
|
+
export declare const critical200: "--cnvs-brand-critical-200";
|
|
258
|
+
|
|
259
|
+
/** {base.palette.red.300} */
|
|
260
|
+
export declare const critical300: "--cnvs-brand-critical-300";
|
|
261
|
+
|
|
262
|
+
/** {base.palette.red.400} */
|
|
263
|
+
export declare const critical400: "--cnvs-brand-critical-400";
|
|
264
|
+
|
|
265
|
+
/** {base.palette.red.500} */
|
|
266
|
+
export declare const critical500: "--cnvs-brand-critical-500";
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* {base.palette.red.600}
|
|
270
|
+
*
|
|
271
|
+
* Base critical color. Use fg.inverse on this.
|
|
272
|
+
*
|
|
273
|
+
*
|
|
274
|
+
*/
|
|
275
|
+
export declare const critical600: "--cnvs-brand-critical-600";
|
|
276
|
+
|
|
277
|
+
/** {base.palette.red.700} */
|
|
278
|
+
export declare const critical700: "--cnvs-brand-critical-700";
|
|
279
|
+
|
|
280
|
+
/** {base.palette.red.800} */
|
|
281
|
+
export declare const critical800: "--cnvs-brand-critical-800";
|
|
282
|
+
|
|
283
|
+
/** {base.palette.red.900} */
|
|
284
|
+
export declare const critical900: "--cnvs-brand-critical-900";
|
|
285
|
+
|
|
286
|
+
/** {base.palette.red.950} */
|
|
287
|
+
export declare const critical950: "--cnvs-brand-critical-950";
|
|
288
|
+
|
|
289
|
+
/** {base.palette.red.975} */
|
|
290
|
+
export declare const critical975: "--cnvs-brand-critical-975";
|
|
291
|
+
|
|
292
|
+
/** oklch(0.6289 0.2567 29.11 / 0.04) */
|
|
293
|
+
export declare const criticalA25: "--cnvs-brand-critical-a25";
|
|
294
|
+
|
|
295
|
+
/** oklch(0.6434 0.2428 30.17 / 0.1) */
|
|
296
|
+
export declare const criticalA50: "--cnvs-brand-critical-a50";
|
|
297
|
+
|
|
298
|
+
/** oklch(0.6382 0.248 30.42 / 0.16) */
|
|
299
|
+
export declare const criticalA100: "--cnvs-brand-critical-a100";
|
|
300
|
+
|
|
301
|
+
/** oklch(0.6375 0.2487 30.71 / 0.35) */
|
|
302
|
+
export declare const criticalA200: "--cnvs-brand-critical-a200";
|
|
303
|
+
|
|
304
|
+
/** {base.palette.amber.25} */
|
|
305
|
+
export declare const caution25: "--cnvs-brand-caution-25";
|
|
306
|
+
|
|
307
|
+
/** {base.palette.amber.50} */
|
|
308
|
+
export declare const caution50: "--cnvs-brand-caution-50";
|
|
309
|
+
|
|
310
|
+
/** {base.palette.amber.100} */
|
|
311
|
+
export declare const caution100: "--cnvs-brand-caution-100";
|
|
312
|
+
|
|
313
|
+
/** {base.palette.amber.200} */
|
|
314
|
+
export declare const caution200: "--cnvs-brand-caution-200";
|
|
315
|
+
|
|
316
|
+
/** {base.palette.amber.300} */
|
|
317
|
+
export declare const caution300: "--cnvs-brand-caution-300";
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* {base.palette.amber.400}
|
|
321
|
+
*
|
|
322
|
+
* Base caution color (amber.400). Use fg.contrast on this.
|
|
323
|
+
*
|
|
324
|
+
*
|
|
325
|
+
*/
|
|
326
|
+
export declare const caution400: "--cnvs-brand-caution-400";
|
|
327
|
+
|
|
328
|
+
/** {base.palette.amber.500} */
|
|
329
|
+
export declare const caution500: "--cnvs-brand-caution-500";
|
|
330
|
+
|
|
331
|
+
/** {base.palette.amber.600} */
|
|
332
|
+
export declare const caution600: "--cnvs-brand-caution-600";
|
|
333
|
+
|
|
334
|
+
/** {base.palette.amber.700} */
|
|
335
|
+
export declare const caution700: "--cnvs-brand-caution-700";
|
|
336
|
+
|
|
337
|
+
/** {base.palette.amber.800} */
|
|
338
|
+
export declare const caution800: "--cnvs-brand-caution-800";
|
|
339
|
+
|
|
340
|
+
/** {base.palette.amber.900} */
|
|
341
|
+
export declare const caution900: "--cnvs-brand-caution-900";
|
|
342
|
+
|
|
343
|
+
/** {base.palette.amber.950} */
|
|
344
|
+
export declare const caution950: "--cnvs-brand-caution-950";
|
|
345
|
+
|
|
346
|
+
/** {base.palette.amber.975} */
|
|
347
|
+
export declare const caution975: "--cnvs-brand-caution-975";
|
|
348
|
+
|
|
349
|
+
/** oklch(0.7982 0.159 92.57 / 0.1) */
|
|
350
|
+
export declare const cautionA25: "--cnvs-brand-caution-a25";
|
|
351
|
+
|
|
352
|
+
/** oklch(0.8864 0.1845 100.28 / 0.22) */
|
|
353
|
+
export declare const cautionA50: "--cnvs-brand-caution-a50";
|
|
354
|
+
|
|
355
|
+
/** oklch(0.8988 0.185 97.8 / 0.35) */
|
|
356
|
+
export declare const cautionA100: "--cnvs-brand-caution-a100";
|
|
357
|
+
|
|
358
|
+
/** oklch(0.886 0.1822 96.83 / 0.64) */
|
|
359
|
+
export declare const cautionA200: "--cnvs-brand-caution-a200";
|
|
360
|
+
|
|
361
|
+
/** {base.palette.green.25} */
|
|
362
|
+
export declare const positive25: "--cnvs-brand-positive-25";
|
|
363
|
+
|
|
364
|
+
/** {base.palette.green.50} */
|
|
365
|
+
export declare const positive50: "--cnvs-brand-positive-50";
|
|
366
|
+
|
|
367
|
+
/** {base.palette.green.100} */
|
|
368
|
+
export declare const positive100: "--cnvs-brand-positive-100";
|
|
369
|
+
|
|
370
|
+
/** {base.palette.green.200} */
|
|
371
|
+
export declare const positive200: "--cnvs-brand-positive-200";
|
|
372
|
+
|
|
373
|
+
/** {base.palette.green.300} */
|
|
374
|
+
export declare const positive300: "--cnvs-brand-positive-300";
|
|
375
|
+
|
|
376
|
+
/** {base.palette.green.400} */
|
|
377
|
+
export declare const positive400: "--cnvs-brand-positive-400";
|
|
378
|
+
|
|
379
|
+
/** {base.palette.green.500} */
|
|
380
|
+
export declare const positive500: "--cnvs-brand-positive-500";
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* {base.palette.green.600}
|
|
384
|
+
*
|
|
385
|
+
* Base success color. Use fg.inverse on this.
|
|
386
|
+
*
|
|
387
|
+
*
|
|
388
|
+
*/
|
|
389
|
+
export declare const positive600: "--cnvs-brand-positive-600";
|
|
390
|
+
|
|
391
|
+
/** {base.palette.green.700} */
|
|
392
|
+
export declare const positive700: "--cnvs-brand-positive-700";
|
|
393
|
+
|
|
394
|
+
/** {base.palette.green.800} */
|
|
395
|
+
export declare const positive800: "--cnvs-brand-positive-800";
|
|
396
|
+
|
|
397
|
+
/** {base.palette.green.900} */
|
|
398
|
+
export declare const positive900: "--cnvs-brand-positive-900";
|
|
399
|
+
|
|
400
|
+
/** {base.palette.green.950} */
|
|
401
|
+
export declare const positive950: "--cnvs-brand-positive-950";
|
|
402
|
+
|
|
403
|
+
/** {base.palette.green.975} */
|
|
404
|
+
export declare const positive975: "--cnvs-brand-positive-975";
|
|
405
|
+
|
|
406
|
+
/** oklch(0.8695 0.2801 143.52 / 0.08) */
|
|
407
|
+
export declare const positiveA25: "--cnvs-brand-positive-a25";
|
|
408
|
+
|
|
409
|
+
/** oklch(0.8685 0.2814 143.77 / 0.15) */
|
|
410
|
+
export declare const positiveA50: "--cnvs-brand-positive-a50";
|
|
411
|
+
|
|
412
|
+
/** oklch(0.8316 0.2716 143.71 / 0.29) */
|
|
413
|
+
export declare const positiveA100: "--cnvs-brand-positive-a100";
|
|
414
|
+
|
|
415
|
+
/** oklch(0.796 0.2508 144.9 / 0.6) */
|
|
416
|
+
export declare const positiveA200: "--cnvs-brand-positive-a200";
|
|
417
|
+
|
|
102
418
|
export declare const action: {
|
|
103
419
|
/**
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
* token: base.blue.600
|
|
420
|
+
* {base.palette.blue.600}
|
|
107
421
|
*
|
|
108
422
|
* Base action color
|
|
423
|
+
*
|
|
424
|
+
*
|
|
109
425
|
*/
|
|
110
426
|
"base": "--cnvs-brand-action-base",
|
|
111
427
|
/**
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
* token: base.blue.25
|
|
428
|
+
* {base.palette.blue.25}
|
|
115
429
|
*
|
|
116
430
|
* Lightest action color
|
|
431
|
+
*
|
|
432
|
+
*
|
|
117
433
|
*/
|
|
118
434
|
"lightest": "--cnvs-brand-action-lightest",
|
|
119
435
|
/**
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
* token: base.blue.200
|
|
436
|
+
* {base.palette.blue.200}
|
|
123
437
|
*
|
|
124
438
|
* Light action color
|
|
439
|
+
*
|
|
440
|
+
*
|
|
125
441
|
*/
|
|
126
442
|
"light": "--cnvs-brand-action-light",
|
|
127
443
|
/**
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
* token: base.blue.950
|
|
444
|
+
* {base.palette.blue.950}
|
|
131
445
|
*
|
|
132
446
|
* Darkest action color
|
|
447
|
+
*
|
|
448
|
+
*
|
|
133
449
|
*/
|
|
134
450
|
"darkest": "--cnvs-brand-action-darkest",
|
|
135
451
|
/**
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
* token: base.blue.700
|
|
452
|
+
* {base.palette.blue.700}
|
|
139
453
|
*
|
|
140
454
|
* Dark action color
|
|
455
|
+
*
|
|
456
|
+
*
|
|
141
457
|
*/
|
|
142
458
|
"dark": "--cnvs-brand-action-dark",
|
|
143
459
|
/**
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
* token: base.neutral.0
|
|
460
|
+
* {base.palette.neutral.0}
|
|
147
461
|
*
|
|
148
462
|
* Foreground color in actions
|
|
463
|
+
*
|
|
464
|
+
*
|
|
149
465
|
*/
|
|
150
466
|
"accent": "--cnvs-brand-action-accent",
|
|
151
467
|
/**
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
* token: base.blue.800
|
|
468
|
+
* {base.palette.blue.800}
|
|
155
469
|
*
|
|
156
470
|
* Dark action color
|
|
471
|
+
*
|
|
472
|
+
*
|
|
157
473
|
*/
|
|
158
474
|
"darker": "--cnvs-brand-action-darker",
|
|
159
475
|
/**
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
* token: base.blue.50
|
|
476
|
+
* {base.palette.blue.50}
|
|
163
477
|
*
|
|
164
478
|
* Lightest action color
|
|
479
|
+
*
|
|
480
|
+
*
|
|
165
481
|
*/
|
|
166
482
|
"lighter": "--cnvs-brand-action-lighter",
|
|
167
483
|
};
|
|
168
484
|
|
|
169
485
|
export declare const gradient: {
|
|
170
|
-
/** linear-gradient(90deg,
|
|
486
|
+
/** linear-gradient(90deg, {brand.primary.base} 0%, {brand.primary.dark} 100%) */
|
|
171
487
|
"primary": "--cnvs-brand-gradient-primary",
|
|
172
488
|
};
|