@neo4j-ndl/base 1.7.2 → 1.7.3
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/CHANGELOG.md +6 -0
- package/lib/cjs/tokens/js/storybook-design-token.js +822 -626
- package/lib/cjs/tokens/js/storybook-design-token.js.map +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +96 -68
- package/lib/cjs/tokens/js/tokens-esm.js.map +1 -1
- package/lib/cjs/tokens/js/tokens.js +96 -68
- package/lib/cjs/tokens/js/tokens.js.map +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +822 -626
- package/lib/esm/tokens/js/storybook-design-token.js.map +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +96 -68
- package/lib/esm/tokens/js/tokens-esm.js.map +1 -1
- package/lib/esm/tokens/js/tokens.js +96 -68
- package/lib/esm/tokens/js/tokens.js.map +1 -1
- package/lib/neo4j-ds-styles.css +76 -52
- package/lib/tokens/css/tokens.css +76 -52
- package/lib/tokens/js/tokens-raw.js +2748 -2288
- package/lib/tokens/js/tokens.js +96 -68
- package/lib/tokens/scss/tokens.scss +76 -52
- package/lib/types/tokens/js/storybook-design-token.d.ts +10 -2
- package/lib/types/tokens/js/tokens-esm.d.ts +114 -86
- package/lib/types/tokens/js/tokens.d.ts +114 -86
- package/package.json +1 -1
package/lib/tokens/js/tokens.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 21 Jun 2023 08:24:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const tokens = {
|
|
@@ -40,74 +40,21 @@ export const tokens = {
|
|
|
40
40
|
"xl": "1280px",
|
|
41
41
|
"2xl": "1536px"
|
|
42
42
|
},
|
|
43
|
-
"colors": {
|
|
44
|
-
"primary": {
|
|
45
|
-
"10": "#e6f8ff",
|
|
46
|
-
"20": "#a3e2ff",
|
|
47
|
-
"30": "#7ad1ff",
|
|
48
|
-
"40": "#018bff",
|
|
49
|
-
"50": "#006FD6",
|
|
50
|
-
"60": "#0056b3",
|
|
51
|
-
"70": "#004092"
|
|
52
|
-
},
|
|
53
|
-
"danger": {
|
|
54
|
-
"10": "#ffe6e9",
|
|
55
|
-
"20": "#ffb8c4",
|
|
56
|
-
"30": "#ff668a",
|
|
57
|
-
"40": "#ed1252",
|
|
58
|
-
"50": "#cc254b",
|
|
59
|
-
"60": "#a1003b",
|
|
60
|
-
"70": "#7a0031"
|
|
61
|
-
},
|
|
62
|
-
"success": {
|
|
63
|
-
"10": "#E1FAEF",
|
|
64
|
-
"20": "#98EDCB",
|
|
65
|
-
"30": "#44D4A4",
|
|
66
|
-
"40": "#00BA88",
|
|
67
|
-
"50": "#327D60",
|
|
68
|
-
"60": "#006E58",
|
|
69
|
-
"70": "#00473B"
|
|
70
|
-
},
|
|
71
|
-
"warning": {
|
|
72
|
-
"10": "#FFFBDE",
|
|
73
|
-
"20": "#FFF4B5",
|
|
74
|
-
"30": "#FFEA8C",
|
|
75
|
-
"40": "#FFDE63",
|
|
76
|
-
"50": "#D9B54A",
|
|
77
|
-
"60": "#966c2e",
|
|
78
|
-
"70": "#664817"
|
|
79
|
-
},
|
|
80
|
-
"blueberry": {
|
|
81
|
-
"10": "#E8EBF6",
|
|
82
|
-
"20": "#C4CCE9",
|
|
83
|
-
"30": "#9DABD9",
|
|
84
|
-
"40": "#768ACA",
|
|
85
|
-
"50": "#3557B4",
|
|
86
|
-
"60": "#25459E",
|
|
87
|
-
"70": "#0B297D"
|
|
88
|
-
},
|
|
89
|
-
"mint": {
|
|
90
|
-
"10": "#F0FFFA",
|
|
91
|
-
"20": "#D1FFF4",
|
|
92
|
-
"30": "#A8FFEE",
|
|
93
|
-
"40": "#55F9E2",
|
|
94
|
-
"50": "#3DD4C5",
|
|
95
|
-
"60": "#2AADA5",
|
|
96
|
-
"70": "#116161"
|
|
97
|
-
},
|
|
98
|
-
"neutral": {
|
|
99
|
-
"10": "#FFFFFF",
|
|
100
|
-
"20": "#F5F7FA",
|
|
101
|
-
"30": "#EEF1F6",
|
|
102
|
-
"40": "#E6E9EE",
|
|
103
|
-
"50": "#C4C8CD",
|
|
104
|
-
"60": "#B2B7BD",
|
|
105
|
-
"70": "#717780",
|
|
106
|
-
"80": "#535B66",
|
|
107
|
-
"90": "#151E29"
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
43
|
"palette": {
|
|
44
|
+
"categorical": {
|
|
45
|
+
"1": "#55BDC5",
|
|
46
|
+
"2": "#4D49CB",
|
|
47
|
+
"3": "#DC8B39",
|
|
48
|
+
"4": "#C9458D",
|
|
49
|
+
"5": "#8E8CF3",
|
|
50
|
+
"6": "#78DE7C",
|
|
51
|
+
"7": "#3F80E3",
|
|
52
|
+
"8": "#673FAB",
|
|
53
|
+
"9": "#DBBF40",
|
|
54
|
+
"10": "#BF732D",
|
|
55
|
+
"11": "#478A6E",
|
|
56
|
+
"12": "#ADE86B"
|
|
57
|
+
},
|
|
111
58
|
"dark": {
|
|
112
59
|
"neutral": {
|
|
113
60
|
"text": {
|
|
@@ -197,6 +144,20 @@ export const tokens = {
|
|
|
197
144
|
}
|
|
198
145
|
}
|
|
199
146
|
},
|
|
147
|
+
"graph": {
|
|
148
|
+
"1": "#FFDF81",
|
|
149
|
+
"2": "#C990C0",
|
|
150
|
+
"3": "#F79767",
|
|
151
|
+
"4": "#56C7E4",
|
|
152
|
+
"5": "#F16767",
|
|
153
|
+
"6": "#D8C7AE",
|
|
154
|
+
"7": "#8DCC93",
|
|
155
|
+
"8": "#ECB4C9",
|
|
156
|
+
"9": "#4D8DDA",
|
|
157
|
+
"10": "#FFC354",
|
|
158
|
+
"11": "#DA7294",
|
|
159
|
+
"12": "#579380"
|
|
160
|
+
},
|
|
200
161
|
"light": {
|
|
201
162
|
"neutral": {
|
|
202
163
|
"text": {
|
|
@@ -287,6 +248,73 @@ export const tokens = {
|
|
|
287
248
|
}
|
|
288
249
|
}
|
|
289
250
|
},
|
|
251
|
+
"colors": {
|
|
252
|
+
"primary": {
|
|
253
|
+
"10": "#e6f8ff",
|
|
254
|
+
"20": "#a3e2ff",
|
|
255
|
+
"30": "#7ad1ff",
|
|
256
|
+
"40": "#018bff",
|
|
257
|
+
"50": "#006FD6",
|
|
258
|
+
"60": "#0056b3",
|
|
259
|
+
"70": "#004092"
|
|
260
|
+
},
|
|
261
|
+
"danger": {
|
|
262
|
+
"10": "#ffe6e9",
|
|
263
|
+
"20": "#ffb8c4",
|
|
264
|
+
"30": "#ff668a",
|
|
265
|
+
"40": "#ed1252",
|
|
266
|
+
"50": "#cc254b",
|
|
267
|
+
"60": "#a1003b",
|
|
268
|
+
"70": "#7a0031"
|
|
269
|
+
},
|
|
270
|
+
"success": {
|
|
271
|
+
"10": "#E1FAEF",
|
|
272
|
+
"20": "#98EDCB",
|
|
273
|
+
"30": "#44D4A4",
|
|
274
|
+
"40": "#00BA88",
|
|
275
|
+
"50": "#327D60",
|
|
276
|
+
"60": "#006E58",
|
|
277
|
+
"70": "#00473B"
|
|
278
|
+
},
|
|
279
|
+
"warning": {
|
|
280
|
+
"10": "#FFFBDE",
|
|
281
|
+
"20": "#FFF4B5",
|
|
282
|
+
"30": "#FFEA8C",
|
|
283
|
+
"40": "#FFDE63",
|
|
284
|
+
"50": "#D9B54A",
|
|
285
|
+
"60": "#966c2e",
|
|
286
|
+
"70": "#664817"
|
|
287
|
+
},
|
|
288
|
+
"blueberry": {
|
|
289
|
+
"10": "#E8EBF6",
|
|
290
|
+
"20": "#C4CCE9",
|
|
291
|
+
"30": "#9DABD9",
|
|
292
|
+
"40": "#768ACA",
|
|
293
|
+
"50": "#3557B4",
|
|
294
|
+
"60": "#25459E",
|
|
295
|
+
"70": "#0B297D"
|
|
296
|
+
},
|
|
297
|
+
"mint": {
|
|
298
|
+
"10": "#F0FFFA",
|
|
299
|
+
"20": "#D1FFF4",
|
|
300
|
+
"30": "#A8FFEE",
|
|
301
|
+
"40": "#55F9E2",
|
|
302
|
+
"50": "#3DD4C5",
|
|
303
|
+
"60": "#2AADA5",
|
|
304
|
+
"70": "#116161"
|
|
305
|
+
},
|
|
306
|
+
"neutral": {
|
|
307
|
+
"10": "#FFFFFF",
|
|
308
|
+
"20": "#F5F7FA",
|
|
309
|
+
"30": "#EEF1F6",
|
|
310
|
+
"40": "#E6E9EE",
|
|
311
|
+
"50": "#C4C8CD",
|
|
312
|
+
"60": "#B2B7BD",
|
|
313
|
+
"70": "#717780",
|
|
314
|
+
"80": "#535B66",
|
|
315
|
+
"90": "#151E29"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
290
318
|
"font": {
|
|
291
319
|
"size": {
|
|
292
320
|
"h1": "3rem",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Wed, 21 Jun 2023 08:24:49 GMT
|
|
4
4
|
|
|
5
5
|
$transitions-values-properties-default: all;
|
|
6
6
|
$transitions-values-duration-default: 100ms;
|
|
@@ -24,57 +24,18 @@ $breakpoints-md: 768px;
|
|
|
24
24
|
$breakpoints-lg: 1024px;
|
|
25
25
|
$breakpoints-xl: 1280px;
|
|
26
26
|
$breakpoints-2xl: 1536px;
|
|
27
|
-
$
|
|
28
|
-
$
|
|
29
|
-
$
|
|
30
|
-
$
|
|
31
|
-
$
|
|
32
|
-
$
|
|
33
|
-
$
|
|
34
|
-
$
|
|
35
|
-
$
|
|
36
|
-
$
|
|
37
|
-
$
|
|
38
|
-
$
|
|
39
|
-
$colors-danger-60: #a1003b;
|
|
40
|
-
$colors-danger-70: #7a0031;
|
|
41
|
-
$colors-success-10: #E1FAEF;
|
|
42
|
-
$colors-success-20: #98EDCB;
|
|
43
|
-
$colors-success-30: #44D4A4;
|
|
44
|
-
$colors-success-40: #00BA88;
|
|
45
|
-
$colors-success-50: #327D60;
|
|
46
|
-
$colors-success-60: #006E58;
|
|
47
|
-
$colors-success-70: #00473B;
|
|
48
|
-
$colors-warning-10: #FFFBDE;
|
|
49
|
-
$colors-warning-20: #FFF4B5;
|
|
50
|
-
$colors-warning-30: #FFEA8C;
|
|
51
|
-
$colors-warning-40: #FFDE63;
|
|
52
|
-
$colors-warning-50: #D9B54A;
|
|
53
|
-
$colors-warning-60: #966c2e;
|
|
54
|
-
$colors-warning-70: #664817;
|
|
55
|
-
$colors-blueberry-10: #E8EBF6;
|
|
56
|
-
$colors-blueberry-20: #C4CCE9;
|
|
57
|
-
$colors-blueberry-30: #9DABD9;
|
|
58
|
-
$colors-blueberry-40: #768ACA;
|
|
59
|
-
$colors-blueberry-50: #3557B4;
|
|
60
|
-
$colors-blueberry-60: #25459E;
|
|
61
|
-
$colors-blueberry-70: #0B297D;
|
|
62
|
-
$colors-mint-10: #F0FFFA;
|
|
63
|
-
$colors-mint-20: #D1FFF4;
|
|
64
|
-
$colors-mint-30: #A8FFEE;
|
|
65
|
-
$colors-mint-40: #55F9E2;
|
|
66
|
-
$colors-mint-50: #3DD4C5;
|
|
67
|
-
$colors-mint-60: #2AADA5;
|
|
68
|
-
$colors-mint-70: #116161;
|
|
69
|
-
$colors-neutral-10: #FFFFFF;
|
|
70
|
-
$colors-neutral-20: #F5F7FA;
|
|
71
|
-
$colors-neutral-30: #EEF1F6;
|
|
72
|
-
$colors-neutral-40: #E6E9EE;
|
|
73
|
-
$colors-neutral-50: #C4C8CD;
|
|
74
|
-
$colors-neutral-60: #B2B7BD;
|
|
75
|
-
$colors-neutral-70: #717780;
|
|
76
|
-
$colors-neutral-80: #535B66;
|
|
77
|
-
$colors-neutral-90: #151E29;
|
|
27
|
+
$palette-categorical-1: #55BDC5;
|
|
28
|
+
$palette-categorical-2: #4D49CB;
|
|
29
|
+
$palette-categorical-3: #DC8B39;
|
|
30
|
+
$palette-categorical-4: #C9458D;
|
|
31
|
+
$palette-categorical-5: #8E8CF3;
|
|
32
|
+
$palette-categorical-6: #78DE7C;
|
|
33
|
+
$palette-categorical-7: #3F80E3;
|
|
34
|
+
$palette-categorical-8: #673FAB;
|
|
35
|
+
$palette-categorical-9: #DBBF40;
|
|
36
|
+
$palette-categorical-10: #BF732D;
|
|
37
|
+
$palette-categorical-11: #478A6E;
|
|
38
|
+
$palette-categorical-12: #ADE86B;
|
|
78
39
|
$palette-dark-neutral-text-weakest: #717780;
|
|
79
40
|
$palette-dark-neutral-text-weaker: #B2B7BD;
|
|
80
41
|
$palette-dark-neutral-text-weak: #C4C8CD;
|
|
@@ -122,6 +83,18 @@ $palette-dark-success-bg-strong: #98EDCB;
|
|
|
122
83
|
$palette-dark-success-bg-weak: 47, 71, 73;
|
|
123
84
|
$palette-dark-success-border-strong: #98EDCB;
|
|
124
85
|
$palette-dark-success-border-weak: 73, 113, 106; // This is a beta version of the dark palette design tokens. Will be officially supported in Needle v2
|
|
86
|
+
$palette-graph-1: #FFDF81;
|
|
87
|
+
$palette-graph-2: #C990C0;
|
|
88
|
+
$palette-graph-3: #F79767;
|
|
89
|
+
$palette-graph-4: #56C7E4;
|
|
90
|
+
$palette-graph-5: #F16767;
|
|
91
|
+
$palette-graph-6: #D8C7AE;
|
|
92
|
+
$palette-graph-7: #8DCC93;
|
|
93
|
+
$palette-graph-8: #ECB4C9;
|
|
94
|
+
$palette-graph-9: #4D8DDA;
|
|
95
|
+
$palette-graph-10: #FFC354;
|
|
96
|
+
$palette-graph-11: #DA7294;
|
|
97
|
+
$palette-graph-12: #579380;
|
|
125
98
|
$palette-light-neutral-text-weakest: #B2B7BD;
|
|
126
99
|
$palette-light-neutral-text-weaker: #717780;
|
|
127
100
|
$palette-light-neutral-text-weak: #535B66;
|
|
@@ -169,6 +142,57 @@ $palette-light-success-bg-strong: #327D60;
|
|
|
169
142
|
$palette-light-success-bg-weak: #E1FAEF;
|
|
170
143
|
$palette-light-success-border-strong: #327D60;
|
|
171
144
|
$palette-light-success-border-weak: #98EDCB;
|
|
145
|
+
$colors-primary-10: #e6f8ff; // lighest shade of brand primary color
|
|
146
|
+
$colors-primary-20: #a3e2ff;
|
|
147
|
+
$colors-primary-30: #7ad1ff;
|
|
148
|
+
$colors-primary-40: #018bff;
|
|
149
|
+
$colors-primary-50: #006FD6;
|
|
150
|
+
$colors-primary-60: #0056b3;
|
|
151
|
+
$colors-primary-70: #004092;
|
|
152
|
+
$colors-danger-10: #ffe6e9;
|
|
153
|
+
$colors-danger-20: #ffb8c4;
|
|
154
|
+
$colors-danger-30: #ff668a;
|
|
155
|
+
$colors-danger-40: #ed1252;
|
|
156
|
+
$colors-danger-50: #cc254b;
|
|
157
|
+
$colors-danger-60: #a1003b;
|
|
158
|
+
$colors-danger-70: #7a0031;
|
|
159
|
+
$colors-success-10: #E1FAEF;
|
|
160
|
+
$colors-success-20: #98EDCB;
|
|
161
|
+
$colors-success-30: #44D4A4;
|
|
162
|
+
$colors-success-40: #00BA88;
|
|
163
|
+
$colors-success-50: #327D60;
|
|
164
|
+
$colors-success-60: #006E58;
|
|
165
|
+
$colors-success-70: #00473B;
|
|
166
|
+
$colors-warning-10: #FFFBDE;
|
|
167
|
+
$colors-warning-20: #FFF4B5;
|
|
168
|
+
$colors-warning-30: #FFEA8C;
|
|
169
|
+
$colors-warning-40: #FFDE63;
|
|
170
|
+
$colors-warning-50: #D9B54A;
|
|
171
|
+
$colors-warning-60: #966c2e;
|
|
172
|
+
$colors-warning-70: #664817;
|
|
173
|
+
$colors-blueberry-10: #E8EBF6;
|
|
174
|
+
$colors-blueberry-20: #C4CCE9;
|
|
175
|
+
$colors-blueberry-30: #9DABD9;
|
|
176
|
+
$colors-blueberry-40: #768ACA;
|
|
177
|
+
$colors-blueberry-50: #3557B4;
|
|
178
|
+
$colors-blueberry-60: #25459E;
|
|
179
|
+
$colors-blueberry-70: #0B297D;
|
|
180
|
+
$colors-mint-10: #F0FFFA;
|
|
181
|
+
$colors-mint-20: #D1FFF4;
|
|
182
|
+
$colors-mint-30: #A8FFEE;
|
|
183
|
+
$colors-mint-40: #55F9E2;
|
|
184
|
+
$colors-mint-50: #3DD4C5;
|
|
185
|
+
$colors-mint-60: #2AADA5;
|
|
186
|
+
$colors-mint-70: #116161;
|
|
187
|
+
$colors-neutral-10: #FFFFFF;
|
|
188
|
+
$colors-neutral-20: #F5F7FA;
|
|
189
|
+
$colors-neutral-30: #EEF1F6;
|
|
190
|
+
$colors-neutral-40: #E6E9EE;
|
|
191
|
+
$colors-neutral-50: #C4C8CD;
|
|
192
|
+
$colors-neutral-60: #B2B7BD;
|
|
193
|
+
$colors-neutral-70: #717780;
|
|
194
|
+
$colors-neutral-80: #535B66;
|
|
195
|
+
$colors-neutral-90: #151E29;
|
|
172
196
|
$font-size-h1: 3rem;
|
|
173
197
|
$font-size-h2: 2.5rem;
|
|
174
198
|
$font-size-h3: 1.875rem;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Wed, 21 Jun 2023 08:24:49 GMT
|
|
4
4
|
*/
|
|
5
5
|
export const tokens: {
|
|
6
6
|
transitions: {
|
|
@@ -17,7 +17,7 @@ export const tokens: {
|
|
|
17
17
|
value: string;
|
|
18
18
|
description: string;
|
|
19
19
|
}[];
|
|
20
|
-
|
|
20
|
+
"palette-categorical": {
|
|
21
21
|
path: string[];
|
|
22
22
|
value: string;
|
|
23
23
|
}[];
|
|
@@ -26,11 +26,19 @@ export const tokens: {
|
|
|
26
26
|
value: string;
|
|
27
27
|
description: string;
|
|
28
28
|
}[];
|
|
29
|
+
"palette-graph": {
|
|
30
|
+
path: string[];
|
|
31
|
+
value: string;
|
|
32
|
+
}[];
|
|
29
33
|
"palette-light": {
|
|
30
34
|
path: string[];
|
|
31
35
|
value: string;
|
|
32
36
|
description: string;
|
|
33
37
|
}[];
|
|
38
|
+
colors: {
|
|
39
|
+
path: string[];
|
|
40
|
+
value: string;
|
|
41
|
+
}[];
|
|
34
42
|
font: ({
|
|
35
43
|
path: string[];
|
|
36
44
|
value: string;
|
|
@@ -36,76 +36,23 @@ export namespace tokens {
|
|
|
36
36
|
xl: string;
|
|
37
37
|
"2xl": string;
|
|
38
38
|
};
|
|
39
|
-
namespace
|
|
40
|
-
const
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"10": string;
|
|
51
|
-
"20": string;
|
|
52
|
-
"30": string;
|
|
53
|
-
"40": string;
|
|
54
|
-
"50": string;
|
|
55
|
-
"60": string;
|
|
56
|
-
"70": string;
|
|
57
|
-
};
|
|
58
|
-
const success: {
|
|
59
|
-
"10": string;
|
|
60
|
-
"20": string;
|
|
61
|
-
"30": string;
|
|
62
|
-
"40": string;
|
|
63
|
-
"50": string;
|
|
64
|
-
"60": string;
|
|
65
|
-
"70": string;
|
|
66
|
-
};
|
|
67
|
-
const warning: {
|
|
68
|
-
"10": string;
|
|
69
|
-
"20": string;
|
|
70
|
-
"30": string;
|
|
71
|
-
"40": string;
|
|
72
|
-
"50": string;
|
|
73
|
-
"60": string;
|
|
74
|
-
"70": string;
|
|
75
|
-
};
|
|
76
|
-
const blueberry: {
|
|
77
|
-
"10": string;
|
|
78
|
-
"20": string;
|
|
79
|
-
"30": string;
|
|
80
|
-
"40": string;
|
|
81
|
-
"50": string;
|
|
82
|
-
"60": string;
|
|
83
|
-
"70": string;
|
|
84
|
-
};
|
|
85
|
-
const mint: {
|
|
39
|
+
namespace palette {
|
|
40
|
+
const categorical: {
|
|
41
|
+
"1": string;
|
|
42
|
+
"2": string;
|
|
43
|
+
"3": string;
|
|
44
|
+
"4": string;
|
|
45
|
+
"5": string;
|
|
46
|
+
"6": string;
|
|
47
|
+
"7": string;
|
|
48
|
+
"8": string;
|
|
49
|
+
"9": string;
|
|
86
50
|
"10": string;
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"40": string;
|
|
90
|
-
"50": string;
|
|
91
|
-
"60": string;
|
|
92
|
-
"70": string;
|
|
51
|
+
"11": string;
|
|
52
|
+
"12": string;
|
|
93
53
|
};
|
|
94
|
-
const neutral: {
|
|
95
|
-
"10": string;
|
|
96
|
-
"20": string;
|
|
97
|
-
"30": string;
|
|
98
|
-
"40": string;
|
|
99
|
-
"50": string;
|
|
100
|
-
"60": string;
|
|
101
|
-
"70": string;
|
|
102
|
-
"80": string;
|
|
103
|
-
"90": string;
|
|
104
|
-
};
|
|
105
|
-
}
|
|
106
|
-
namespace palette {
|
|
107
54
|
namespace dark {
|
|
108
|
-
|
|
55
|
+
namespace neutral {
|
|
109
56
|
namespace text {
|
|
110
57
|
export const weakest: string;
|
|
111
58
|
export const weaker: string;
|
|
@@ -132,8 +79,7 @@ export namespace tokens {
|
|
|
132
79
|
const hover: string;
|
|
133
80
|
const pressed: string;
|
|
134
81
|
}
|
|
135
|
-
|
|
136
|
-
export namespace primary_1 {
|
|
82
|
+
namespace primary {
|
|
137
83
|
const text_1: string;
|
|
138
84
|
export { text_1 as text };
|
|
139
85
|
const icon_1: string;
|
|
@@ -168,8 +114,7 @@ export namespace tokens {
|
|
|
168
114
|
}
|
|
169
115
|
export { pressed_1 as pressed };
|
|
170
116
|
}
|
|
171
|
-
|
|
172
|
-
export namespace danger_1 {
|
|
117
|
+
namespace danger {
|
|
173
118
|
const text_2: string;
|
|
174
119
|
export { text_2 as text };
|
|
175
120
|
const icon_2: string;
|
|
@@ -203,8 +148,7 @@ export namespace tokens {
|
|
|
203
148
|
}
|
|
204
149
|
export { pressed_2 as pressed };
|
|
205
150
|
}
|
|
206
|
-
|
|
207
|
-
export namespace warning_1 {
|
|
151
|
+
namespace warning {
|
|
208
152
|
const text_3: string;
|
|
209
153
|
export { text_3 as text };
|
|
210
154
|
const icon_3: string;
|
|
@@ -224,8 +168,7 @@ export namespace tokens {
|
|
|
224
168
|
}
|
|
225
169
|
export { border_3 as border };
|
|
226
170
|
}
|
|
227
|
-
|
|
228
|
-
export namespace success_1 {
|
|
171
|
+
namespace success {
|
|
229
172
|
const text_4: string;
|
|
230
173
|
export { text_4 as text };
|
|
231
174
|
const icon_4: string;
|
|
@@ -245,10 +188,23 @@ export namespace tokens {
|
|
|
245
188
|
}
|
|
246
189
|
export { border_4 as border };
|
|
247
190
|
}
|
|
248
|
-
export { success_1 as success };
|
|
249
191
|
}
|
|
192
|
+
const graph: {
|
|
193
|
+
"1": string;
|
|
194
|
+
"2": string;
|
|
195
|
+
"3": string;
|
|
196
|
+
"4": string;
|
|
197
|
+
"5": string;
|
|
198
|
+
"6": string;
|
|
199
|
+
"7": string;
|
|
200
|
+
"8": string;
|
|
201
|
+
"9": string;
|
|
202
|
+
"10": string;
|
|
203
|
+
"11": string;
|
|
204
|
+
"12": string;
|
|
205
|
+
};
|
|
250
206
|
namespace light {
|
|
251
|
-
export namespace
|
|
207
|
+
export namespace neutral_1 {
|
|
252
208
|
export namespace text_5 {
|
|
253
209
|
const weakest_1: string;
|
|
254
210
|
export { weakest_1 as weakest };
|
|
@@ -287,8 +243,8 @@ export namespace tokens {
|
|
|
287
243
|
const pressed_3: string;
|
|
288
244
|
export { pressed_3 as pressed };
|
|
289
245
|
}
|
|
290
|
-
export {
|
|
291
|
-
export namespace
|
|
246
|
+
export { neutral_1 as neutral };
|
|
247
|
+
export namespace primary_1 {
|
|
292
248
|
const text_6: string;
|
|
293
249
|
export { text_6 as text };
|
|
294
250
|
const icon_6: string;
|
|
@@ -324,8 +280,8 @@ export namespace tokens {
|
|
|
324
280
|
}
|
|
325
281
|
export { pressed_4 as pressed };
|
|
326
282
|
}
|
|
327
|
-
export {
|
|
328
|
-
export namespace
|
|
283
|
+
export { primary_1 as primary };
|
|
284
|
+
export namespace danger_1 {
|
|
329
285
|
const text_7: string;
|
|
330
286
|
export { text_7 as text };
|
|
331
287
|
const icon_7: string;
|
|
@@ -359,8 +315,8 @@ export namespace tokens {
|
|
|
359
315
|
}
|
|
360
316
|
export { pressed_5 as pressed };
|
|
361
317
|
}
|
|
362
|
-
export {
|
|
363
|
-
export namespace
|
|
318
|
+
export { danger_1 as danger };
|
|
319
|
+
export namespace warning_1 {
|
|
364
320
|
const text_8: string;
|
|
365
321
|
export { text_8 as text };
|
|
366
322
|
const icon_8: string;
|
|
@@ -380,8 +336,8 @@ export namespace tokens {
|
|
|
380
336
|
}
|
|
381
337
|
export { border_8 as border };
|
|
382
338
|
}
|
|
383
|
-
export {
|
|
384
|
-
export namespace
|
|
339
|
+
export { warning_1 as warning };
|
|
340
|
+
export namespace success_1 {
|
|
385
341
|
const text_9: string;
|
|
386
342
|
export { text_9 as text };
|
|
387
343
|
const icon_9: string;
|
|
@@ -401,9 +357,81 @@ export namespace tokens {
|
|
|
401
357
|
}
|
|
402
358
|
export { border_9 as border };
|
|
403
359
|
}
|
|
404
|
-
export {
|
|
360
|
+
export { success_1 as success };
|
|
405
361
|
}
|
|
406
362
|
}
|
|
363
|
+
namespace colors {
|
|
364
|
+
const primary_2: {
|
|
365
|
+
"10": string;
|
|
366
|
+
"20": string;
|
|
367
|
+
"30": string;
|
|
368
|
+
"40": string;
|
|
369
|
+
"50": string;
|
|
370
|
+
"60": string;
|
|
371
|
+
"70": string;
|
|
372
|
+
};
|
|
373
|
+
export { primary_2 as primary };
|
|
374
|
+
const danger_2: {
|
|
375
|
+
"10": string;
|
|
376
|
+
"20": string;
|
|
377
|
+
"30": string;
|
|
378
|
+
"40": string;
|
|
379
|
+
"50": string;
|
|
380
|
+
"60": string;
|
|
381
|
+
"70": string;
|
|
382
|
+
};
|
|
383
|
+
export { danger_2 as danger };
|
|
384
|
+
const success_2: {
|
|
385
|
+
"10": string;
|
|
386
|
+
"20": string;
|
|
387
|
+
"30": string;
|
|
388
|
+
"40": string;
|
|
389
|
+
"50": string;
|
|
390
|
+
"60": string;
|
|
391
|
+
"70": string;
|
|
392
|
+
};
|
|
393
|
+
export { success_2 as success };
|
|
394
|
+
const warning_2: {
|
|
395
|
+
"10": string;
|
|
396
|
+
"20": string;
|
|
397
|
+
"30": string;
|
|
398
|
+
"40": string;
|
|
399
|
+
"50": string;
|
|
400
|
+
"60": string;
|
|
401
|
+
"70": string;
|
|
402
|
+
};
|
|
403
|
+
export { warning_2 as warning };
|
|
404
|
+
export const blueberry: {
|
|
405
|
+
"10": string;
|
|
406
|
+
"20": string;
|
|
407
|
+
"30": string;
|
|
408
|
+
"40": string;
|
|
409
|
+
"50": string;
|
|
410
|
+
"60": string;
|
|
411
|
+
"70": string;
|
|
412
|
+
};
|
|
413
|
+
export const mint: {
|
|
414
|
+
"10": string;
|
|
415
|
+
"20": string;
|
|
416
|
+
"30": string;
|
|
417
|
+
"40": string;
|
|
418
|
+
"50": string;
|
|
419
|
+
"60": string;
|
|
420
|
+
"70": string;
|
|
421
|
+
};
|
|
422
|
+
const neutral_2: {
|
|
423
|
+
"10": string;
|
|
424
|
+
"20": string;
|
|
425
|
+
"30": string;
|
|
426
|
+
"40": string;
|
|
427
|
+
"50": string;
|
|
428
|
+
"60": string;
|
|
429
|
+
"70": string;
|
|
430
|
+
"80": string;
|
|
431
|
+
"90": string;
|
|
432
|
+
};
|
|
433
|
+
export { neutral_2 as neutral };
|
|
434
|
+
}
|
|
407
435
|
namespace font {
|
|
408
436
|
const size: {
|
|
409
437
|
h1: string;
|