@adddog/design-tokens 0.0.2
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/README.md +356 -0
- package/design-tokens.config.ts +52 -0
- package/dist/cli.cjs +334 -0
- package/dist/cli.cjs.map +1 -0
- package/dist/cli.d.cts +1 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.mjs +327 -0
- package/dist/cli.mjs.map +1 -0
- package/dist/index.cjs +616 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +814 -0
- package/dist/index.d.mts +814 -0
- package/dist/index.d.ts +814 -0
- package/dist/index.mjs +606 -0
- package/dist/index.mjs.map +1 -0
- package/dist/shared/design-tokens.CU0UQL81.mjs +364 -0
- package/dist/shared/design-tokens.CU0UQL81.mjs.map +1 -0
- package/dist/shared/design-tokens.DqoFGn31.cjs +375 -0
- package/dist/shared/design-tokens.DqoFGn31.cjs.map +1 -0
- package/output/dark.css +632 -0
- package/output/dark.scss +458 -0
- package/output/dark.ts +149 -0
- package/output/light.css +632 -0
- package/output/light.scss +458 -0
- package/output/light.ts +149 -0
- package/package.json +91 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,814 @@
|
|
|
1
|
+
type ThemeColorKeys = "accent50" | "accent100" | "accent200" | "accent300" | "accent400" | "accent500" | "accent600" | "accent700" | "accent800" | "dispositionAssumedFriend" | "dispositionCivilian" | "dispositionFriend" | "dispositionHostile" | "dispositionPending" | "dispositionSuspect" | "dispositionUnknown" | "negative50" | "negative100" | "negative200" | "negative300" | "negative400" | "negative500" | "negative600" | "negative700" | "negative800" | "positive50" | "positive100" | "positive200" | "positive300" | "positive400" | "positive500" | "positive600" | "positive700" | "positive800" | "primary0" | "primary50" | "primary100" | "primary150" | "primary200" | "primary250" | "primary300" | "primary350" | "primary400" | "primary450" | "primary500" | "primary550" | "primary600" | "primary650" | "primary700" | "primary750" | "primary800" | "primary850" | "primary900" | "primary950" | "warning50" | "warning100" | "warning200" | "warning300" | "warning400" | "warning500" | "warning600" | "warning700" | "warning800";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* This lovely file was brought to you via automation
|
|
5
|
+
* Please do not update directly, as your changes will not persist
|
|
6
|
+
*/
|
|
7
|
+
declare const colorWhite$1 = "#ffffff";
|
|
8
|
+
declare const colorBlack$1 = "#000000";
|
|
9
|
+
declare const colorGray50$1 = "#F2F3F4";
|
|
10
|
+
declare const colorGray100$1 = "#D7D8DB";
|
|
11
|
+
declare const colorGray150$1 = "#CACCCF";
|
|
12
|
+
declare const colorGray200$1 = "#BCBFC2";
|
|
13
|
+
declare const colorGray250$1 = "#AFB2B6";
|
|
14
|
+
declare const colorGray300$1 = "#A2A4A9";
|
|
15
|
+
declare const colorGray350$1 = "#95979C";
|
|
16
|
+
declare const colorGray400$1 = "#888A8F";
|
|
17
|
+
declare const colorGray450$1 = "#7B7D83";
|
|
18
|
+
declare const colorGray500$1 = "#6E7076";
|
|
19
|
+
declare const colorGray550$1 = "#5F6268";
|
|
20
|
+
declare const colorGray600$1 = "#505359";
|
|
21
|
+
declare const colorGray650$1 = "#3E4146";
|
|
22
|
+
declare const colorGray700$1 = "#2B2F33";
|
|
23
|
+
declare const colorGray750$1 = "#24262A";
|
|
24
|
+
declare const colorGray800$1 = "#1C1D21";
|
|
25
|
+
declare const colorGray850$1 = "#15161A";
|
|
26
|
+
declare const colorGray900$1 = "#0E0F12";
|
|
27
|
+
declare const colorGray950$1 = "#040405";
|
|
28
|
+
declare const colorBlue50$1 = "#E5E9FF";
|
|
29
|
+
declare const colorBlue100$1 = "#B8C1FF";
|
|
30
|
+
declare const colorBlue200$1 = "#8C9BFF";
|
|
31
|
+
declare const colorBlue300$1 = "#667BFF";
|
|
32
|
+
declare const colorBlue400$1 = "#334EFF";
|
|
33
|
+
declare const colorBlue500$1 = "#2C42D3";
|
|
34
|
+
declare const colorBlue600$1 = "#2435A7";
|
|
35
|
+
declare const colorBlue700$1 = "#1C2779";
|
|
36
|
+
declare const colorBlue800$1 = "#1A1E36";
|
|
37
|
+
declare const colorBlueNeon$1 = "#18FFFF";
|
|
38
|
+
declare const colorPurple50$1 = "#F8EEFF";
|
|
39
|
+
declare const colorPurple100$1 = "#E2BCFB";
|
|
40
|
+
declare const colorPurple200$1 = "#D79AFF";
|
|
41
|
+
declare const colorPurple300$1 = "#B65DF2";
|
|
42
|
+
declare const colorPurple400$1 = "#A02DED";
|
|
43
|
+
declare const colorPurple500$1 = "#812BBA";
|
|
44
|
+
declare const colorPurple600$1 = "#622888";
|
|
45
|
+
declare const colorPurple700$1 = "#412554";
|
|
46
|
+
declare const colorPurple800$1 = "#2B1A36";
|
|
47
|
+
declare const colorPurpleNeon$1 = "#FF47CE";
|
|
48
|
+
declare const colorOrange50$1 = "#FFDDC7";
|
|
49
|
+
declare const colorOrange100$1 = "#FCBE94";
|
|
50
|
+
declare const colorOrange200$1 = "#F9A269";
|
|
51
|
+
declare const colorOrange300$1 = "#F5873D";
|
|
52
|
+
declare const colorOrange400$1 = "#F16C12";
|
|
53
|
+
declare const colorOrange500$1 = "#CA5A10";
|
|
54
|
+
declare const colorOrange600$1 = "#A2490D";
|
|
55
|
+
declare const colorOrange700$1 = "#692E07";
|
|
56
|
+
declare const colorOrange800$1 = "#312118";
|
|
57
|
+
declare const colorOrangeNeon$1 = "#FF9212";
|
|
58
|
+
declare const colorGreen50$1 = "#E1F5E8";
|
|
59
|
+
declare const colorGreen100$1 = "#B0E9C3";
|
|
60
|
+
declare const colorGreen200$1 = "#80DD9F";
|
|
61
|
+
declare const colorGreen300$1 = "#50D17B";
|
|
62
|
+
declare const colorGreen400$1 = "#20C557";
|
|
63
|
+
declare const colorGreen500$1 = "#1B9F47";
|
|
64
|
+
declare const colorGreen600$1 = "#167737";
|
|
65
|
+
declare const colorGreen700$1 = "#104E25";
|
|
66
|
+
declare const colorGreen800$1 = "#182C22";
|
|
67
|
+
declare const colorGreenNeon$1 = "#00FF3C";
|
|
68
|
+
declare const colorRed50$1 = "#FFD0D0";
|
|
69
|
+
declare const colorRed100$1 = "#F7A4A4";
|
|
70
|
+
declare const colorRed200$1 = "#EF7979";
|
|
71
|
+
declare const colorRed300$1 = "#ED5151";
|
|
72
|
+
declare const colorRed400$1 = "#D63333";
|
|
73
|
+
declare const colorRed500$1 = "#B82121";
|
|
74
|
+
declare const colorRed600$1 = "#901E1E";
|
|
75
|
+
declare const colorRed700$1 = "#691212";
|
|
76
|
+
declare const colorRed800$1 = "#2F191B";
|
|
77
|
+
declare const colorRedNeon$1 = "#FF3737";
|
|
78
|
+
declare const colorYellow50$1 = "#FFF3D6";
|
|
79
|
+
declare const colorYellow100$1 = "#FFE49F";
|
|
80
|
+
declare const colorYellow200$1 = "#FFD66A";
|
|
81
|
+
declare const colorYellow300$1 = "#FFC736";
|
|
82
|
+
declare const colorYellow400$1 = "#FFB800";
|
|
83
|
+
declare const colorYellow500$1 = "#D59A03";
|
|
84
|
+
declare const colorYellow600$1 = "#AA7C05";
|
|
85
|
+
declare const colorYellow700$1 = "#715100";
|
|
86
|
+
declare const colorYellow800$1 = "#322B17";
|
|
87
|
+
declare const colorYellowNeon$1 = "#FFFF21";
|
|
88
|
+
declare const colorAccent50$1 = "#1A1E36";
|
|
89
|
+
declare const colorAccent100$1 = "#1C2779";
|
|
90
|
+
declare const colorAccent200$1 = "#2435A7";
|
|
91
|
+
declare const colorAccent300$1 = "#2C42D3";
|
|
92
|
+
declare const colorAccent400$1 = "#334EFF";
|
|
93
|
+
declare const colorAccent500$1 = "#667BFF";
|
|
94
|
+
declare const colorAccent600$1 = "#8C9BFF";
|
|
95
|
+
declare const colorAccent700$1 = "#B8C1FF";
|
|
96
|
+
declare const colorAccent800$1 = "#E5E9FF";
|
|
97
|
+
declare const colorNegative50$1 = "#2F191B";
|
|
98
|
+
declare const colorNegative100$1 = "#691212";
|
|
99
|
+
declare const colorNegative200$1 = "#901E1E";
|
|
100
|
+
declare const colorNegative300$1 = "#B82121";
|
|
101
|
+
declare const colorNegative400$1 = "#D63333";
|
|
102
|
+
declare const colorNegative500$1 = "#ED5151";
|
|
103
|
+
declare const colorNegative600$1 = "#EF7979";
|
|
104
|
+
declare const colorNegative700$1 = "#F7A4A4";
|
|
105
|
+
declare const colorNegative800$1 = "#FFD0D0";
|
|
106
|
+
declare const colorPositive50$1 = "#182C22";
|
|
107
|
+
declare const colorPositive100$1 = "#104E25";
|
|
108
|
+
declare const colorPositive200$1 = "#167737";
|
|
109
|
+
declare const colorPositive300$1 = "#1B9F47";
|
|
110
|
+
declare const colorPositive400$1 = "#20C557";
|
|
111
|
+
declare const colorPositive500$1 = "#50D17B";
|
|
112
|
+
declare const colorPositive600$1 = "#80DD9F";
|
|
113
|
+
declare const colorPositive700$1 = "#B0E9C3";
|
|
114
|
+
declare const colorPositive800$1 = "#E1F5E8";
|
|
115
|
+
declare const colorPrimary0$1 = "#040405";
|
|
116
|
+
declare const colorPrimary50$1 = "#15161A";
|
|
117
|
+
declare const colorPrimary100$1 = "#24262A";
|
|
118
|
+
declare const colorPrimary150$1 = "#2B2F33";
|
|
119
|
+
declare const colorPrimary200$1 = "#3E4146";
|
|
120
|
+
declare const colorPrimary250$1 = "#505359";
|
|
121
|
+
declare const colorPrimary300$1 = "#505359";
|
|
122
|
+
declare const colorPrimary350$1 = "#505359";
|
|
123
|
+
declare const colorPrimary400$1 = "#6E7076";
|
|
124
|
+
declare const colorPrimary450$1 = "#6E7076";
|
|
125
|
+
declare const colorPrimary500$1 = "#888A8F";
|
|
126
|
+
declare const colorPrimary550$1 = "#888A8F";
|
|
127
|
+
declare const colorPrimary600$1 = "#A2A4A9";
|
|
128
|
+
declare const colorPrimary650$1 = "#A2A4A9";
|
|
129
|
+
declare const colorPrimary700$1 = "#BCBFC2";
|
|
130
|
+
declare const colorPrimary750$1 = "#BCBFC2";
|
|
131
|
+
declare const colorPrimary800$1 = "#D7D8DB";
|
|
132
|
+
declare const colorPrimary850$1 = "#D7D8DB";
|
|
133
|
+
declare const colorPrimary900$1 = "#F2F3F4";
|
|
134
|
+
declare const colorPrimary950$1 = "#ffffff";
|
|
135
|
+
declare const colorWarning50$1 = "#322B17";
|
|
136
|
+
declare const colorWarning100$1 = "#715100";
|
|
137
|
+
declare const colorWarning200$1 = "#AA7C05";
|
|
138
|
+
declare const colorWarning300$1 = "#D59A03";
|
|
139
|
+
declare const colorWarning400$1 = "#FFB800";
|
|
140
|
+
declare const colorWarning500$1 = "#FFC736";
|
|
141
|
+
declare const colorWarning600$1 = "#FFD66A";
|
|
142
|
+
declare const colorWarning700$1 = "#FFE49F";
|
|
143
|
+
declare const colorWarning800$1 = "#FFF3D6";
|
|
144
|
+
declare const colorDispositionAssumedFriend$1 = "#00FF3C";
|
|
145
|
+
declare const colorDispositionCivilian$1 = "#FF47CE";
|
|
146
|
+
declare const colorDispositionFriend$1 = "#18FFFF";
|
|
147
|
+
declare const colorDispositionHostile$1 = "#FF3737";
|
|
148
|
+
declare const colorDispositionPending$1 = "#F2F3F4";
|
|
149
|
+
declare const colorDispositionSuspect$1 = "#FF9212";
|
|
150
|
+
declare const colorDispositionUnknown$1 = "#FFFF21";
|
|
151
|
+
|
|
152
|
+
declare namespace DarkThemeTokens {
|
|
153
|
+
export {
|
|
154
|
+
colorAccent100$1 as colorAccent100,
|
|
155
|
+
colorAccent200$1 as colorAccent200,
|
|
156
|
+
colorAccent300$1 as colorAccent300,
|
|
157
|
+
colorAccent400$1 as colorAccent400,
|
|
158
|
+
colorAccent50$1 as colorAccent50,
|
|
159
|
+
colorAccent500$1 as colorAccent500,
|
|
160
|
+
colorAccent600$1 as colorAccent600,
|
|
161
|
+
colorAccent700$1 as colorAccent700,
|
|
162
|
+
colorAccent800$1 as colorAccent800,
|
|
163
|
+
colorBlack$1 as colorBlack,
|
|
164
|
+
colorBlue100$1 as colorBlue100,
|
|
165
|
+
colorBlue200$1 as colorBlue200,
|
|
166
|
+
colorBlue300$1 as colorBlue300,
|
|
167
|
+
colorBlue400$1 as colorBlue400,
|
|
168
|
+
colorBlue50$1 as colorBlue50,
|
|
169
|
+
colorBlue500$1 as colorBlue500,
|
|
170
|
+
colorBlue600$1 as colorBlue600,
|
|
171
|
+
colorBlue700$1 as colorBlue700,
|
|
172
|
+
colorBlue800$1 as colorBlue800,
|
|
173
|
+
colorBlueNeon$1 as colorBlueNeon,
|
|
174
|
+
colorDispositionAssumedFriend$1 as colorDispositionAssumedFriend,
|
|
175
|
+
colorDispositionCivilian$1 as colorDispositionCivilian,
|
|
176
|
+
colorDispositionFriend$1 as colorDispositionFriend,
|
|
177
|
+
colorDispositionHostile$1 as colorDispositionHostile,
|
|
178
|
+
colorDispositionPending$1 as colorDispositionPending,
|
|
179
|
+
colorDispositionSuspect$1 as colorDispositionSuspect,
|
|
180
|
+
colorDispositionUnknown$1 as colorDispositionUnknown,
|
|
181
|
+
colorGray100$1 as colorGray100,
|
|
182
|
+
colorGray150$1 as colorGray150,
|
|
183
|
+
colorGray200$1 as colorGray200,
|
|
184
|
+
colorGray250$1 as colorGray250,
|
|
185
|
+
colorGray300$1 as colorGray300,
|
|
186
|
+
colorGray350$1 as colorGray350,
|
|
187
|
+
colorGray400$1 as colorGray400,
|
|
188
|
+
colorGray450$1 as colorGray450,
|
|
189
|
+
colorGray50$1 as colorGray50,
|
|
190
|
+
colorGray500$1 as colorGray500,
|
|
191
|
+
colorGray550$1 as colorGray550,
|
|
192
|
+
colorGray600$1 as colorGray600,
|
|
193
|
+
colorGray650$1 as colorGray650,
|
|
194
|
+
colorGray700$1 as colorGray700,
|
|
195
|
+
colorGray750$1 as colorGray750,
|
|
196
|
+
colorGray800$1 as colorGray800,
|
|
197
|
+
colorGray850$1 as colorGray850,
|
|
198
|
+
colorGray900$1 as colorGray900,
|
|
199
|
+
colorGray950$1 as colorGray950,
|
|
200
|
+
colorGreen100$1 as colorGreen100,
|
|
201
|
+
colorGreen200$1 as colorGreen200,
|
|
202
|
+
colorGreen300$1 as colorGreen300,
|
|
203
|
+
colorGreen400$1 as colorGreen400,
|
|
204
|
+
colorGreen50$1 as colorGreen50,
|
|
205
|
+
colorGreen500$1 as colorGreen500,
|
|
206
|
+
colorGreen600$1 as colorGreen600,
|
|
207
|
+
colorGreen700$1 as colorGreen700,
|
|
208
|
+
colorGreen800$1 as colorGreen800,
|
|
209
|
+
colorGreenNeon$1 as colorGreenNeon,
|
|
210
|
+
colorNegative100$1 as colorNegative100,
|
|
211
|
+
colorNegative200$1 as colorNegative200,
|
|
212
|
+
colorNegative300$1 as colorNegative300,
|
|
213
|
+
colorNegative400$1 as colorNegative400,
|
|
214
|
+
colorNegative50$1 as colorNegative50,
|
|
215
|
+
colorNegative500$1 as colorNegative500,
|
|
216
|
+
colorNegative600$1 as colorNegative600,
|
|
217
|
+
colorNegative700$1 as colorNegative700,
|
|
218
|
+
colorNegative800$1 as colorNegative800,
|
|
219
|
+
colorOrange100$1 as colorOrange100,
|
|
220
|
+
colorOrange200$1 as colorOrange200,
|
|
221
|
+
colorOrange300$1 as colorOrange300,
|
|
222
|
+
colorOrange400$1 as colorOrange400,
|
|
223
|
+
colorOrange50$1 as colorOrange50,
|
|
224
|
+
colorOrange500$1 as colorOrange500,
|
|
225
|
+
colorOrange600$1 as colorOrange600,
|
|
226
|
+
colorOrange700$1 as colorOrange700,
|
|
227
|
+
colorOrange800$1 as colorOrange800,
|
|
228
|
+
colorOrangeNeon$1 as colorOrangeNeon,
|
|
229
|
+
colorPositive100$1 as colorPositive100,
|
|
230
|
+
colorPositive200$1 as colorPositive200,
|
|
231
|
+
colorPositive300$1 as colorPositive300,
|
|
232
|
+
colorPositive400$1 as colorPositive400,
|
|
233
|
+
colorPositive50$1 as colorPositive50,
|
|
234
|
+
colorPositive500$1 as colorPositive500,
|
|
235
|
+
colorPositive600$1 as colorPositive600,
|
|
236
|
+
colorPositive700$1 as colorPositive700,
|
|
237
|
+
colorPositive800$1 as colorPositive800,
|
|
238
|
+
colorPrimary0$1 as colorPrimary0,
|
|
239
|
+
colorPrimary100$1 as colorPrimary100,
|
|
240
|
+
colorPrimary150$1 as colorPrimary150,
|
|
241
|
+
colorPrimary200$1 as colorPrimary200,
|
|
242
|
+
colorPrimary250$1 as colorPrimary250,
|
|
243
|
+
colorPrimary300$1 as colorPrimary300,
|
|
244
|
+
colorPrimary350$1 as colorPrimary350,
|
|
245
|
+
colorPrimary400$1 as colorPrimary400,
|
|
246
|
+
colorPrimary450$1 as colorPrimary450,
|
|
247
|
+
colorPrimary50$1 as colorPrimary50,
|
|
248
|
+
colorPrimary500$1 as colorPrimary500,
|
|
249
|
+
colorPrimary550$1 as colorPrimary550,
|
|
250
|
+
colorPrimary600$1 as colorPrimary600,
|
|
251
|
+
colorPrimary650$1 as colorPrimary650,
|
|
252
|
+
colorPrimary700$1 as colorPrimary700,
|
|
253
|
+
colorPrimary750$1 as colorPrimary750,
|
|
254
|
+
colorPrimary800$1 as colorPrimary800,
|
|
255
|
+
colorPrimary850$1 as colorPrimary850,
|
|
256
|
+
colorPrimary900$1 as colorPrimary900,
|
|
257
|
+
colorPrimary950$1 as colorPrimary950,
|
|
258
|
+
colorPurple100$1 as colorPurple100,
|
|
259
|
+
colorPurple200$1 as colorPurple200,
|
|
260
|
+
colorPurple300$1 as colorPurple300,
|
|
261
|
+
colorPurple400$1 as colorPurple400,
|
|
262
|
+
colorPurple50$1 as colorPurple50,
|
|
263
|
+
colorPurple500$1 as colorPurple500,
|
|
264
|
+
colorPurple600$1 as colorPurple600,
|
|
265
|
+
colorPurple700$1 as colorPurple700,
|
|
266
|
+
colorPurple800$1 as colorPurple800,
|
|
267
|
+
colorPurpleNeon$1 as colorPurpleNeon,
|
|
268
|
+
colorRed100$1 as colorRed100,
|
|
269
|
+
colorRed200$1 as colorRed200,
|
|
270
|
+
colorRed300$1 as colorRed300,
|
|
271
|
+
colorRed400$1 as colorRed400,
|
|
272
|
+
colorRed50$1 as colorRed50,
|
|
273
|
+
colorRed500$1 as colorRed500,
|
|
274
|
+
colorRed600$1 as colorRed600,
|
|
275
|
+
colorRed700$1 as colorRed700,
|
|
276
|
+
colorRed800$1 as colorRed800,
|
|
277
|
+
colorRedNeon$1 as colorRedNeon,
|
|
278
|
+
colorWarning100$1 as colorWarning100,
|
|
279
|
+
colorWarning200$1 as colorWarning200,
|
|
280
|
+
colorWarning300$1 as colorWarning300,
|
|
281
|
+
colorWarning400$1 as colorWarning400,
|
|
282
|
+
colorWarning50$1 as colorWarning50,
|
|
283
|
+
colorWarning500$1 as colorWarning500,
|
|
284
|
+
colorWarning600$1 as colorWarning600,
|
|
285
|
+
colorWarning700$1 as colorWarning700,
|
|
286
|
+
colorWarning800$1 as colorWarning800,
|
|
287
|
+
colorWhite$1 as colorWhite,
|
|
288
|
+
colorYellow100$1 as colorYellow100,
|
|
289
|
+
colorYellow200$1 as colorYellow200,
|
|
290
|
+
colorYellow300$1 as colorYellow300,
|
|
291
|
+
colorYellow400$1 as colorYellow400,
|
|
292
|
+
colorYellow50$1 as colorYellow50,
|
|
293
|
+
colorYellow500$1 as colorYellow500,
|
|
294
|
+
colorYellow600$1 as colorYellow600,
|
|
295
|
+
colorYellow700$1 as colorYellow700,
|
|
296
|
+
colorYellow800$1 as colorYellow800,
|
|
297
|
+
colorYellowNeon$1 as colorYellowNeon,
|
|
298
|
+
};
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* This lovely file was brought to you via automation
|
|
303
|
+
* Please do not update directly, as your changes will not persist
|
|
304
|
+
*/
|
|
305
|
+
declare const colorWhite = "#ffffff";
|
|
306
|
+
declare const colorBlack = "#000000";
|
|
307
|
+
declare const colorGray50 = "#F2F3F4";
|
|
308
|
+
declare const colorGray100 = "#D7D8DB";
|
|
309
|
+
declare const colorGray150 = "#CACCCF";
|
|
310
|
+
declare const colorGray200 = "#BCBFC2";
|
|
311
|
+
declare const colorGray250 = "#AFB2B6";
|
|
312
|
+
declare const colorGray300 = "#A2A4A9";
|
|
313
|
+
declare const colorGray350 = "#95979C";
|
|
314
|
+
declare const colorGray400 = "#888A8F";
|
|
315
|
+
declare const colorGray450 = "#7B7D83";
|
|
316
|
+
declare const colorGray500 = "#6E7076";
|
|
317
|
+
declare const colorGray550 = "#5F6268";
|
|
318
|
+
declare const colorGray600 = "#505359";
|
|
319
|
+
declare const colorGray650 = "#3E4146";
|
|
320
|
+
declare const colorGray700 = "#2B2F33";
|
|
321
|
+
declare const colorGray750 = "#24262A";
|
|
322
|
+
declare const colorGray800 = "#1C1D21";
|
|
323
|
+
declare const colorGray850 = "#15161A";
|
|
324
|
+
declare const colorGray900 = "#0E0F12";
|
|
325
|
+
declare const colorGray950 = "#040405";
|
|
326
|
+
declare const colorBlue50 = "#E5E9FF";
|
|
327
|
+
declare const colorBlue100 = "#B8C1FF";
|
|
328
|
+
declare const colorBlue200 = "#8C9BFF";
|
|
329
|
+
declare const colorBlue300 = "#667BFF";
|
|
330
|
+
declare const colorBlue400 = "#334EFF";
|
|
331
|
+
declare const colorBlue500 = "#2C42D3";
|
|
332
|
+
declare const colorBlue600 = "#2435A7";
|
|
333
|
+
declare const colorBlue700 = "#1C2779";
|
|
334
|
+
declare const colorBlue800 = "#1A1E36";
|
|
335
|
+
declare const colorBlueNeon = "#18FFFF";
|
|
336
|
+
declare const colorPurple50 = "#F8EEFF";
|
|
337
|
+
declare const colorPurple100 = "#E2BCFB";
|
|
338
|
+
declare const colorPurple200 = "#D79AFF";
|
|
339
|
+
declare const colorPurple300 = "#B65DF2";
|
|
340
|
+
declare const colorPurple400 = "#A02DED";
|
|
341
|
+
declare const colorPurple500 = "#812BBA";
|
|
342
|
+
declare const colorPurple600 = "#622888";
|
|
343
|
+
declare const colorPurple700 = "#412554";
|
|
344
|
+
declare const colorPurple800 = "#2B1A36";
|
|
345
|
+
declare const colorPurpleNeon = "#FF47CE";
|
|
346
|
+
declare const colorOrange50 = "#FFDDC7";
|
|
347
|
+
declare const colorOrange100 = "#FCBE94";
|
|
348
|
+
declare const colorOrange200 = "#F9A269";
|
|
349
|
+
declare const colorOrange300 = "#F5873D";
|
|
350
|
+
declare const colorOrange400 = "#F16C12";
|
|
351
|
+
declare const colorOrange500 = "#CA5A10";
|
|
352
|
+
declare const colorOrange600 = "#A2490D";
|
|
353
|
+
declare const colorOrange700 = "#692E07";
|
|
354
|
+
declare const colorOrange800 = "#312118";
|
|
355
|
+
declare const colorOrangeNeon = "#FF9212";
|
|
356
|
+
declare const colorGreen50 = "#E1F5E8";
|
|
357
|
+
declare const colorGreen100 = "#B0E9C3";
|
|
358
|
+
declare const colorGreen200 = "#80DD9F";
|
|
359
|
+
declare const colorGreen300 = "#50D17B";
|
|
360
|
+
declare const colorGreen400 = "#20C557";
|
|
361
|
+
declare const colorGreen500 = "#1B9F47";
|
|
362
|
+
declare const colorGreen600 = "#167737";
|
|
363
|
+
declare const colorGreen700 = "#104E25";
|
|
364
|
+
declare const colorGreen800 = "#182C22";
|
|
365
|
+
declare const colorGreenNeon = "#00FF3C";
|
|
366
|
+
declare const colorRed50 = "#FFD0D0";
|
|
367
|
+
declare const colorRed100 = "#F7A4A4";
|
|
368
|
+
declare const colorRed200 = "#EF7979";
|
|
369
|
+
declare const colorRed300 = "#ED5151";
|
|
370
|
+
declare const colorRed400 = "#D63333";
|
|
371
|
+
declare const colorRed500 = "#B82121";
|
|
372
|
+
declare const colorRed600 = "#901E1E";
|
|
373
|
+
declare const colorRed700 = "#691212";
|
|
374
|
+
declare const colorRed800 = "#2F191B";
|
|
375
|
+
declare const colorRedNeon = "#FF3737";
|
|
376
|
+
declare const colorYellow50 = "#FFF3D6";
|
|
377
|
+
declare const colorYellow100 = "#FFE49F";
|
|
378
|
+
declare const colorYellow200 = "#FFD66A";
|
|
379
|
+
declare const colorYellow300 = "#FFC736";
|
|
380
|
+
declare const colorYellow400 = "#FFB800";
|
|
381
|
+
declare const colorYellow500 = "#D59A03";
|
|
382
|
+
declare const colorYellow600 = "#AA7C05";
|
|
383
|
+
declare const colorYellow700 = "#715100";
|
|
384
|
+
declare const colorYellow800 = "#322B17";
|
|
385
|
+
declare const colorYellowNeon = "#FFFF21";
|
|
386
|
+
declare const colorAccent50 = "#E5E9FF";
|
|
387
|
+
declare const colorAccent100 = "#B8C1FF";
|
|
388
|
+
declare const colorAccent200 = "#8C9BFF";
|
|
389
|
+
declare const colorAccent300 = "#667BFF";
|
|
390
|
+
declare const colorAccent400 = "#334EFF";
|
|
391
|
+
declare const colorAccent500 = "#2C42D3";
|
|
392
|
+
declare const colorAccent600 = "#2435A7";
|
|
393
|
+
declare const colorAccent700 = "#1C2779";
|
|
394
|
+
declare const colorAccent800 = "#1A1E36";
|
|
395
|
+
declare const colorNegative50 = "#FFD0D0";
|
|
396
|
+
declare const colorNegative100 = "#F7A4A4";
|
|
397
|
+
declare const colorNegative200 = "#EF7979";
|
|
398
|
+
declare const colorNegative300 = "#ED5151";
|
|
399
|
+
declare const colorNegative400 = "#D63333";
|
|
400
|
+
declare const colorNegative500 = "#B82121";
|
|
401
|
+
declare const colorNegative600 = "#901E1E";
|
|
402
|
+
declare const colorNegative700 = "#691212";
|
|
403
|
+
declare const colorNegative800 = "#2F191B";
|
|
404
|
+
declare const colorPositive50 = "#E1F5E8";
|
|
405
|
+
declare const colorPositive100 = "#B0E9C3";
|
|
406
|
+
declare const colorPositive200 = "#80DD9F";
|
|
407
|
+
declare const colorPositive300 = "#50D17B";
|
|
408
|
+
declare const colorPositive400 = "#20C557";
|
|
409
|
+
declare const colorPositive500 = "#1B9F47";
|
|
410
|
+
declare const colorPositive600 = "#167737";
|
|
411
|
+
declare const colorPositive700 = "#104E25";
|
|
412
|
+
declare const colorPositive800 = "#182C22";
|
|
413
|
+
declare const colorPrimary0 = "#ffffff";
|
|
414
|
+
declare const colorPrimary50 = "#F2F3F4";
|
|
415
|
+
declare const colorPrimary100 = "#D7D8DB";
|
|
416
|
+
declare const colorPrimary150 = "#CACCCF";
|
|
417
|
+
declare const colorPrimary200 = "#BCBFC2";
|
|
418
|
+
declare const colorPrimary250 = "#AFB2B6";
|
|
419
|
+
declare const colorPrimary300 = "#A2A4A9";
|
|
420
|
+
declare const colorPrimary350 = "#95979C";
|
|
421
|
+
declare const colorPrimary400 = "#888A8F";
|
|
422
|
+
declare const colorPrimary450 = "#7B7D83";
|
|
423
|
+
declare const colorPrimary500 = "#6E7076";
|
|
424
|
+
declare const colorPrimary550 = "#5F6268";
|
|
425
|
+
declare const colorPrimary600 = "#505359";
|
|
426
|
+
declare const colorPrimary650 = "#3E4146";
|
|
427
|
+
declare const colorPrimary700 = "#2B2F33";
|
|
428
|
+
declare const colorPrimary750 = "#24262A";
|
|
429
|
+
declare const colorPrimary800 = "#1C1D21";
|
|
430
|
+
declare const colorPrimary850 = "#15161A";
|
|
431
|
+
declare const colorPrimary900 = "#0E0F12";
|
|
432
|
+
declare const colorPrimary950 = "#040405";
|
|
433
|
+
declare const colorWarning50 = "#FFF3D6";
|
|
434
|
+
declare const colorWarning100 = "#FFE49F";
|
|
435
|
+
declare const colorWarning200 = "#FFD66A";
|
|
436
|
+
declare const colorWarning300 = "#FFC736";
|
|
437
|
+
declare const colorWarning400 = "#FFB800";
|
|
438
|
+
declare const colorWarning500 = "#D59A03";
|
|
439
|
+
declare const colorWarning600 = "#AA7C05";
|
|
440
|
+
declare const colorWarning700 = "#715100";
|
|
441
|
+
declare const colorWarning800 = "#322B17";
|
|
442
|
+
declare const colorDispositionAssumedFriend = "#00FF3C";
|
|
443
|
+
declare const colorDispositionCivilian = "#FF47CE";
|
|
444
|
+
declare const colorDispositionFriend = "#18FFFF";
|
|
445
|
+
declare const colorDispositionHostile = "#FF3737";
|
|
446
|
+
declare const colorDispositionPending = "#F2F3F4";
|
|
447
|
+
declare const colorDispositionSuspect = "#FF9212";
|
|
448
|
+
declare const colorDispositionUnknown = "#FFFF21";
|
|
449
|
+
|
|
450
|
+
declare const LightThemeTokens_colorAccent100: typeof colorAccent100;
|
|
451
|
+
declare const LightThemeTokens_colorAccent200: typeof colorAccent200;
|
|
452
|
+
declare const LightThemeTokens_colorAccent300: typeof colorAccent300;
|
|
453
|
+
declare const LightThemeTokens_colorAccent400: typeof colorAccent400;
|
|
454
|
+
declare const LightThemeTokens_colorAccent50: typeof colorAccent50;
|
|
455
|
+
declare const LightThemeTokens_colorAccent500: typeof colorAccent500;
|
|
456
|
+
declare const LightThemeTokens_colorAccent600: typeof colorAccent600;
|
|
457
|
+
declare const LightThemeTokens_colorAccent700: typeof colorAccent700;
|
|
458
|
+
declare const LightThemeTokens_colorAccent800: typeof colorAccent800;
|
|
459
|
+
declare const LightThemeTokens_colorBlack: typeof colorBlack;
|
|
460
|
+
declare const LightThemeTokens_colorBlue100: typeof colorBlue100;
|
|
461
|
+
declare const LightThemeTokens_colorBlue200: typeof colorBlue200;
|
|
462
|
+
declare const LightThemeTokens_colorBlue300: typeof colorBlue300;
|
|
463
|
+
declare const LightThemeTokens_colorBlue400: typeof colorBlue400;
|
|
464
|
+
declare const LightThemeTokens_colorBlue50: typeof colorBlue50;
|
|
465
|
+
declare const LightThemeTokens_colorBlue500: typeof colorBlue500;
|
|
466
|
+
declare const LightThemeTokens_colorBlue600: typeof colorBlue600;
|
|
467
|
+
declare const LightThemeTokens_colorBlue700: typeof colorBlue700;
|
|
468
|
+
declare const LightThemeTokens_colorBlue800: typeof colorBlue800;
|
|
469
|
+
declare const LightThemeTokens_colorBlueNeon: typeof colorBlueNeon;
|
|
470
|
+
declare const LightThemeTokens_colorDispositionAssumedFriend: typeof colorDispositionAssumedFriend;
|
|
471
|
+
declare const LightThemeTokens_colorDispositionCivilian: typeof colorDispositionCivilian;
|
|
472
|
+
declare const LightThemeTokens_colorDispositionFriend: typeof colorDispositionFriend;
|
|
473
|
+
declare const LightThemeTokens_colorDispositionHostile: typeof colorDispositionHostile;
|
|
474
|
+
declare const LightThemeTokens_colorDispositionPending: typeof colorDispositionPending;
|
|
475
|
+
declare const LightThemeTokens_colorDispositionSuspect: typeof colorDispositionSuspect;
|
|
476
|
+
declare const LightThemeTokens_colorDispositionUnknown: typeof colorDispositionUnknown;
|
|
477
|
+
declare const LightThemeTokens_colorGray100: typeof colorGray100;
|
|
478
|
+
declare const LightThemeTokens_colorGray150: typeof colorGray150;
|
|
479
|
+
declare const LightThemeTokens_colorGray200: typeof colorGray200;
|
|
480
|
+
declare const LightThemeTokens_colorGray250: typeof colorGray250;
|
|
481
|
+
declare const LightThemeTokens_colorGray300: typeof colorGray300;
|
|
482
|
+
declare const LightThemeTokens_colorGray350: typeof colorGray350;
|
|
483
|
+
declare const LightThemeTokens_colorGray400: typeof colorGray400;
|
|
484
|
+
declare const LightThemeTokens_colorGray450: typeof colorGray450;
|
|
485
|
+
declare const LightThemeTokens_colorGray50: typeof colorGray50;
|
|
486
|
+
declare const LightThemeTokens_colorGray500: typeof colorGray500;
|
|
487
|
+
declare const LightThemeTokens_colorGray550: typeof colorGray550;
|
|
488
|
+
declare const LightThemeTokens_colorGray600: typeof colorGray600;
|
|
489
|
+
declare const LightThemeTokens_colorGray650: typeof colorGray650;
|
|
490
|
+
declare const LightThemeTokens_colorGray700: typeof colorGray700;
|
|
491
|
+
declare const LightThemeTokens_colorGray750: typeof colorGray750;
|
|
492
|
+
declare const LightThemeTokens_colorGray800: typeof colorGray800;
|
|
493
|
+
declare const LightThemeTokens_colorGray850: typeof colorGray850;
|
|
494
|
+
declare const LightThemeTokens_colorGray900: typeof colorGray900;
|
|
495
|
+
declare const LightThemeTokens_colorGray950: typeof colorGray950;
|
|
496
|
+
declare const LightThemeTokens_colorGreen100: typeof colorGreen100;
|
|
497
|
+
declare const LightThemeTokens_colorGreen200: typeof colorGreen200;
|
|
498
|
+
declare const LightThemeTokens_colorGreen300: typeof colorGreen300;
|
|
499
|
+
declare const LightThemeTokens_colorGreen400: typeof colorGreen400;
|
|
500
|
+
declare const LightThemeTokens_colorGreen50: typeof colorGreen50;
|
|
501
|
+
declare const LightThemeTokens_colorGreen500: typeof colorGreen500;
|
|
502
|
+
declare const LightThemeTokens_colorGreen600: typeof colorGreen600;
|
|
503
|
+
declare const LightThemeTokens_colorGreen700: typeof colorGreen700;
|
|
504
|
+
declare const LightThemeTokens_colorGreen800: typeof colorGreen800;
|
|
505
|
+
declare const LightThemeTokens_colorGreenNeon: typeof colorGreenNeon;
|
|
506
|
+
declare const LightThemeTokens_colorNegative100: typeof colorNegative100;
|
|
507
|
+
declare const LightThemeTokens_colorNegative200: typeof colorNegative200;
|
|
508
|
+
declare const LightThemeTokens_colorNegative300: typeof colorNegative300;
|
|
509
|
+
declare const LightThemeTokens_colorNegative400: typeof colorNegative400;
|
|
510
|
+
declare const LightThemeTokens_colorNegative50: typeof colorNegative50;
|
|
511
|
+
declare const LightThemeTokens_colorNegative500: typeof colorNegative500;
|
|
512
|
+
declare const LightThemeTokens_colorNegative600: typeof colorNegative600;
|
|
513
|
+
declare const LightThemeTokens_colorNegative700: typeof colorNegative700;
|
|
514
|
+
declare const LightThemeTokens_colorNegative800: typeof colorNegative800;
|
|
515
|
+
declare const LightThemeTokens_colorOrange100: typeof colorOrange100;
|
|
516
|
+
declare const LightThemeTokens_colorOrange200: typeof colorOrange200;
|
|
517
|
+
declare const LightThemeTokens_colorOrange300: typeof colorOrange300;
|
|
518
|
+
declare const LightThemeTokens_colorOrange400: typeof colorOrange400;
|
|
519
|
+
declare const LightThemeTokens_colorOrange50: typeof colorOrange50;
|
|
520
|
+
declare const LightThemeTokens_colorOrange500: typeof colorOrange500;
|
|
521
|
+
declare const LightThemeTokens_colorOrange600: typeof colorOrange600;
|
|
522
|
+
declare const LightThemeTokens_colorOrange700: typeof colorOrange700;
|
|
523
|
+
declare const LightThemeTokens_colorOrange800: typeof colorOrange800;
|
|
524
|
+
declare const LightThemeTokens_colorOrangeNeon: typeof colorOrangeNeon;
|
|
525
|
+
declare const LightThemeTokens_colorPositive100: typeof colorPositive100;
|
|
526
|
+
declare const LightThemeTokens_colorPositive200: typeof colorPositive200;
|
|
527
|
+
declare const LightThemeTokens_colorPositive300: typeof colorPositive300;
|
|
528
|
+
declare const LightThemeTokens_colorPositive400: typeof colorPositive400;
|
|
529
|
+
declare const LightThemeTokens_colorPositive50: typeof colorPositive50;
|
|
530
|
+
declare const LightThemeTokens_colorPositive500: typeof colorPositive500;
|
|
531
|
+
declare const LightThemeTokens_colorPositive600: typeof colorPositive600;
|
|
532
|
+
declare const LightThemeTokens_colorPositive700: typeof colorPositive700;
|
|
533
|
+
declare const LightThemeTokens_colorPositive800: typeof colorPositive800;
|
|
534
|
+
declare const LightThemeTokens_colorPrimary0: typeof colorPrimary0;
|
|
535
|
+
declare const LightThemeTokens_colorPrimary100: typeof colorPrimary100;
|
|
536
|
+
declare const LightThemeTokens_colorPrimary150: typeof colorPrimary150;
|
|
537
|
+
declare const LightThemeTokens_colorPrimary200: typeof colorPrimary200;
|
|
538
|
+
declare const LightThemeTokens_colorPrimary250: typeof colorPrimary250;
|
|
539
|
+
declare const LightThemeTokens_colorPrimary300: typeof colorPrimary300;
|
|
540
|
+
declare const LightThemeTokens_colorPrimary350: typeof colorPrimary350;
|
|
541
|
+
declare const LightThemeTokens_colorPrimary400: typeof colorPrimary400;
|
|
542
|
+
declare const LightThemeTokens_colorPrimary450: typeof colorPrimary450;
|
|
543
|
+
declare const LightThemeTokens_colorPrimary50: typeof colorPrimary50;
|
|
544
|
+
declare const LightThemeTokens_colorPrimary500: typeof colorPrimary500;
|
|
545
|
+
declare const LightThemeTokens_colorPrimary550: typeof colorPrimary550;
|
|
546
|
+
declare const LightThemeTokens_colorPrimary600: typeof colorPrimary600;
|
|
547
|
+
declare const LightThemeTokens_colorPrimary650: typeof colorPrimary650;
|
|
548
|
+
declare const LightThemeTokens_colorPrimary700: typeof colorPrimary700;
|
|
549
|
+
declare const LightThemeTokens_colorPrimary750: typeof colorPrimary750;
|
|
550
|
+
declare const LightThemeTokens_colorPrimary800: typeof colorPrimary800;
|
|
551
|
+
declare const LightThemeTokens_colorPrimary850: typeof colorPrimary850;
|
|
552
|
+
declare const LightThemeTokens_colorPrimary900: typeof colorPrimary900;
|
|
553
|
+
declare const LightThemeTokens_colorPrimary950: typeof colorPrimary950;
|
|
554
|
+
declare const LightThemeTokens_colorPurple100: typeof colorPurple100;
|
|
555
|
+
declare const LightThemeTokens_colorPurple200: typeof colorPurple200;
|
|
556
|
+
declare const LightThemeTokens_colorPurple300: typeof colorPurple300;
|
|
557
|
+
declare const LightThemeTokens_colorPurple400: typeof colorPurple400;
|
|
558
|
+
declare const LightThemeTokens_colorPurple50: typeof colorPurple50;
|
|
559
|
+
declare const LightThemeTokens_colorPurple500: typeof colorPurple500;
|
|
560
|
+
declare const LightThemeTokens_colorPurple600: typeof colorPurple600;
|
|
561
|
+
declare const LightThemeTokens_colorPurple700: typeof colorPurple700;
|
|
562
|
+
declare const LightThemeTokens_colorPurple800: typeof colorPurple800;
|
|
563
|
+
declare const LightThemeTokens_colorPurpleNeon: typeof colorPurpleNeon;
|
|
564
|
+
declare const LightThemeTokens_colorRed100: typeof colorRed100;
|
|
565
|
+
declare const LightThemeTokens_colorRed200: typeof colorRed200;
|
|
566
|
+
declare const LightThemeTokens_colorRed300: typeof colorRed300;
|
|
567
|
+
declare const LightThemeTokens_colorRed400: typeof colorRed400;
|
|
568
|
+
declare const LightThemeTokens_colorRed50: typeof colorRed50;
|
|
569
|
+
declare const LightThemeTokens_colorRed500: typeof colorRed500;
|
|
570
|
+
declare const LightThemeTokens_colorRed600: typeof colorRed600;
|
|
571
|
+
declare const LightThemeTokens_colorRed700: typeof colorRed700;
|
|
572
|
+
declare const LightThemeTokens_colorRed800: typeof colorRed800;
|
|
573
|
+
declare const LightThemeTokens_colorRedNeon: typeof colorRedNeon;
|
|
574
|
+
declare const LightThemeTokens_colorWarning100: typeof colorWarning100;
|
|
575
|
+
declare const LightThemeTokens_colorWarning200: typeof colorWarning200;
|
|
576
|
+
declare const LightThemeTokens_colorWarning300: typeof colorWarning300;
|
|
577
|
+
declare const LightThemeTokens_colorWarning400: typeof colorWarning400;
|
|
578
|
+
declare const LightThemeTokens_colorWarning50: typeof colorWarning50;
|
|
579
|
+
declare const LightThemeTokens_colorWarning500: typeof colorWarning500;
|
|
580
|
+
declare const LightThemeTokens_colorWarning600: typeof colorWarning600;
|
|
581
|
+
declare const LightThemeTokens_colorWarning700: typeof colorWarning700;
|
|
582
|
+
declare const LightThemeTokens_colorWarning800: typeof colorWarning800;
|
|
583
|
+
declare const LightThemeTokens_colorWhite: typeof colorWhite;
|
|
584
|
+
declare const LightThemeTokens_colorYellow100: typeof colorYellow100;
|
|
585
|
+
declare const LightThemeTokens_colorYellow200: typeof colorYellow200;
|
|
586
|
+
declare const LightThemeTokens_colorYellow300: typeof colorYellow300;
|
|
587
|
+
declare const LightThemeTokens_colorYellow400: typeof colorYellow400;
|
|
588
|
+
declare const LightThemeTokens_colorYellow50: typeof colorYellow50;
|
|
589
|
+
declare const LightThemeTokens_colorYellow500: typeof colorYellow500;
|
|
590
|
+
declare const LightThemeTokens_colorYellow600: typeof colorYellow600;
|
|
591
|
+
declare const LightThemeTokens_colorYellow700: typeof colorYellow700;
|
|
592
|
+
declare const LightThemeTokens_colorYellow800: typeof colorYellow800;
|
|
593
|
+
declare const LightThemeTokens_colorYellowNeon: typeof colorYellowNeon;
|
|
594
|
+
declare namespace LightThemeTokens {
|
|
595
|
+
export {
|
|
596
|
+
LightThemeTokens_colorAccent100 as colorAccent100,
|
|
597
|
+
LightThemeTokens_colorAccent200 as colorAccent200,
|
|
598
|
+
LightThemeTokens_colorAccent300 as colorAccent300,
|
|
599
|
+
LightThemeTokens_colorAccent400 as colorAccent400,
|
|
600
|
+
LightThemeTokens_colorAccent50 as colorAccent50,
|
|
601
|
+
LightThemeTokens_colorAccent500 as colorAccent500,
|
|
602
|
+
LightThemeTokens_colorAccent600 as colorAccent600,
|
|
603
|
+
LightThemeTokens_colorAccent700 as colorAccent700,
|
|
604
|
+
LightThemeTokens_colorAccent800 as colorAccent800,
|
|
605
|
+
LightThemeTokens_colorBlack as colorBlack,
|
|
606
|
+
LightThemeTokens_colorBlue100 as colorBlue100,
|
|
607
|
+
LightThemeTokens_colorBlue200 as colorBlue200,
|
|
608
|
+
LightThemeTokens_colorBlue300 as colorBlue300,
|
|
609
|
+
LightThemeTokens_colorBlue400 as colorBlue400,
|
|
610
|
+
LightThemeTokens_colorBlue50 as colorBlue50,
|
|
611
|
+
LightThemeTokens_colorBlue500 as colorBlue500,
|
|
612
|
+
LightThemeTokens_colorBlue600 as colorBlue600,
|
|
613
|
+
LightThemeTokens_colorBlue700 as colorBlue700,
|
|
614
|
+
LightThemeTokens_colorBlue800 as colorBlue800,
|
|
615
|
+
LightThemeTokens_colorBlueNeon as colorBlueNeon,
|
|
616
|
+
LightThemeTokens_colorDispositionAssumedFriend as colorDispositionAssumedFriend,
|
|
617
|
+
LightThemeTokens_colorDispositionCivilian as colorDispositionCivilian,
|
|
618
|
+
LightThemeTokens_colorDispositionFriend as colorDispositionFriend,
|
|
619
|
+
LightThemeTokens_colorDispositionHostile as colorDispositionHostile,
|
|
620
|
+
LightThemeTokens_colorDispositionPending as colorDispositionPending,
|
|
621
|
+
LightThemeTokens_colorDispositionSuspect as colorDispositionSuspect,
|
|
622
|
+
LightThemeTokens_colorDispositionUnknown as colorDispositionUnknown,
|
|
623
|
+
LightThemeTokens_colorGray100 as colorGray100,
|
|
624
|
+
LightThemeTokens_colorGray150 as colorGray150,
|
|
625
|
+
LightThemeTokens_colorGray200 as colorGray200,
|
|
626
|
+
LightThemeTokens_colorGray250 as colorGray250,
|
|
627
|
+
LightThemeTokens_colorGray300 as colorGray300,
|
|
628
|
+
LightThemeTokens_colorGray350 as colorGray350,
|
|
629
|
+
LightThemeTokens_colorGray400 as colorGray400,
|
|
630
|
+
LightThemeTokens_colorGray450 as colorGray450,
|
|
631
|
+
LightThemeTokens_colorGray50 as colorGray50,
|
|
632
|
+
LightThemeTokens_colorGray500 as colorGray500,
|
|
633
|
+
LightThemeTokens_colorGray550 as colorGray550,
|
|
634
|
+
LightThemeTokens_colorGray600 as colorGray600,
|
|
635
|
+
LightThemeTokens_colorGray650 as colorGray650,
|
|
636
|
+
LightThemeTokens_colorGray700 as colorGray700,
|
|
637
|
+
LightThemeTokens_colorGray750 as colorGray750,
|
|
638
|
+
LightThemeTokens_colorGray800 as colorGray800,
|
|
639
|
+
LightThemeTokens_colorGray850 as colorGray850,
|
|
640
|
+
LightThemeTokens_colorGray900 as colorGray900,
|
|
641
|
+
LightThemeTokens_colorGray950 as colorGray950,
|
|
642
|
+
LightThemeTokens_colorGreen100 as colorGreen100,
|
|
643
|
+
LightThemeTokens_colorGreen200 as colorGreen200,
|
|
644
|
+
LightThemeTokens_colorGreen300 as colorGreen300,
|
|
645
|
+
LightThemeTokens_colorGreen400 as colorGreen400,
|
|
646
|
+
LightThemeTokens_colorGreen50 as colorGreen50,
|
|
647
|
+
LightThemeTokens_colorGreen500 as colorGreen500,
|
|
648
|
+
LightThemeTokens_colorGreen600 as colorGreen600,
|
|
649
|
+
LightThemeTokens_colorGreen700 as colorGreen700,
|
|
650
|
+
LightThemeTokens_colorGreen800 as colorGreen800,
|
|
651
|
+
LightThemeTokens_colorGreenNeon as colorGreenNeon,
|
|
652
|
+
LightThemeTokens_colorNegative100 as colorNegative100,
|
|
653
|
+
LightThemeTokens_colorNegative200 as colorNegative200,
|
|
654
|
+
LightThemeTokens_colorNegative300 as colorNegative300,
|
|
655
|
+
LightThemeTokens_colorNegative400 as colorNegative400,
|
|
656
|
+
LightThemeTokens_colorNegative50 as colorNegative50,
|
|
657
|
+
LightThemeTokens_colorNegative500 as colorNegative500,
|
|
658
|
+
LightThemeTokens_colorNegative600 as colorNegative600,
|
|
659
|
+
LightThemeTokens_colorNegative700 as colorNegative700,
|
|
660
|
+
LightThemeTokens_colorNegative800 as colorNegative800,
|
|
661
|
+
LightThemeTokens_colorOrange100 as colorOrange100,
|
|
662
|
+
LightThemeTokens_colorOrange200 as colorOrange200,
|
|
663
|
+
LightThemeTokens_colorOrange300 as colorOrange300,
|
|
664
|
+
LightThemeTokens_colorOrange400 as colorOrange400,
|
|
665
|
+
LightThemeTokens_colorOrange50 as colorOrange50,
|
|
666
|
+
LightThemeTokens_colorOrange500 as colorOrange500,
|
|
667
|
+
LightThemeTokens_colorOrange600 as colorOrange600,
|
|
668
|
+
LightThemeTokens_colorOrange700 as colorOrange700,
|
|
669
|
+
LightThemeTokens_colorOrange800 as colorOrange800,
|
|
670
|
+
LightThemeTokens_colorOrangeNeon as colorOrangeNeon,
|
|
671
|
+
LightThemeTokens_colorPositive100 as colorPositive100,
|
|
672
|
+
LightThemeTokens_colorPositive200 as colorPositive200,
|
|
673
|
+
LightThemeTokens_colorPositive300 as colorPositive300,
|
|
674
|
+
LightThemeTokens_colorPositive400 as colorPositive400,
|
|
675
|
+
LightThemeTokens_colorPositive50 as colorPositive50,
|
|
676
|
+
LightThemeTokens_colorPositive500 as colorPositive500,
|
|
677
|
+
LightThemeTokens_colorPositive600 as colorPositive600,
|
|
678
|
+
LightThemeTokens_colorPositive700 as colorPositive700,
|
|
679
|
+
LightThemeTokens_colorPositive800 as colorPositive800,
|
|
680
|
+
LightThemeTokens_colorPrimary0 as colorPrimary0,
|
|
681
|
+
LightThemeTokens_colorPrimary100 as colorPrimary100,
|
|
682
|
+
LightThemeTokens_colorPrimary150 as colorPrimary150,
|
|
683
|
+
LightThemeTokens_colorPrimary200 as colorPrimary200,
|
|
684
|
+
LightThemeTokens_colorPrimary250 as colorPrimary250,
|
|
685
|
+
LightThemeTokens_colorPrimary300 as colorPrimary300,
|
|
686
|
+
LightThemeTokens_colorPrimary350 as colorPrimary350,
|
|
687
|
+
LightThemeTokens_colorPrimary400 as colorPrimary400,
|
|
688
|
+
LightThemeTokens_colorPrimary450 as colorPrimary450,
|
|
689
|
+
LightThemeTokens_colorPrimary50 as colorPrimary50,
|
|
690
|
+
LightThemeTokens_colorPrimary500 as colorPrimary500,
|
|
691
|
+
LightThemeTokens_colorPrimary550 as colorPrimary550,
|
|
692
|
+
LightThemeTokens_colorPrimary600 as colorPrimary600,
|
|
693
|
+
LightThemeTokens_colorPrimary650 as colorPrimary650,
|
|
694
|
+
LightThemeTokens_colorPrimary700 as colorPrimary700,
|
|
695
|
+
LightThemeTokens_colorPrimary750 as colorPrimary750,
|
|
696
|
+
LightThemeTokens_colorPrimary800 as colorPrimary800,
|
|
697
|
+
LightThemeTokens_colorPrimary850 as colorPrimary850,
|
|
698
|
+
LightThemeTokens_colorPrimary900 as colorPrimary900,
|
|
699
|
+
LightThemeTokens_colorPrimary950 as colorPrimary950,
|
|
700
|
+
LightThemeTokens_colorPurple100 as colorPurple100,
|
|
701
|
+
LightThemeTokens_colorPurple200 as colorPurple200,
|
|
702
|
+
LightThemeTokens_colorPurple300 as colorPurple300,
|
|
703
|
+
LightThemeTokens_colorPurple400 as colorPurple400,
|
|
704
|
+
LightThemeTokens_colorPurple50 as colorPurple50,
|
|
705
|
+
LightThemeTokens_colorPurple500 as colorPurple500,
|
|
706
|
+
LightThemeTokens_colorPurple600 as colorPurple600,
|
|
707
|
+
LightThemeTokens_colorPurple700 as colorPurple700,
|
|
708
|
+
LightThemeTokens_colorPurple800 as colorPurple800,
|
|
709
|
+
LightThemeTokens_colorPurpleNeon as colorPurpleNeon,
|
|
710
|
+
LightThemeTokens_colorRed100 as colorRed100,
|
|
711
|
+
LightThemeTokens_colorRed200 as colorRed200,
|
|
712
|
+
LightThemeTokens_colorRed300 as colorRed300,
|
|
713
|
+
LightThemeTokens_colorRed400 as colorRed400,
|
|
714
|
+
LightThemeTokens_colorRed50 as colorRed50,
|
|
715
|
+
LightThemeTokens_colorRed500 as colorRed500,
|
|
716
|
+
LightThemeTokens_colorRed600 as colorRed600,
|
|
717
|
+
LightThemeTokens_colorRed700 as colorRed700,
|
|
718
|
+
LightThemeTokens_colorRed800 as colorRed800,
|
|
719
|
+
LightThemeTokens_colorRedNeon as colorRedNeon,
|
|
720
|
+
LightThemeTokens_colorWarning100 as colorWarning100,
|
|
721
|
+
LightThemeTokens_colorWarning200 as colorWarning200,
|
|
722
|
+
LightThemeTokens_colorWarning300 as colorWarning300,
|
|
723
|
+
LightThemeTokens_colorWarning400 as colorWarning400,
|
|
724
|
+
LightThemeTokens_colorWarning50 as colorWarning50,
|
|
725
|
+
LightThemeTokens_colorWarning500 as colorWarning500,
|
|
726
|
+
LightThemeTokens_colorWarning600 as colorWarning600,
|
|
727
|
+
LightThemeTokens_colorWarning700 as colorWarning700,
|
|
728
|
+
LightThemeTokens_colorWarning800 as colorWarning800,
|
|
729
|
+
LightThemeTokens_colorWhite as colorWhite,
|
|
730
|
+
LightThemeTokens_colorYellow100 as colorYellow100,
|
|
731
|
+
LightThemeTokens_colorYellow200 as colorYellow200,
|
|
732
|
+
LightThemeTokens_colorYellow300 as colorYellow300,
|
|
733
|
+
LightThemeTokens_colorYellow400 as colorYellow400,
|
|
734
|
+
LightThemeTokens_colorYellow50 as colorYellow50,
|
|
735
|
+
LightThemeTokens_colorYellow500 as colorYellow500,
|
|
736
|
+
LightThemeTokens_colorYellow600 as colorYellow600,
|
|
737
|
+
LightThemeTokens_colorYellow700 as colorYellow700,
|
|
738
|
+
LightThemeTokens_colorYellow800 as colorYellow800,
|
|
739
|
+
LightThemeTokens_colorYellowNeon as colorYellowNeon,
|
|
740
|
+
};
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
type DesignTokenValue = {
|
|
744
|
+
value: string;
|
|
745
|
+
};
|
|
746
|
+
|
|
747
|
+
type OutputFormat = "css" | "scss" | "ts" | "json";
|
|
748
|
+
interface ThemeColorDefinition {
|
|
749
|
+
[key: string]: string | DesignTokenValue;
|
|
750
|
+
}
|
|
751
|
+
interface ThemeDefinition {
|
|
752
|
+
name: string;
|
|
753
|
+
colors: ThemeColorDefinition;
|
|
754
|
+
extends?: string;
|
|
755
|
+
}
|
|
756
|
+
interface BaseColorDefinition {
|
|
757
|
+
[key: string]: string | DesignTokenValue;
|
|
758
|
+
}
|
|
759
|
+
interface SizingDefinition {
|
|
760
|
+
[key: string]: DesignTokenValue;
|
|
761
|
+
}
|
|
762
|
+
interface FontDefinition {
|
|
763
|
+
[key: string]: DesignTokenValue;
|
|
764
|
+
}
|
|
765
|
+
interface OutputConfig {
|
|
766
|
+
directory?: string;
|
|
767
|
+
formats?: OutputFormat[];
|
|
768
|
+
prefix?: string;
|
|
769
|
+
}
|
|
770
|
+
interface UserConfig {
|
|
771
|
+
themes: ThemeDefinition[];
|
|
772
|
+
baseColors?: BaseColorDefinition;
|
|
773
|
+
sizing?: SizingDefinition;
|
|
774
|
+
font?: FontDefinition;
|
|
775
|
+
output?: OutputConfig;
|
|
776
|
+
}
|
|
777
|
+
interface ResolvedConfig extends Required<Omit<UserConfig, "output">> {
|
|
778
|
+
output: Required<OutputConfig>;
|
|
779
|
+
}
|
|
780
|
+
interface BuildResult {
|
|
781
|
+
success: boolean;
|
|
782
|
+
generatedFiles: string[];
|
|
783
|
+
errors?: string[];
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
declare function buildTokens(config: ResolvedConfig): Promise<BuildResult>;
|
|
787
|
+
|
|
788
|
+
/**
|
|
789
|
+
* Helper function to define a design tokens configuration
|
|
790
|
+
*/
|
|
791
|
+
declare function defineConfig(config: UserConfig): UserConfig;
|
|
792
|
+
/**
|
|
793
|
+
* Resolves user config with defaults
|
|
794
|
+
*/
|
|
795
|
+
declare function resolveConfig(userConfig: UserConfig): ResolvedConfig;
|
|
796
|
+
|
|
797
|
+
/**
|
|
798
|
+
* Attempts to find a config file in the current directory
|
|
799
|
+
*/
|
|
800
|
+
declare function findConfigFile(cwd?: string): string | null;
|
|
801
|
+
/**
|
|
802
|
+
* Loads and validates a design tokens configuration file
|
|
803
|
+
*/
|
|
804
|
+
declare function loadConfig(configPath?: string, cwd?: string): Promise<UserConfig>;
|
|
805
|
+
|
|
806
|
+
type UndeterminedColorScheme = "dark" | "light" | "system";
|
|
807
|
+
type ThemeColorScheme = "dark" | "light";
|
|
808
|
+
declare function getThemeColorScheme(colorScheme: UndeterminedColorScheme): ThemeColorScheme;
|
|
809
|
+
declare function getThemeTokens(colorScheme?: UndeterminedColorScheme): typeof DarkThemeTokens | typeof LightThemeTokens;
|
|
810
|
+
|
|
811
|
+
type ThemeTokens = Record<ThemeColorKeys, string>;
|
|
812
|
+
|
|
813
|
+
export { DarkThemeTokens, LightThemeTokens, buildTokens, defineConfig, findConfigFile, getThemeColorScheme, getThemeTokens, loadConfig, resolveConfig };
|
|
814
|
+
export type { BaseColorDefinition, BuildResult, FontDefinition, OutputConfig, OutputFormat, ResolvedConfig, SizingDefinition, ThemeColorDefinition, ThemeColorScheme, ThemeDefinition, ThemeTokens, UndeterminedColorScheme, UserConfig };
|