@dcodegroup-au/dsg-vue 1.0.3-next → 1.0.4-next
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/dist/styles/app.css +6 -0
- package/dist/styles/colors.css +451 -0
- package/dist/styles/focus-rings.css +39 -0
- package/dist/styles/font-family.css +4 -0
- package/dist/styles/typography.css +118 -0
- package/package.json +3 -7
- package/vite.config.ts +11 -1
- package/dist/tailwind/configuration/ConfigCore.d.ts +0 -3
- package/dist/tailwind/configuration/DsgColoursConfig.d.ts +0 -427
- package/dist/tailwind/configuration/DsgFontFamilyConfig.d.ts +0 -5
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
/*
|
|
3
|
+
* Primary Palette
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/* Brand/Primary Colours */
|
|
7
|
+
--color-brand-25: #f0f9f8;
|
|
8
|
+
--color-brand-50: #def2ef;
|
|
9
|
+
--color-brand-100: #cfece7;
|
|
10
|
+
--color-brand-200: #a7ddd3;
|
|
11
|
+
--color-brand-300: #7ecdbe;
|
|
12
|
+
--color-brand-400: #04b594;
|
|
13
|
+
--color-brand-500: #04a385;
|
|
14
|
+
--color-brand-600: #037f68;
|
|
15
|
+
--color-brand-700: #026d59;
|
|
16
|
+
--color-brand-800: #025b4a;
|
|
17
|
+
--color-brand-900: #02483b;
|
|
18
|
+
--color-brand-950: #01362c;
|
|
19
|
+
--color-primary-25: var(--color-brand-25);
|
|
20
|
+
--color-primary-50: var(--color-brand-50);
|
|
21
|
+
--color-primary-100: var(--color-brand-100);
|
|
22
|
+
--color-primary-200: var(--color-brand-200);
|
|
23
|
+
--color-primary-300: var(--color-brand-300);
|
|
24
|
+
--color-primary-400: var(--color-brand-400);
|
|
25
|
+
--color-primary-500: var(--color-brand-500);
|
|
26
|
+
--color-primary-600: var(--color-brand-600);
|
|
27
|
+
--color-primary-700: var(--color-brand-700);
|
|
28
|
+
--color-primary-800: var(--color-brand-800);
|
|
29
|
+
--color-primary-900: var(--color-brand-900);
|
|
30
|
+
--color-primary-950: var(--color-brand-950);
|
|
31
|
+
|
|
32
|
+
/* Gray */
|
|
33
|
+
--color-gray-25: #fcfcfd;
|
|
34
|
+
--color-gray-50: #f9fafb;
|
|
35
|
+
--color-gray-100: #f2f4f7;
|
|
36
|
+
--color-gray-200: #eaecf0;
|
|
37
|
+
--color-gray-300: #d0d5dd;
|
|
38
|
+
--color-gray-400: #98a2b3;
|
|
39
|
+
--color-gray-500: #667085;
|
|
40
|
+
--color-gray-600: #475467;
|
|
41
|
+
--color-gray-700: #344054;
|
|
42
|
+
--color-gray-800: #182230;
|
|
43
|
+
--color-gray-900: #101828;
|
|
44
|
+
--color-gray-950: #0c111d;
|
|
45
|
+
|
|
46
|
+
/* Success */
|
|
47
|
+
--color-success-25: #f6fef9;
|
|
48
|
+
--color-success-50: #ecfdf3;
|
|
49
|
+
--color-success-100: #dcfae6;
|
|
50
|
+
--color-success-200: #a9efc5;
|
|
51
|
+
--color-success-300: #75e0a7;
|
|
52
|
+
--color-success-400: #47cd89;
|
|
53
|
+
--color-success-500: #17b26a;
|
|
54
|
+
--color-success-600: #079455;
|
|
55
|
+
--color-success-700: #067647;
|
|
56
|
+
--color-success-800: #085d3a;
|
|
57
|
+
--color-success-900: #074d31;
|
|
58
|
+
--color-success-950: #053321;
|
|
59
|
+
|
|
60
|
+
/* Warning */
|
|
61
|
+
--color-warning-25: #fffcf5;
|
|
62
|
+
--color-warning-50: #fffaeb;
|
|
63
|
+
--color-warning-100: #fef0c7;
|
|
64
|
+
--color-warning-200: #fedf89;
|
|
65
|
+
--color-warning-300: #fec84b;
|
|
66
|
+
--color-warning-400: #fdb022;
|
|
67
|
+
--color-warning-500: #f79009;
|
|
68
|
+
--color-warning-600: #dc6803;
|
|
69
|
+
--color-warning-700: #b54708;
|
|
70
|
+
--color-warning-800: #93370d;
|
|
71
|
+
--color-warning-900: #7a2e0e;
|
|
72
|
+
--color-warning-950: #4e1d09;
|
|
73
|
+
|
|
74
|
+
/* Error */
|
|
75
|
+
--color-error-25: #fffbfa;
|
|
76
|
+
--color-error-50: #fef3f2;
|
|
77
|
+
--color-error-100: #fee4e2;
|
|
78
|
+
--color-error-200: #fecdca;
|
|
79
|
+
--color-error-300: #fda29b;
|
|
80
|
+
--color-error-400: #f97066;
|
|
81
|
+
--color-error-500: #f04438;
|
|
82
|
+
--color-error-600: #d92d20;
|
|
83
|
+
--color-error-700: #b42318;
|
|
84
|
+
--color-error-800: #912018;
|
|
85
|
+
--color-error-900: #7a271a;
|
|
86
|
+
--color-error-950: #55160c;
|
|
87
|
+
|
|
88
|
+
/*
|
|
89
|
+
* Secondary Palette
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
/* Gray Blue */
|
|
93
|
+
--color-gray-blue-25: #fcfcfd;
|
|
94
|
+
--color-gray-blue-50: #f8f9fc;
|
|
95
|
+
--color-gray-blue-100: #eaecf5;
|
|
96
|
+
--color-gray-blue-200: #d5d9eb;
|
|
97
|
+
--color-gray-blue-300: #b3b8db;
|
|
98
|
+
--color-gray-blue-400: #717bbc;
|
|
99
|
+
--color-gray-blue-500: #4e5ba6;
|
|
100
|
+
--color-gray-blue-600: #3e4784;
|
|
101
|
+
--color-gray-blue-700: #363f72;
|
|
102
|
+
--color-gray-blue-800: #293056;
|
|
103
|
+
--color-gray-blue-900: #101323;
|
|
104
|
+
--color-gray-blue-950: #0d0f1c;
|
|
105
|
+
|
|
106
|
+
/* Gray Cool */
|
|
107
|
+
--color-gray-cool-25: #fcfcfd;
|
|
108
|
+
--color-gray-cool-50: #f9f9fb;
|
|
109
|
+
--color-gray-cool-100: #eff1f5;
|
|
110
|
+
--color-gray-cool-200: #dcdfea;
|
|
111
|
+
--color-gray-cool-300: #b9c0d4;
|
|
112
|
+
--color-gray-cool-400: #7d89b0;
|
|
113
|
+
--color-gray-cool-500: #5d6b98;
|
|
114
|
+
--color-gray-cool-600: #4a5578;
|
|
115
|
+
--color-gray-cool-700: #404968;
|
|
116
|
+
--color-gray-cool-800: #30374f;
|
|
117
|
+
--color-gray-cool-900: #111322;
|
|
118
|
+
--color-gray-cool-950: #0e101b;
|
|
119
|
+
|
|
120
|
+
/* Gray Modern */
|
|
121
|
+
--color-gray-modern-25: #fcfcfd;
|
|
122
|
+
--color-gray-modern-50: #f8fafc;
|
|
123
|
+
--color-gray-modern-100: #eef2f6;
|
|
124
|
+
--color-gray-modern-200: #e3e8ef;
|
|
125
|
+
--color-gray-modern-300: #cdd5df;
|
|
126
|
+
--color-gray-modern-400: #9aa4b2;
|
|
127
|
+
--color-gray-modern-500: #697586;
|
|
128
|
+
--color-gray-modern-600: #4b5565;
|
|
129
|
+
--color-gray-modern-700: #364152;
|
|
130
|
+
--color-gray-modern-800: #202939;
|
|
131
|
+
--color-gray-modern-900: #121926;
|
|
132
|
+
--color-gray-modern-950: #0d121c;
|
|
133
|
+
|
|
134
|
+
/* Gray Neutral */
|
|
135
|
+
--color-gray-neutral-25: #fcfcfd;
|
|
136
|
+
--color-gray-neutral-50: #f9fafb;
|
|
137
|
+
--color-gray-neutral-100: #f3f4f6;
|
|
138
|
+
--color-gray-neutral-200: #e5e7eb;
|
|
139
|
+
--color-gray-neutral-300: #d2d6db;
|
|
140
|
+
--color-gray-neutral-400: #9da4ae;
|
|
141
|
+
--color-gray-neutral-500: #6c737f;
|
|
142
|
+
--color-gray-neutral-600: #4d5761;
|
|
143
|
+
--color-gray-neutral-700: #384250;
|
|
144
|
+
--color-gray-neutral-800: #1f2a37;
|
|
145
|
+
--color-gray-neutral-900: #111927;
|
|
146
|
+
--color-gray-neutral-950: #0d121c;
|
|
147
|
+
|
|
148
|
+
/* Gray Iron */
|
|
149
|
+
--color-gray-iron-25: #fcfcfc;
|
|
150
|
+
--color-gray-iron-50: #fafafa;
|
|
151
|
+
--color-gray-iron-100: #f4f4f5;
|
|
152
|
+
--color-gray-iron-200: #e4e4e7;
|
|
153
|
+
--color-gray-iron-300: #d1d1d6;
|
|
154
|
+
--color-gray-iron-400: #a0a0ab;
|
|
155
|
+
--color-gray-iron-500: #70707b;
|
|
156
|
+
--color-gray-iron-600: #51525c;
|
|
157
|
+
--color-gray-iron-700: #3f3f46;
|
|
158
|
+
--color-gray-iron-800: #26272b;
|
|
159
|
+
--color-gray-iron-900: #18181b;
|
|
160
|
+
--color-gray-iron-950: #131316;
|
|
161
|
+
|
|
162
|
+
/* Gray True */
|
|
163
|
+
--color-gray-true-25: #fcfcfc;
|
|
164
|
+
--color-gray-true-50: #fafafa;
|
|
165
|
+
--color-gray-true-100: #f5f5f5;
|
|
166
|
+
--color-gray-true-200: #e5e5e5;
|
|
167
|
+
--color-gray-true-300: #d6d6d6;
|
|
168
|
+
--color-gray-true-400: #a3a3a3;
|
|
169
|
+
--color-gray-true-500: #737373;
|
|
170
|
+
--color-gray-true-600: #525252;
|
|
171
|
+
--color-gray-true-700: #424242;
|
|
172
|
+
--color-gray-true-800: #292929;
|
|
173
|
+
--color-gray-true-900: #141414;
|
|
174
|
+
--color-gray-true-950: #0f0f0f;
|
|
175
|
+
|
|
176
|
+
/* Gray Warm */
|
|
177
|
+
--color-gray-warm-25: #fdfdfc;
|
|
178
|
+
--color-gray-warm-50: #fafaf9;
|
|
179
|
+
--color-gray-warm-100: #f5f5f4;
|
|
180
|
+
--color-gray-warm-200: #e7e5e4;
|
|
181
|
+
--color-gray-warm-300: #d7d3d0;
|
|
182
|
+
--color-gray-warm-400: #a9a29d;
|
|
183
|
+
--color-gray-warm-500: #79716b;
|
|
184
|
+
--color-gray-warm-600: #57534e;
|
|
185
|
+
--color-gray-warm-700: #44403c;
|
|
186
|
+
--color-gray-warm-800: #292524;
|
|
187
|
+
--color-gray-warm-900: #1c1917;
|
|
188
|
+
--color-gray-warm-950: #171412;
|
|
189
|
+
|
|
190
|
+
/* Moss */
|
|
191
|
+
--color-moss-25: #fafdf7;
|
|
192
|
+
--color-moss-50: #f5fbee;
|
|
193
|
+
--color-moss-100: #e6f4d7;
|
|
194
|
+
--color-moss-200: #ceeab0;
|
|
195
|
+
--color-moss-300: #acdc79;
|
|
196
|
+
--color-moss-400: #86cb3c;
|
|
197
|
+
--color-moss-500: #669f2a;
|
|
198
|
+
--color-moss-600: #4f7a21;
|
|
199
|
+
--color-moss-700: #3f621a;
|
|
200
|
+
--color-moss-800: #335015;
|
|
201
|
+
--color-moss-900: #2b4212;
|
|
202
|
+
--color-moss-950: #1a280b;
|
|
203
|
+
|
|
204
|
+
/* Green Light */
|
|
205
|
+
--color-green-light-25: #fafef5;
|
|
206
|
+
--color-green-light-50: #f3fee7;
|
|
207
|
+
--color-green-light-100: #e3fbcc;
|
|
208
|
+
--color-green-light-200: #d0f8ab;
|
|
209
|
+
--color-green-light-300: #a6ef67;
|
|
210
|
+
--color-green-light-400: #85e13a;
|
|
211
|
+
--color-green-light-500: #66c61c;
|
|
212
|
+
--color-green-light-600: #4ca30d;
|
|
213
|
+
--color-green-light-700: #3b7c0f;
|
|
214
|
+
--color-green-light-800: #326212;
|
|
215
|
+
--color-green-light-900: #2b5314;
|
|
216
|
+
--color-green-light-950: #15290a;
|
|
217
|
+
|
|
218
|
+
/* Green */
|
|
219
|
+
--color-green-25: #f6fef9;
|
|
220
|
+
--color-green-50: #edfcf2;
|
|
221
|
+
--color-green-100: #d3f8df;
|
|
222
|
+
--color-green-200: #aaf0c4;
|
|
223
|
+
--color-green-300: #73e2a3;
|
|
224
|
+
--color-green-400: #3ccb7f;
|
|
225
|
+
--color-green-500: #16b364;
|
|
226
|
+
--color-green-600: #099250;
|
|
227
|
+
--color-green-700: #087443;
|
|
228
|
+
--color-green-800: #095c37;
|
|
229
|
+
--color-green-900: #084c2e;
|
|
230
|
+
--color-green-950: #052e1c;
|
|
231
|
+
|
|
232
|
+
/* Teal */
|
|
233
|
+
--color-teal-25: #f6fefc;
|
|
234
|
+
--color-teal-50: #f0fdf9;
|
|
235
|
+
--color-teal-100: #ccfbef;
|
|
236
|
+
--color-teal-200: #99f6e0;
|
|
237
|
+
--color-teal-300: #5fe9d0;
|
|
238
|
+
--color-teal-400: #2ed3b7;
|
|
239
|
+
--color-teal-500: #15b79e;
|
|
240
|
+
--color-teal-600: #0e9384;
|
|
241
|
+
--color-teal-700: #107569;
|
|
242
|
+
--color-teal-800: #125d56;
|
|
243
|
+
--color-teal-900: #134e48;
|
|
244
|
+
--color-teal-950: #0a2926;
|
|
245
|
+
|
|
246
|
+
/* Cyan */
|
|
247
|
+
--color-cyan-25: #f5feff;
|
|
248
|
+
--color-cyan-50: #ecfdff;
|
|
249
|
+
--color-cyan-100: #cff9fe;
|
|
250
|
+
--color-cyan-200: #a5f0fc;
|
|
251
|
+
--color-cyan-300: #67e3f9;
|
|
252
|
+
--color-cyan-400: #22ccee;
|
|
253
|
+
--color-cyan-500: #06aed4;
|
|
254
|
+
--color-cyan-600: #088ab2;
|
|
255
|
+
--color-cyan-700: #0e7090;
|
|
256
|
+
--color-cyan-800: #155b75;
|
|
257
|
+
--color-cyan-900: #164c63;
|
|
258
|
+
--color-cyan-950: #0d2d3a;
|
|
259
|
+
|
|
260
|
+
/* Blue Light */
|
|
261
|
+
--color-blue-light-25: #f5fbff;
|
|
262
|
+
--color-blue-light-50: #f0f9ff;
|
|
263
|
+
--color-blue-light-100: #e0f2fe;
|
|
264
|
+
--color-blue-light-200: #b9e6fe;
|
|
265
|
+
--color-blue-light-300: #7cd4fd;
|
|
266
|
+
--color-blue-light-400: #36bffa;
|
|
267
|
+
--color-blue-light-500: #0ba5ec;
|
|
268
|
+
--color-blue-light-600: #0086c9;
|
|
269
|
+
--color-blue-light-700: #026aa2;
|
|
270
|
+
--color-blue-light-800: #065986;
|
|
271
|
+
--color-blue-light-900: #0b4a6f;
|
|
272
|
+
--color-blue-light-950: #062c41;
|
|
273
|
+
|
|
274
|
+
/* Blue */
|
|
275
|
+
--color-blue-25: #f5faff;
|
|
276
|
+
--color-blue-50: #eff8ff;
|
|
277
|
+
--color-blue-100: #d1e9ff;
|
|
278
|
+
--color-blue-200: #b2ddff;
|
|
279
|
+
--color-blue-300: #84caff;
|
|
280
|
+
--color-blue-400: #53b1fd;
|
|
281
|
+
--color-blue-500: #2e90fa;
|
|
282
|
+
--color-blue-600: #1570ef;
|
|
283
|
+
--color-blue-700: #175cd3;
|
|
284
|
+
--color-blue-800: #1849a9;
|
|
285
|
+
--color-blue-900: #194185;
|
|
286
|
+
--color-blue-950: #102a56;
|
|
287
|
+
|
|
288
|
+
/* Blue Dark */
|
|
289
|
+
--color-blue-dark-25: #f5f8ff;
|
|
290
|
+
--color-blue-dark-50: #eff4ff;
|
|
291
|
+
--color-blue-dark-100: #d1e0ff;
|
|
292
|
+
--color-blue-dark-200: #b2ccff;
|
|
293
|
+
--color-blue-dark-300: #84adff;
|
|
294
|
+
--color-blue-dark-400: #528bff;
|
|
295
|
+
--color-blue-dark-500: #2970ff;
|
|
296
|
+
--color-blue-dark-600: #155eef;
|
|
297
|
+
--color-blue-dark-700: #004eeb;
|
|
298
|
+
--color-blue-dark-800: #0040c1;
|
|
299
|
+
--color-blue-dark-900: #00359e;
|
|
300
|
+
--color-blue-dark-950: #002266;
|
|
301
|
+
|
|
302
|
+
/* Indigo */
|
|
303
|
+
--color-indigo-25: #f5f8ff;
|
|
304
|
+
--color-indigo-50: #eef4ff;
|
|
305
|
+
--color-indigo-100: #e0eaff;
|
|
306
|
+
--color-indigo-200: #c7d7fe;
|
|
307
|
+
--color-indigo-300: #a4bcfd;
|
|
308
|
+
--color-indigo-400: #8098f9;
|
|
309
|
+
--color-indigo-500: #6172f3;
|
|
310
|
+
--color-indigo-600: #444ce7;
|
|
311
|
+
--color-indigo-700: #3538cd;
|
|
312
|
+
--color-indigo-800: #2d31a6;
|
|
313
|
+
--color-indigo-900: #2d3282;
|
|
314
|
+
--color-indigo-950: #1f235b;
|
|
315
|
+
|
|
316
|
+
/* Violet */
|
|
317
|
+
--color-violet-25: #fbfaff;
|
|
318
|
+
--color-violet-50: #f5f3ff;
|
|
319
|
+
--color-violet-100: #ece9fe;
|
|
320
|
+
--color-violet-200: #ddd6fe;
|
|
321
|
+
--color-violet-300: #c3b5fd;
|
|
322
|
+
--color-violet-400: #a48afb;
|
|
323
|
+
--color-violet-500: #875bf7;
|
|
324
|
+
--color-violet-600: #7839ee;
|
|
325
|
+
--color-violet-700: #6927da;
|
|
326
|
+
--color-violet-800: #5720b7;
|
|
327
|
+
--color-violet-900: #491c96;
|
|
328
|
+
--color-violet-950: #2e125e;
|
|
329
|
+
|
|
330
|
+
/* Purple */
|
|
331
|
+
--color-purple-25: #fafaff;
|
|
332
|
+
--color-purple-50: #f4f3ff;
|
|
333
|
+
--color-purple-100: #ebe9fe;
|
|
334
|
+
--color-purple-200: #d9d6fe;
|
|
335
|
+
--color-purple-300: #bdb4fe;
|
|
336
|
+
--color-purple-400: #9b8afb;
|
|
337
|
+
--color-purple-500: #7a5af8;
|
|
338
|
+
--color-purple-600: #6938ef;
|
|
339
|
+
--color-purple-700: #5925dc;
|
|
340
|
+
--color-purple-800: #4a1fb8;
|
|
341
|
+
--color-purple-900: #3e1c96;
|
|
342
|
+
--color-purple-950: #27115f;
|
|
343
|
+
|
|
344
|
+
/* Fuchsia */
|
|
345
|
+
--color-fuchsia-25: #fefaff;
|
|
346
|
+
--color-fuchsia-50: #fdf4ff;
|
|
347
|
+
--color-fuchsia-100: #fbe8ff;
|
|
348
|
+
--color-fuchsia-200: #f6d0fe;
|
|
349
|
+
--color-fuchsia-300: #eeaafd;
|
|
350
|
+
--color-fuchsia-400: #e478fa;
|
|
351
|
+
--color-fuchsia-500: #d444f1;
|
|
352
|
+
--color-fuchsia-600: #ba24d5;
|
|
353
|
+
--color-fuchsia-700: #9f1ab1;
|
|
354
|
+
--color-fuchsia-800: #821890;
|
|
355
|
+
--color-fuchsia-900: #6f1877;
|
|
356
|
+
--color-fuchsia-950: #47104c;
|
|
357
|
+
|
|
358
|
+
/* Pink */
|
|
359
|
+
--color-pink-25: #fef6fb;
|
|
360
|
+
--color-pink-50: #fdf2fa;
|
|
361
|
+
--color-pink-100: #fce7f6;
|
|
362
|
+
--color-pink-200: #fcceee;
|
|
363
|
+
--color-pink-300: #faa7e0;
|
|
364
|
+
--color-pink-400: #f670c7;
|
|
365
|
+
--color-pink-500: #ee46bc;
|
|
366
|
+
--color-pink-600: #dd2590;
|
|
367
|
+
--color-pink-700: #c11574;
|
|
368
|
+
--color-pink-800: #9e165f;
|
|
369
|
+
--color-pink-900: #851651;
|
|
370
|
+
--color-pink-950: #4e0d30;
|
|
371
|
+
|
|
372
|
+
/* Rose */
|
|
373
|
+
--color-rose-25: #fff5f6;
|
|
374
|
+
--color-rose-50: #fff1f3;
|
|
375
|
+
--color-rose-100: #ffe4e8;
|
|
376
|
+
--color-rose-200: #fecdd6;
|
|
377
|
+
--color-rose-300: #fea3b4;
|
|
378
|
+
--color-rose-400: #fd6f8e;
|
|
379
|
+
--color-rose-500: #f63d68;
|
|
380
|
+
--color-rose-600: #e31b54;
|
|
381
|
+
--color-rose-700: #c01048;
|
|
382
|
+
--color-rose-800: #a11043;
|
|
383
|
+
--color-rose-900: #89123e;
|
|
384
|
+
--color-rose-950: #510b24;
|
|
385
|
+
|
|
386
|
+
/* Orange Dark */
|
|
387
|
+
--color-orange-dark-25: #fff9f5;
|
|
388
|
+
--color-orange-dark-50: #fff4ed;
|
|
389
|
+
--color-orange-dark-100: #ffe6d5;
|
|
390
|
+
--color-orange-dark-200: #ffd6ae;
|
|
391
|
+
--color-orange-dark-300: #ff9c66;
|
|
392
|
+
--color-orange-dark-400: #ff692e;
|
|
393
|
+
--color-orange-dark-500: #ff4405;
|
|
394
|
+
--color-orange-dark-600: #e62e05;
|
|
395
|
+
--color-orange-dark-700: #bc1b06;
|
|
396
|
+
--color-orange-dark-800: #97180c;
|
|
397
|
+
--color-orange-dark-900: #771a0d;
|
|
398
|
+
--color-orange-dark-950: #57130a;
|
|
399
|
+
|
|
400
|
+
/* Orange */
|
|
401
|
+
--color-orange-25: #fefaf5;
|
|
402
|
+
--color-orange-50: #fef6ee;
|
|
403
|
+
--color-orange-100: #fdead7;
|
|
404
|
+
--color-orange-200: #f9dbaf;
|
|
405
|
+
--color-orange-300: #f7b27a;
|
|
406
|
+
--color-orange-400: #f38744;
|
|
407
|
+
--color-orange-500: #ef6820;
|
|
408
|
+
--color-orange-600: #e04f16;
|
|
409
|
+
--color-orange-700: #b93815;
|
|
410
|
+
--color-orange-800: #932f19;
|
|
411
|
+
--color-orange-900: #772917;
|
|
412
|
+
--color-orange-950: #511c10;
|
|
413
|
+
|
|
414
|
+
/* Yellow */
|
|
415
|
+
--color-yellow-25: #fefdf0;
|
|
416
|
+
--color-yellow-50: #fefbe8;
|
|
417
|
+
--color-yellow-100: #fef7c3;
|
|
418
|
+
--color-yellow-200: #feee95;
|
|
419
|
+
--color-yellow-300: #fde272;
|
|
420
|
+
--color-yellow-400: #fac515;
|
|
421
|
+
--color-yellow-500: #eaaa08;
|
|
422
|
+
--color-yellow-600: #ca8504;
|
|
423
|
+
--color-yellow-700: #a15c07;
|
|
424
|
+
--color-yellow-800: #854a0e;
|
|
425
|
+
--color-yellow-900: #713b12;
|
|
426
|
+
--color-yellow-950: #542c0d;
|
|
427
|
+
|
|
428
|
+
/*
|
|
429
|
+
* Text/Headings
|
|
430
|
+
*/
|
|
431
|
+
--color-body: var(--color-gray-700);
|
|
432
|
+
--color-headings: var(--color-gray-700);
|
|
433
|
+
|
|
434
|
+
/* Info */
|
|
435
|
+
--color-info-25: #fcfcfd;
|
|
436
|
+
--color-info-50: #f8f9fc;
|
|
437
|
+
--color-info-100: #eaecf5;
|
|
438
|
+
--color-info-200: #d5d9eb;
|
|
439
|
+
--color-info-300: #b3b8db;
|
|
440
|
+
--color-info-400: #717bbc;
|
|
441
|
+
--color-info-500: #4e5ba6;
|
|
442
|
+
--color-info-600: #3e4784;
|
|
443
|
+
--color-info-700: #363f72;
|
|
444
|
+
--color-info-800: #293056;
|
|
445
|
+
--color-info-900: #101323;
|
|
446
|
+
--color-info-950: #0d0f1c;
|
|
447
|
+
|
|
448
|
+
/* Base Colors */
|
|
449
|
+
--color-white: #ffffff;
|
|
450
|
+
--color-black: #000000;
|
|
451
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
@utility ring-brand {
|
|
2
|
+
box-shadow: 0 0 0 4px color-mix(in srgb, theme(color.brand.500) 24%, transparent);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@utility ring-gray {
|
|
6
|
+
box-shadow: 0 0 0 4px color-mix(in srgb, theme(color.gray.400) 14%, transparent);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@utility ring-gray-secondary {
|
|
10
|
+
box-shadow: 0 0 0 4px color-mix(in srgb, theme(color.gray.400) 20%, transparent);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@utility ring-error {
|
|
14
|
+
box-shadow: 0 0 0 4px color-mix(in srgb, theme(color.error.500) 24%, transparent);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@utility ring-brand-shadow-xs {
|
|
18
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px color-mix(in srgb, theme(color.brand.500) 24%, transparent);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@utility ring-brand-shadow-sm {
|
|
22
|
+
box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.10), 0 1px 2px 0 rgba(16, 24, 40, 0.06), 0 0 0 4px color-mix(in srgb, theme(color.brand.500) 24%, transparent);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@utility ring-gray-shadow-xs {
|
|
26
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px color-mix(in srgb, theme(color.gray.400) 14%, transparent);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@utility ring-gray-shadow-sm {
|
|
30
|
+
box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.10), 0 1px 2px 0 rgba(16, 24, 40, 0.06), 0 0 0 4px color-mix(in srgb, theme(color.gray.400) 14%, transparent);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@utility ring-error-shadow-xs {
|
|
34
|
+
box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px color-mix(in srgb, theme(color.error.500) 24%, transparent);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@utility ring-error-shadow-sm {
|
|
38
|
+
box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.10), 0 1px 2px 0 rgba(16, 24, 40, 0.06), 0 0 0 4px color-mix(in srgb, theme(color.error.500) 24%, transparent);
|
|
39
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
--text-xs: 0.75rem;
|
|
3
|
+
--text-xs--line-height: 1.125rem;
|
|
4
|
+
|
|
5
|
+
--text-sm: 0.875rem;
|
|
6
|
+
--text-sm--line-height: 1.25rem;
|
|
7
|
+
|
|
8
|
+
--text-md: 1rem;
|
|
9
|
+
--text-md--line-height: 1.5rem;
|
|
10
|
+
|
|
11
|
+
--text-lg: 1.125rem;
|
|
12
|
+
--text-lg--line-height: 1.75rem;
|
|
13
|
+
|
|
14
|
+
--text-xl: 1.125rem;
|
|
15
|
+
--text-xl--line-height: 1.75rem;
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
/* --- Headings --- */
|
|
19
|
+
--text-heading-2xl: 4.5rem;
|
|
20
|
+
--text-heading-2xl--line-height: 5.625rem;
|
|
21
|
+
--text-heading-2xl--letter-spacing: -0.09rem;
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
--text-heading-xl: 3.75rem;
|
|
25
|
+
--text-heading-xl--line-height: 4.5rem;
|
|
26
|
+
--text-heading-xl--letter-spacing: -0.075rem;
|
|
27
|
+
|
|
28
|
+
--text-heading-lg: 3rem;
|
|
29
|
+
--text-heading-lg--line-height: 3.75rem;
|
|
30
|
+
--text-heading-lg--letter-spacing: -0.06rem;
|
|
31
|
+
|
|
32
|
+
--text-heading-md: 2.25rem;
|
|
33
|
+
--text-heading-md--line-height: 2.75rem;
|
|
34
|
+
--text-heading-md--letter-spacing: -0.045rem;
|
|
35
|
+
|
|
36
|
+
--text-heading-sm: 1.875rem;
|
|
37
|
+
--text-heading-sm--line-height: 2.375rem;
|
|
38
|
+
|
|
39
|
+
--text-heading-xs: 1.5rem;
|
|
40
|
+
--text-heading-xs--line-height: 2rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.display-2xl,
|
|
44
|
+
.h1,
|
|
45
|
+
.heading-1 {
|
|
46
|
+
font-size: var(--text-heading-2xl);
|
|
47
|
+
line-height: var(--text-heading-2xl--line-height);
|
|
48
|
+
letter-spacing: var(--text-heading-2xl--letter-spacing);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.display-xl,
|
|
52
|
+
.h2,
|
|
53
|
+
.heading-2 {
|
|
54
|
+
font-size: var(--text-heading-xl);
|
|
55
|
+
line-height: var(--text-heading-xl--line-height);
|
|
56
|
+
letter-spacing: var(--text-heading-xl--letter-spacing);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.display-lg,
|
|
60
|
+
.h3,
|
|
61
|
+
.heading-3 {
|
|
62
|
+
font-size: var(--text-heading-lg);
|
|
63
|
+
line-height: var(--text-heading-lg--line-height);
|
|
64
|
+
letter-spacing: var(--text-heading-lg--letter-spacing);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.display-md,
|
|
68
|
+
.h4,
|
|
69
|
+
.heading-4 {
|
|
70
|
+
font-size: var(--text-heading-md);
|
|
71
|
+
line-height: var(--text-heading-md--line-height);
|
|
72
|
+
letter-spacing: var(--text-heading-md--letter-spacing);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.display-sm,
|
|
76
|
+
.h5,
|
|
77
|
+
.heading-5 {
|
|
78
|
+
font-size: var(--text-heading-sm);
|
|
79
|
+
line-height: var(--text-heading-sm--line-height);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.display-xs,
|
|
83
|
+
.h6,
|
|
84
|
+
.heading-6 {
|
|
85
|
+
font-size: var(--text-heading-xs);
|
|
86
|
+
line-height: var(--text-heading-xs--line-height);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.body-xl,
|
|
90
|
+
.lead-1 {
|
|
91
|
+
font-size: var(--text-xl);
|
|
92
|
+
line-height: var(--text-xl--line-height);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.body-lg,
|
|
96
|
+
.lead-2 {
|
|
97
|
+
font-size: var(--text-lg);
|
|
98
|
+
line-height: var(--text-lg--line-height);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.body-md,
|
|
102
|
+
.text-base {
|
|
103
|
+
font-size: var(--text-md);
|
|
104
|
+
line-height: var(--text-md--line-height);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.body-sm,
|
|
108
|
+
.caption {
|
|
109
|
+
font-size: var(--text-sm);
|
|
110
|
+
line-height: var(--text-sm--line-height);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.body-xs,
|
|
114
|
+
.legal,
|
|
115
|
+
.text-legal {
|
|
116
|
+
font-size: var(--text-xs);
|
|
117
|
+
line-height: var(--text-xs--line-height);
|
|
118
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcodegroup-au/dsg-vue",
|
|
3
3
|
"description": "Front-end Vue/Tailwind DSG for UntitledUI.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4-next",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"preinstall": "npx only-allow pnpm",
|
|
@@ -31,12 +31,6 @@
|
|
|
31
31
|
"require": "./dist/dsg-vue.cjs",
|
|
32
32
|
"default": "./dist/dsg-vue.esm.js"
|
|
33
33
|
},
|
|
34
|
-
"./tailwind": {
|
|
35
|
-
"types": "./dist/tailwind.d.ts",
|
|
36
|
-
"import": "./dist/dsg-vue.tailwind.esm.js",
|
|
37
|
-
"require": "./dist/dsg-vue.tailwind.cjs",
|
|
38
|
-
"default": "./dist/dsg-vue.tailwind.esm.js"
|
|
39
|
-
},
|
|
40
34
|
"./table": {
|
|
41
35
|
"types": "./dist/table.d.ts",
|
|
42
36
|
"import": "./dist/dsg-vue.table.esm.js",
|
|
@@ -67,6 +61,7 @@
|
|
|
67
61
|
"require": "./dist/dsg-vue.helpers-object.cjs",
|
|
68
62
|
"default": "./dist/dsg-vue.helpers-object.esm.js"
|
|
69
63
|
},
|
|
64
|
+
"./styles/*.css": "./dist/styles/*.css",
|
|
70
65
|
"./dsg-vue.css": "./dist/dsg-vue.css"
|
|
71
66
|
},
|
|
72
67
|
"homepage": "https://github.com/DCODE-GROUP/dsg-vue#readme",
|
|
@@ -143,6 +138,7 @@
|
|
|
143
138
|
"vditor": "^3.11.2",
|
|
144
139
|
"vite": "^6.4.2",
|
|
145
140
|
"vite-plugin-dts": "^4.5.4",
|
|
141
|
+
"vite-plugin-static-copy": "^4.1.0",
|
|
146
142
|
"vite-svg-loader": "^5.1.1",
|
|
147
143
|
"vitest": "^3.2.4",
|
|
148
144
|
"vue-barcode-reader": "^1.0.3",
|
package/vite.config.ts
CHANGED
|
@@ -6,6 +6,7 @@ import path from "node:path";
|
|
|
6
6
|
import dts from "vite-plugin-dts";
|
|
7
7
|
import tailwindcss from "@tailwindcss/vite";
|
|
8
8
|
import { resolve } from "path";
|
|
9
|
+
import { viteStaticCopy } from "vite-plugin-static-copy";
|
|
9
10
|
|
|
10
11
|
// # Build/Export: Vite Configuration
|
|
11
12
|
export default defineConfig(({ command, mode }) => {
|
|
@@ -63,7 +64,7 @@ export default defineConfig(({ command, mode }) => {
|
|
|
63
64
|
"@headers": path.resolve(__dirname, "src/components/Headers"),
|
|
64
65
|
"@misc": path.resolve(__dirname, "src/components/Misc"),
|
|
65
66
|
"@navigation": path.resolve(__dirname, "src/components/Navigation"),
|
|
66
|
-
"@tailwind": resolve(__dirname, "src/
|
|
67
|
+
"@tailwind": resolve(__dirname, "src/styles"),
|
|
67
68
|
// "vue": "vue/dist/vue.esm-bundler.js",
|
|
68
69
|
},
|
|
69
70
|
},
|
|
@@ -77,6 +78,15 @@ export default defineConfig(({ command, mode }) => {
|
|
|
77
78
|
exclude: ["**/tests/**/*", "demo/**/*.ts", "demo/**/*.vue", "docs/**/*.ts", "docs/**/*.vue", "node_modules", "dist"],
|
|
78
79
|
}),
|
|
79
80
|
svgLoader(),
|
|
81
|
+
viteStaticCopy({
|
|
82
|
+
targets: [
|
|
83
|
+
{
|
|
84
|
+
src: "src/styles/*.css",
|
|
85
|
+
dest: "",
|
|
86
|
+
rename: { stripBase: 1 },
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
}),
|
|
80
90
|
],
|
|
81
91
|
test: {
|
|
82
92
|
globals: true,
|
|
@@ -1,427 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
body: string;
|
|
3
|
-
headings: string;
|
|
4
|
-
brand: {
|
|
5
|
-
25: string;
|
|
6
|
-
50: string;
|
|
7
|
-
100: string;
|
|
8
|
-
200: string;
|
|
9
|
-
300: string;
|
|
10
|
-
400: string;
|
|
11
|
-
500: string;
|
|
12
|
-
600: string;
|
|
13
|
-
700: string;
|
|
14
|
-
800: string;
|
|
15
|
-
900: string;
|
|
16
|
-
950: string;
|
|
17
|
-
};
|
|
18
|
-
primary: {
|
|
19
|
-
25: string;
|
|
20
|
-
50: string;
|
|
21
|
-
100: string;
|
|
22
|
-
200: string;
|
|
23
|
-
300: string;
|
|
24
|
-
400: string;
|
|
25
|
-
500: string;
|
|
26
|
-
600: string;
|
|
27
|
-
700: string;
|
|
28
|
-
800: string;
|
|
29
|
-
900: string;
|
|
30
|
-
950: string;
|
|
31
|
-
};
|
|
32
|
-
gray: {
|
|
33
|
-
25: string;
|
|
34
|
-
50: string;
|
|
35
|
-
100: string;
|
|
36
|
-
200: string;
|
|
37
|
-
300: string;
|
|
38
|
-
400: string;
|
|
39
|
-
500: string;
|
|
40
|
-
600: string;
|
|
41
|
-
700: string;
|
|
42
|
-
800: string;
|
|
43
|
-
900: string;
|
|
44
|
-
950: string;
|
|
45
|
-
};
|
|
46
|
-
success: {
|
|
47
|
-
25: string;
|
|
48
|
-
50: string;
|
|
49
|
-
100: string;
|
|
50
|
-
200: string;
|
|
51
|
-
300: string;
|
|
52
|
-
400: string;
|
|
53
|
-
500: string;
|
|
54
|
-
600: string;
|
|
55
|
-
700: string;
|
|
56
|
-
800: string;
|
|
57
|
-
900: string;
|
|
58
|
-
950: string;
|
|
59
|
-
};
|
|
60
|
-
error: {
|
|
61
|
-
25: string;
|
|
62
|
-
50: string;
|
|
63
|
-
100: string;
|
|
64
|
-
200: string;
|
|
65
|
-
300: string;
|
|
66
|
-
400: string;
|
|
67
|
-
500: string;
|
|
68
|
-
600: string;
|
|
69
|
-
700: string;
|
|
70
|
-
800: string;
|
|
71
|
-
900: string;
|
|
72
|
-
950: string;
|
|
73
|
-
};
|
|
74
|
-
warning: {
|
|
75
|
-
25: string;
|
|
76
|
-
50: string;
|
|
77
|
-
100: string;
|
|
78
|
-
200: string;
|
|
79
|
-
300: string;
|
|
80
|
-
400: string;
|
|
81
|
-
500: string;
|
|
82
|
-
600: string;
|
|
83
|
-
700: string;
|
|
84
|
-
800: string;
|
|
85
|
-
900: string;
|
|
86
|
-
950: string;
|
|
87
|
-
};
|
|
88
|
-
info: {
|
|
89
|
-
25: string;
|
|
90
|
-
50: string;
|
|
91
|
-
100: string;
|
|
92
|
-
200: string;
|
|
93
|
-
300: string;
|
|
94
|
-
400: string;
|
|
95
|
-
500: string;
|
|
96
|
-
600: string;
|
|
97
|
-
700: string;
|
|
98
|
-
800: string;
|
|
99
|
-
900: string;
|
|
100
|
-
950: string;
|
|
101
|
-
};
|
|
102
|
-
"gray-blue": {
|
|
103
|
-
25: string;
|
|
104
|
-
50: string;
|
|
105
|
-
100: string;
|
|
106
|
-
200: string;
|
|
107
|
-
300: string;
|
|
108
|
-
400: string;
|
|
109
|
-
500: string;
|
|
110
|
-
600: string;
|
|
111
|
-
700: string;
|
|
112
|
-
800: string;
|
|
113
|
-
900: string;
|
|
114
|
-
950: string;
|
|
115
|
-
};
|
|
116
|
-
"gray-cool": {
|
|
117
|
-
25: string;
|
|
118
|
-
50: string;
|
|
119
|
-
100: string;
|
|
120
|
-
200: string;
|
|
121
|
-
300: string;
|
|
122
|
-
400: string;
|
|
123
|
-
500: string;
|
|
124
|
-
600: string;
|
|
125
|
-
700: string;
|
|
126
|
-
800: string;
|
|
127
|
-
900: string;
|
|
128
|
-
950: string;
|
|
129
|
-
};
|
|
130
|
-
"gray-modern": {
|
|
131
|
-
25: string;
|
|
132
|
-
50: string;
|
|
133
|
-
100: string;
|
|
134
|
-
200: string;
|
|
135
|
-
300: string;
|
|
136
|
-
400: string;
|
|
137
|
-
500: string;
|
|
138
|
-
600: string;
|
|
139
|
-
700: string;
|
|
140
|
-
800: string;
|
|
141
|
-
900: string;
|
|
142
|
-
950: string;
|
|
143
|
-
};
|
|
144
|
-
"gray-neutral": {
|
|
145
|
-
25: string;
|
|
146
|
-
50: string;
|
|
147
|
-
100: string;
|
|
148
|
-
200: string;
|
|
149
|
-
300: string;
|
|
150
|
-
400: string;
|
|
151
|
-
500: string;
|
|
152
|
-
600: string;
|
|
153
|
-
700: string;
|
|
154
|
-
800: string;
|
|
155
|
-
900: string;
|
|
156
|
-
950: string;
|
|
157
|
-
};
|
|
158
|
-
"gray-iron": {
|
|
159
|
-
25: string;
|
|
160
|
-
50: string;
|
|
161
|
-
100: string;
|
|
162
|
-
200: string;
|
|
163
|
-
300: string;
|
|
164
|
-
400: string;
|
|
165
|
-
500: string;
|
|
166
|
-
600: string;
|
|
167
|
-
700: string;
|
|
168
|
-
800: string;
|
|
169
|
-
900: string;
|
|
170
|
-
950: string;
|
|
171
|
-
};
|
|
172
|
-
"gray-true": {
|
|
173
|
-
25: string;
|
|
174
|
-
50: string;
|
|
175
|
-
100: string;
|
|
176
|
-
200: string;
|
|
177
|
-
300: string;
|
|
178
|
-
400: string;
|
|
179
|
-
500: string;
|
|
180
|
-
600: string;
|
|
181
|
-
700: string;
|
|
182
|
-
800: string;
|
|
183
|
-
900: string;
|
|
184
|
-
950: string;
|
|
185
|
-
};
|
|
186
|
-
"gray-warm": {
|
|
187
|
-
25: string;
|
|
188
|
-
50: string;
|
|
189
|
-
100: string;
|
|
190
|
-
200: string;
|
|
191
|
-
300: string;
|
|
192
|
-
400: string;
|
|
193
|
-
500: string;
|
|
194
|
-
600: string;
|
|
195
|
-
700: string;
|
|
196
|
-
800: string;
|
|
197
|
-
900: string;
|
|
198
|
-
950: string;
|
|
199
|
-
};
|
|
200
|
-
moss: {
|
|
201
|
-
25: string;
|
|
202
|
-
50: string;
|
|
203
|
-
100: string;
|
|
204
|
-
200: string;
|
|
205
|
-
300: string;
|
|
206
|
-
400: string;
|
|
207
|
-
500: string;
|
|
208
|
-
600: string;
|
|
209
|
-
700: string;
|
|
210
|
-
800: string;
|
|
211
|
-
900: string;
|
|
212
|
-
950: string;
|
|
213
|
-
};
|
|
214
|
-
"green-light": {
|
|
215
|
-
25: string;
|
|
216
|
-
50: string;
|
|
217
|
-
100: string;
|
|
218
|
-
200: string;
|
|
219
|
-
300: string;
|
|
220
|
-
400: string;
|
|
221
|
-
500: string;
|
|
222
|
-
600: string;
|
|
223
|
-
700: string;
|
|
224
|
-
800: string;
|
|
225
|
-
900: string;
|
|
226
|
-
950: string;
|
|
227
|
-
};
|
|
228
|
-
green: {
|
|
229
|
-
25: string;
|
|
230
|
-
50: string;
|
|
231
|
-
100: string;
|
|
232
|
-
200: string;
|
|
233
|
-
300: string;
|
|
234
|
-
400: string;
|
|
235
|
-
500: string;
|
|
236
|
-
600: string;
|
|
237
|
-
700: string;
|
|
238
|
-
800: string;
|
|
239
|
-
900: string;
|
|
240
|
-
950: string;
|
|
241
|
-
};
|
|
242
|
-
teal: {
|
|
243
|
-
25: string;
|
|
244
|
-
50: string;
|
|
245
|
-
100: string;
|
|
246
|
-
200: string;
|
|
247
|
-
300: string;
|
|
248
|
-
400: string;
|
|
249
|
-
500: string;
|
|
250
|
-
600: string;
|
|
251
|
-
700: string;
|
|
252
|
-
800: string;
|
|
253
|
-
900: string;
|
|
254
|
-
950: string;
|
|
255
|
-
};
|
|
256
|
-
cyan: {
|
|
257
|
-
25: string;
|
|
258
|
-
50: string;
|
|
259
|
-
100: string;
|
|
260
|
-
200: string;
|
|
261
|
-
300: string;
|
|
262
|
-
400: string;
|
|
263
|
-
500: string;
|
|
264
|
-
600: string;
|
|
265
|
-
700: string;
|
|
266
|
-
800: string;
|
|
267
|
-
900: string;
|
|
268
|
-
950: string;
|
|
269
|
-
};
|
|
270
|
-
"blue-light": {
|
|
271
|
-
25: string;
|
|
272
|
-
50: string;
|
|
273
|
-
100: string;
|
|
274
|
-
200: string;
|
|
275
|
-
300: string;
|
|
276
|
-
400: string;
|
|
277
|
-
500: string;
|
|
278
|
-
600: string;
|
|
279
|
-
700: string;
|
|
280
|
-
800: string;
|
|
281
|
-
900: string;
|
|
282
|
-
950: string;
|
|
283
|
-
};
|
|
284
|
-
blue: {
|
|
285
|
-
25: string;
|
|
286
|
-
50: string;
|
|
287
|
-
100: string;
|
|
288
|
-
200: string;
|
|
289
|
-
300: string;
|
|
290
|
-
400: string;
|
|
291
|
-
500: string;
|
|
292
|
-
600: string;
|
|
293
|
-
700: string;
|
|
294
|
-
800: string;
|
|
295
|
-
900: string;
|
|
296
|
-
950: string;
|
|
297
|
-
};
|
|
298
|
-
"blue-dark": {
|
|
299
|
-
25: string;
|
|
300
|
-
50: string;
|
|
301
|
-
100: string;
|
|
302
|
-
200: string;
|
|
303
|
-
300: string;
|
|
304
|
-
400: string;
|
|
305
|
-
500: string;
|
|
306
|
-
600: string;
|
|
307
|
-
700: string;
|
|
308
|
-
800: string;
|
|
309
|
-
900: string;
|
|
310
|
-
950: string;
|
|
311
|
-
};
|
|
312
|
-
violet: {
|
|
313
|
-
25: string;
|
|
314
|
-
50: string;
|
|
315
|
-
100: string;
|
|
316
|
-
200: string;
|
|
317
|
-
300: string;
|
|
318
|
-
400: string;
|
|
319
|
-
500: string;
|
|
320
|
-
600: string;
|
|
321
|
-
700: string;
|
|
322
|
-
800: string;
|
|
323
|
-
900: string;
|
|
324
|
-
950: string;
|
|
325
|
-
};
|
|
326
|
-
purple: {
|
|
327
|
-
25: string;
|
|
328
|
-
50: string;
|
|
329
|
-
100: string;
|
|
330
|
-
200: string;
|
|
331
|
-
300: string;
|
|
332
|
-
400: string;
|
|
333
|
-
500: string;
|
|
334
|
-
600: string;
|
|
335
|
-
700: string;
|
|
336
|
-
800: string;
|
|
337
|
-
900: string;
|
|
338
|
-
950: string;
|
|
339
|
-
};
|
|
340
|
-
fuchsia: {
|
|
341
|
-
25: string;
|
|
342
|
-
50: string;
|
|
343
|
-
100: string;
|
|
344
|
-
200: string;
|
|
345
|
-
300: string;
|
|
346
|
-
400: string;
|
|
347
|
-
500: string;
|
|
348
|
-
600: string;
|
|
349
|
-
700: string;
|
|
350
|
-
800: string;
|
|
351
|
-
900: string;
|
|
352
|
-
950: string;
|
|
353
|
-
};
|
|
354
|
-
pink: {
|
|
355
|
-
25: string;
|
|
356
|
-
50: string;
|
|
357
|
-
100: string;
|
|
358
|
-
200: string;
|
|
359
|
-
300: string;
|
|
360
|
-
400: string;
|
|
361
|
-
500: string;
|
|
362
|
-
600: string;
|
|
363
|
-
700: string;
|
|
364
|
-
800: string;
|
|
365
|
-
900: string;
|
|
366
|
-
950: string;
|
|
367
|
-
};
|
|
368
|
-
rose: {
|
|
369
|
-
25: string;
|
|
370
|
-
50: string;
|
|
371
|
-
100: string;
|
|
372
|
-
200: string;
|
|
373
|
-
300: string;
|
|
374
|
-
400: string;
|
|
375
|
-
500: string;
|
|
376
|
-
600: string;
|
|
377
|
-
700: string;
|
|
378
|
-
800: string;
|
|
379
|
-
900: string;
|
|
380
|
-
950: string;
|
|
381
|
-
};
|
|
382
|
-
"orange-dark": {
|
|
383
|
-
25: string;
|
|
384
|
-
50: string;
|
|
385
|
-
100: string;
|
|
386
|
-
200: string;
|
|
387
|
-
300: string;
|
|
388
|
-
400: string;
|
|
389
|
-
500: string;
|
|
390
|
-
600: string;
|
|
391
|
-
700: string;
|
|
392
|
-
800: string;
|
|
393
|
-
900: string;
|
|
394
|
-
950: string;
|
|
395
|
-
};
|
|
396
|
-
orange: {
|
|
397
|
-
25: string;
|
|
398
|
-
50: string;
|
|
399
|
-
100: string;
|
|
400
|
-
200: string;
|
|
401
|
-
300: string;
|
|
402
|
-
400: string;
|
|
403
|
-
500: string;
|
|
404
|
-
600: string;
|
|
405
|
-
700: string;
|
|
406
|
-
800: string;
|
|
407
|
-
900: string;
|
|
408
|
-
950: string;
|
|
409
|
-
};
|
|
410
|
-
yellow: {
|
|
411
|
-
25: string;
|
|
412
|
-
50: string;
|
|
413
|
-
100: string;
|
|
414
|
-
200: string;
|
|
415
|
-
300: string;
|
|
416
|
-
400: string;
|
|
417
|
-
500: string;
|
|
418
|
-
600: string;
|
|
419
|
-
700: string;
|
|
420
|
-
800: string;
|
|
421
|
-
900: string;
|
|
422
|
-
950: string;
|
|
423
|
-
};
|
|
424
|
-
white: string;
|
|
425
|
-
black: string;
|
|
426
|
-
};
|
|
427
|
-
export default _default;
|