design-system-next 1.0.21
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/LICENSE +21 -0
- package/README.md +21 -0
- package/dist/design-system-next.js +3185 -0
- package/dist/design-system-next.js.gz +0 -0
- package/dist/main.css +1 -0
- package/dist/main.css.gz +0 -0
- package/dist/main.d.ts +9 -0
- package/package.json +85 -0
- package/src/App.vue +179 -0
- package/src/assets/scripts/borderRadius.ts +15 -0
- package/src/assets/scripts/colors.ts +134 -0
- package/src/assets/scripts/maxWidth.ts +11 -0
- package/src/assets/scripts/spacing.ts +23 -0
- package/src/assets/styles/tailwind.css +795 -0
- package/src/components/badge/badge.ts +43 -0
- package/src/components/badge/badge.vue +20 -0
- package/src/components/badge/use-badge.ts +52 -0
- package/src/components/button/button.ts +64 -0
- package/src/components/button/button.vue +25 -0
- package/src/components/button/use-button.ts +166 -0
- package/src/components/lozenge/lozenge.ts +57 -0
- package/src/components/lozenge/lozenge.vue +96 -0
- package/src/components/lozenge/use-lozenge.ts +12 -0
- package/src/components/radio/radio.ts +54 -0
- package/src/components/radio/radio.vue +36 -0
- package/src/components/radio/use-radio.ts +65 -0
- package/src/components/sidenav/sidenav.ts +43 -0
- package/src/components/sidenav/sidenav.vue +235 -0
- package/src/components/sidenav/use-sidenav.ts +31 -0
- package/src/components/switch/switch.ts +35 -0
- package/src/components/switch/switch.vue +106 -0
- package/src/components/switch/use-switch.ts +106 -0
- package/src/main.ts +13 -0
|
@@ -0,0 +1,795 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
|
3
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
|
|
4
|
+
|
|
5
|
+
@tailwind base;
|
|
6
|
+
@tailwind components;
|
|
7
|
+
@tailwind utilities;
|
|
8
|
+
|
|
9
|
+
@layer base {
|
|
10
|
+
:root {
|
|
11
|
+
--size-50: 2px;
|
|
12
|
+
--size-100: 4px;
|
|
13
|
+
--size-150: 6px;
|
|
14
|
+
--size-200: 8px;
|
|
15
|
+
--size-250: 12px;
|
|
16
|
+
--size-300: 16px;
|
|
17
|
+
--size-400: 24px;
|
|
18
|
+
--size-500: 32px;
|
|
19
|
+
--size-600: 40px;
|
|
20
|
+
--size-700: 48px;
|
|
21
|
+
--size-800: 64px;
|
|
22
|
+
--size-900: 72px;
|
|
23
|
+
--size-1000: 80px;
|
|
24
|
+
--size-1100: 96px;
|
|
25
|
+
--size-1200: 128px;
|
|
26
|
+
}
|
|
27
|
+
*::-webkit-scrollbar {
|
|
28
|
+
@apply tw-h-[8px] tw-w-[8px];
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
*::-webkit-scrollbar-track {
|
|
32
|
+
@apply tw-bg-white-200;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
*::-webkit-scrollbar-thumb {
|
|
36
|
+
@apply tw-rounded-full tw-bg-white-300;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@layer components {
|
|
41
|
+
#sidenav-menu-wrapper,
|
|
42
|
+
#sidenav-submenu-wrapper {
|
|
43
|
+
@apply tw-background-color tw-max-h-[500px] tw-w-[215px] tw-overflow-y-auto tw-overflow-x-hidden tw-rounded-[12px] tw-drop-shadow-md;
|
|
44
|
+
|
|
45
|
+
.v-popper__wrapper {
|
|
46
|
+
.v-popper__inner {
|
|
47
|
+
@apply tw-overflow-hidden tw-rounded-none tw-border-none tw-bg-transparent tw-shadow-none;
|
|
48
|
+
|
|
49
|
+
.slide-fade-enter-active {
|
|
50
|
+
@apply tw-duration-300 tw-ease-out;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.slide-fade-leave-active {
|
|
54
|
+
transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.slide-fade-enter-from,
|
|
58
|
+
.slide-fade-leave-to {
|
|
59
|
+
@apply tw-translate-x-[-20px] tw-opacity-0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.v-popper__arrow-container {
|
|
64
|
+
@apply tw-hidden;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
#sidenav-sub-submenu-wrapper {
|
|
70
|
+
@apply tw-hidden;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
#default-tooltip {
|
|
74
|
+
.v-popper__wrapper {
|
|
75
|
+
.v-popper__inner {
|
|
76
|
+
@apply tw-label-xs tw-background-color-inverted tw-rounded-border-radius-md tw-font-main tw-opacity-100;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.v-popper__arrow-outer {
|
|
80
|
+
@apply tw-hidden;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@layer utilities {
|
|
87
|
+
.tw-hidden-scrolls {
|
|
88
|
+
&::-webkit-scrollbar {
|
|
89
|
+
@apply tw-hidden;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* #region - Headings */
|
|
94
|
+
.tw-heading-xl {
|
|
95
|
+
@apply tw-font-size-900 tw-line-height-1000 tw-letter-spacing-densest tw-font-main tw-font-medium;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.tw-heading-lg {
|
|
99
|
+
@apply tw-font-size-800 tw-line-height-900 tw-letter-spacing-denser tw-font-main tw-font-medium;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.tw-heading-md {
|
|
103
|
+
@apply tw-font-size-700 tw-line-height-800 tw-letter-spacing-denser tw-font-main tw-font-medium;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.tw-heading-sm {
|
|
107
|
+
@apply tw-font-size-600 tw-line-height-700 tw-letter-spacing-dense tw-font-main tw-font-medium;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.tw-heading-xs {
|
|
111
|
+
@apply tw-font-size-500 tw-line-height-600 tw-letter-spacing-dense tw-font-main tw-font-medium;
|
|
112
|
+
}
|
|
113
|
+
/* #endregion - Headings */
|
|
114
|
+
|
|
115
|
+
/* #region - Subheadings */
|
|
116
|
+
.tw-subheading-sm {
|
|
117
|
+
@apply tw-font-size-400 tw-line-height-500 tw-letter-spacing-dense tw-font-main tw-font-medium;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.tw-subheading-xs {
|
|
121
|
+
@apply tw-font-size-300 tw-line-height-400 tw-letter-spacing-normal tw-font-main tw-font-medium;
|
|
122
|
+
}
|
|
123
|
+
/* #endregion - Subheadings */
|
|
124
|
+
|
|
125
|
+
/* #region - Paragraphs */
|
|
126
|
+
.tw-body-lg {
|
|
127
|
+
@apply tw-font-size-400 tw-line-height-600 tw-letter-spacing-normal tw-font-main;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.tw-body-lg-regular {
|
|
131
|
+
@apply tw-body-lg tw-font-normal;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.tw-body-lg-regular-underline {
|
|
135
|
+
@apply tw-body-lg tw-font-normal tw-decoration-solid;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.tw-body-lg-regular-medium {
|
|
139
|
+
@apply tw-body-lg tw-font-medium;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.tw-body-lg-medium-underline {
|
|
143
|
+
@apply tw-body-lg tw-font-medium tw-decoration-solid;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.tw-body-md {
|
|
147
|
+
@apply tw-font-size-300 tw-line-height-500 tw-letter-spacing-normal tw-font-main;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.tw-body-md-regular {
|
|
151
|
+
@apply tw-body-md tw-font-normal;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.tw-body-md-regular-underline {
|
|
155
|
+
@apply tw-body-md tw-font-normal tw-decoration-solid;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.tw-body-md-regular-medium {
|
|
159
|
+
@apply tw-body-md tw-font-medium;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.tw-body-md-medium-underline {
|
|
163
|
+
@apply tw-body-md tw-font-medium tw-decoration-solid;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.tw-body-sm {
|
|
167
|
+
@apply tw-font-size-200 tw-line-height-400 tw-letter-spacing-normal tw-font-main;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.tw-body-sm-regular {
|
|
171
|
+
@apply tw-body-sm tw-font-normal;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.tw-body-sm-regular-underline {
|
|
175
|
+
@apply tw-body-sm tw-font-normal tw-decoration-solid;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.tw-body-sm-regular-medium {
|
|
179
|
+
@apply tw-body-sm tw-font-medium;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.tw-body-sm-medium-underline {
|
|
183
|
+
@apply tw-body-sm tw-font-medium tw-decoration-solid;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.tw-body-xs {
|
|
187
|
+
@apply tw-font-size-100 tw-line-height-300 tw-letter-spacing-normal tw-font-main;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.tw-body-xs-regular {
|
|
191
|
+
@apply tw-body-xs tw-font-normal;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.tw-body-xs-regular-underline {
|
|
195
|
+
@apply tw-body-xs tw-font-normal tw-decoration-solid;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.tw-body-xs-regular-medium {
|
|
199
|
+
@apply tw-body-xs tw-font-medium;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.tw-body-xs-medium-underline {
|
|
203
|
+
@apply tw-body-xs tw-font-medium tw-decoration-solid;
|
|
204
|
+
}
|
|
205
|
+
/* #endregion - Paragraphs */
|
|
206
|
+
|
|
207
|
+
/* #region - Labels */
|
|
208
|
+
.tw-label-sm {
|
|
209
|
+
@apply tw-font-size-200 tw-line-height-200 tw-letter-spacing-wide tw-font-main;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.tw-label-sm-regular {
|
|
213
|
+
@apply tw-label-sm tw-font-normal;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.tw-label-sm-medium {
|
|
217
|
+
@apply tw-label-sm tw-font-medium;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.tw-label-xs {
|
|
221
|
+
@apply tw-font-size-100 tw-line-height-100 tw-letter-spacing-wide tw-font-main;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.tw-label-xs-regular {
|
|
225
|
+
@apply tw-label-xs tw-font-normal;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.tw-label-xs-medium {
|
|
229
|
+
@apply tw-label-xs tw-font-medium;
|
|
230
|
+
}
|
|
231
|
+
/* #endregion - Labels */
|
|
232
|
+
|
|
233
|
+
/* #region - Font Size */
|
|
234
|
+
.tw-font-size-100 {
|
|
235
|
+
@apply tw-text-100;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.tw-font-size-200 {
|
|
239
|
+
@apply tw-text-200;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.tw-font-size-300 {
|
|
243
|
+
@apply tw-text-300;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.tw-font-size-400 {
|
|
247
|
+
@apply tw-text-400;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.tw-font-size-500 {
|
|
251
|
+
@apply tw-text-500;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.tw-font-size-600 {
|
|
255
|
+
@apply tw-text-600;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.tw-font-size-700 {
|
|
259
|
+
@apply tw-text-700;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.tw-font-size-800 {
|
|
263
|
+
@apply tw-text-800;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.tw-font-size-900 {
|
|
267
|
+
@apply tw-text-900;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.tw-font-size-1000 {
|
|
271
|
+
@apply tw-text-1000;
|
|
272
|
+
}
|
|
273
|
+
/* #endregion - Font Size */
|
|
274
|
+
|
|
275
|
+
/* #region - Line Height */
|
|
276
|
+
.tw-line-height-none {
|
|
277
|
+
@apply tw-leading-none;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.tw-line-height-100 {
|
|
281
|
+
@apply tw-leading-100;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.tw-line-height-200 {
|
|
285
|
+
@apply tw-leading-200;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.tw-line-height-300 {
|
|
289
|
+
@apply tw-leading-300;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.tw-line-height-400 {
|
|
293
|
+
@apply tw-leading-400;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.tw-line-height-500 {
|
|
297
|
+
@apply tw-leading-500;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.tw-line-height-600 {
|
|
301
|
+
@apply tw-leading-600;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.tw-line-height-700 {
|
|
305
|
+
@apply tw-leading-700;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.tw-line-height-800 {
|
|
309
|
+
@apply tw-leading-800;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.tw-line-height-900 {
|
|
313
|
+
@apply tw-leading-900;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.tw-line-height-1000 {
|
|
317
|
+
@apply tw-leading-1000;
|
|
318
|
+
}
|
|
319
|
+
/* #endregion - Line Height */
|
|
320
|
+
|
|
321
|
+
/* #region - Letter Spacing */
|
|
322
|
+
.tw-letter-spacing-none {
|
|
323
|
+
@apply tw-tracking-spacing-none;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.tw-letter-spacing-densest {
|
|
327
|
+
@apply tw-tracking-spacing-densest;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.tw-letter-spacing-denser {
|
|
331
|
+
@apply tw-tracking-spacing-denser;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.tw-letter-spacing-dense {
|
|
335
|
+
@apply tw-tracking-spacing-dense;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.tw-letter-spacing-normal {
|
|
339
|
+
@apply tw-tracking-spacing-normal;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.tw-letter-spacing-wide {
|
|
343
|
+
@apply tw-tracking-spacing-wide;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.tw-letter-spacing-wider {
|
|
347
|
+
@apply tw-tracking-spacing-wider;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.tw-letter-spacing-widest {
|
|
351
|
+
@apply tw-tracking-spacing-widest;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/* #endregion - Letter Spacing */
|
|
355
|
+
|
|
356
|
+
/* #region - Text Colors */
|
|
357
|
+
.tw-text-color-strong {
|
|
358
|
+
@apply tw-text-mushroom-950;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.tw-text-color-supporting {
|
|
362
|
+
@apply tw-text-mushroom-400;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.tw-text-color-base {
|
|
366
|
+
@apply tw-text-mushroom-600;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.tw-text-color-weak {
|
|
370
|
+
@apply tw-text-mushroom-300;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.tw-text-color-disabled {
|
|
374
|
+
@apply tw-text-white-300;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.tw-text-color-on-fill-disabled {
|
|
378
|
+
@apply tw-text-white-400;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.tw-text-color-inverted-strong {
|
|
382
|
+
@apply tw-text-white-50;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.tw-text-color-inverted-base {
|
|
386
|
+
@apply tw-text-mushroom-200;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.tw-text-color-inverted-weak {
|
|
390
|
+
@apply tw-text-mushroom-400;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.tw-text-color-inverted-disabled {
|
|
394
|
+
@apply tw-text-white-600;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.tw-text-color-brand-base {
|
|
398
|
+
@apply tw-text-kangkong-700;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.tw-text-color-brand-hover {
|
|
402
|
+
@apply tw-text-kangkong-800;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.tw-text-color-brand-pressed {
|
|
406
|
+
@apply tw-text-kangkong-900;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.tw-text-color-success-base {
|
|
410
|
+
@apply tw-text-kangkong-700;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.tw-text-color-success-hover {
|
|
414
|
+
@apply tw-text-kangkong-800;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.tw-text-color-success-pressed {
|
|
418
|
+
@apply tw-text-kangkong-900;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.tw-text-color-information-base {
|
|
422
|
+
@apply tw-text-blueberry-700;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.tw-text-color-information-hover {
|
|
426
|
+
@apply tw-text-blueberry-800;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.tw-text-color-information-pressed {
|
|
430
|
+
@apply tw-text-blueberry-900;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.tw-text-color-danger-base {
|
|
434
|
+
@apply tw-text-tomato-600;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.tw-text-color-danger-hover {
|
|
438
|
+
@apply tw-text-tomato-700;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.tw-text-color-danger-pressed {
|
|
442
|
+
@apply tw-text-tomato-800;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.tw-text-color-pending-base {
|
|
446
|
+
@apply tw-text-mango-700;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.tw-text-color-pending-hover {
|
|
450
|
+
@apply tw-text-mango-800;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.tw-text-color-pending-pressed {
|
|
454
|
+
@apply tw-text-mango-900;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.tw-text-color-caution-base {
|
|
458
|
+
@apply tw-text-carrot-700;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.tw-text-color-caution-hover {
|
|
462
|
+
@apply tw-text-carrot-800;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.tw-text-color-caution-pressed {
|
|
466
|
+
@apply tw-text-carrot-900;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.tw-text-color-accent-base {
|
|
470
|
+
@apply tw-text-wintermelon-700;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.tw-text-color-accent-hover {
|
|
474
|
+
@apply tw-text-wintermelon-800;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.tw-text-color-accent-pressed {
|
|
478
|
+
@apply tw-text-wintermelon-900;
|
|
479
|
+
}
|
|
480
|
+
/* #endregion - Text Colors */
|
|
481
|
+
|
|
482
|
+
/* #region - Background Colors */
|
|
483
|
+
.tw-background-color {
|
|
484
|
+
@apply tw-bg-white-50;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.tw-background-color-surface {
|
|
488
|
+
@apply tw-bg-white-100;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.tw-background-color-inverted {
|
|
492
|
+
@apply tw-bg-mushroom-950;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.tw-background-color-inverted-hover {
|
|
496
|
+
@apply tw-bg-mushroom-900;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.tw-background-color-inverted-pressed {
|
|
500
|
+
@apply tw-bg-mushroom-800;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.tw-background-color-base {
|
|
504
|
+
@apply tw-bg-mushroom-50;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.tw-background-color-single-active {
|
|
508
|
+
@apply tw-bg-kangkong-100;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.tw-background-color-multiple-active {
|
|
512
|
+
@apply tw-bg-kangkong-50;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
.tw-background-color-hover {
|
|
516
|
+
@apply tw-bg-mushroom-50;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.tw-background-color-pressed {
|
|
520
|
+
@apply tw-bg-mushroom-100;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.tw-background-color-disabled {
|
|
524
|
+
@apply tw-bg-white-100;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.tw-background-color-brand-base {
|
|
528
|
+
@apply tw-bg-kangkong-700;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.tw-background-color-brand-hover {
|
|
532
|
+
@apply tw-bg-kangkong-800;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.tw-background-color-brand-pressed {
|
|
536
|
+
@apply tw-bg-kangkong-900;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.tw-background-color-brand-weak {
|
|
540
|
+
@apply tw-bg-kangkong-100;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.tw-background-color-success-base {
|
|
544
|
+
@apply tw-bg-kangkong-600;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.tw-background-color-success-hover {
|
|
548
|
+
@apply tw-bg-kangkong-700;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.tw-background-color-success-pressed {
|
|
552
|
+
@apply tw-bg-kangkong-800;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.tw-background-color-success-weak {
|
|
556
|
+
@apply tw-bg-kangkong-100;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.tw-background-color-information-base {
|
|
560
|
+
@apply tw-bg-blueberry-600;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.tw-background-color-information-hover {
|
|
564
|
+
@apply tw-bg-blueberry-700;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.tw-background-color-information-pressed {
|
|
568
|
+
@apply tw-bg-blueberry-800;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.tw-background-color-information-weak {
|
|
572
|
+
@apply tw-bg-blueberry-100;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.tw-background-color-pending-base {
|
|
576
|
+
@apply tw-bg-mango-500;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.tw-background-color-pending-hover {
|
|
580
|
+
@apply tw-bg-mango-600;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.tw-background-color-pending-pressed {
|
|
584
|
+
@apply tw-bg-mango-700;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.tw-background-color-pending-weak {
|
|
588
|
+
@apply tw-bg-mango-100;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
.tw-background-color-caution-base {
|
|
592
|
+
@apply tw-bg-carrot-500;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.tw-background-color-caution-hover {
|
|
596
|
+
@apply tw-bg-carrot-600;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.tw-background-color-caution-pressed {
|
|
600
|
+
@apply tw-bg-carrot-700;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.tw-background-color-caution-weak {
|
|
604
|
+
@apply tw-bg-carrot-100;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.tw-background-color-accent-base {
|
|
608
|
+
@apply tw-bg-wintermelon-600;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.tw-background-color-accent-hover {
|
|
612
|
+
@apply tw-bg-wintermelon-700;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.tw-background-color-accent-pressed {
|
|
616
|
+
@apply tw-bg-wintermelon-800;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.tw-background-color-accent-weak {
|
|
620
|
+
@apply tw-bg-wintermelon-100;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.tw-background-color-danger-base {
|
|
624
|
+
@apply tw-bg-tomato-600;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.tw-background-color-danger-hover {
|
|
628
|
+
@apply tw-bg-tomato-700;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.tw-background-color-danger-pressed {
|
|
632
|
+
@apply tw-bg-tomato-800;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.tw-background-color-danger-weak {
|
|
636
|
+
@apply tw-bg-tomato-100;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.tw-switch-background-default {
|
|
640
|
+
@apply tw-bg-mushroom-200;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.tw-switch-background-hover {
|
|
644
|
+
@apply tw-bg-mushroom-300;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.tw-switch-background-pressed {
|
|
648
|
+
@apply tw-bg-mushroom-400;
|
|
649
|
+
}
|
|
650
|
+
/* #endregion - Background Colors */
|
|
651
|
+
|
|
652
|
+
/* #region - Border Colors */
|
|
653
|
+
.tw-border-color-strong {
|
|
654
|
+
@apply tw-border-mushroom-500;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.tw-border-color-supporting {
|
|
658
|
+
@apply tw-border-mushroom-400;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.tw-border-color-base {
|
|
662
|
+
@apply tw-border-mushroom-300;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.tw-border-color-hover {
|
|
666
|
+
@apply tw-border-mushroom-400;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.tw-border-color-pressed {
|
|
670
|
+
@apply tw-border-mushroom-500;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.tw-border-color-weak {
|
|
674
|
+
@apply tw-border-mushroom-200;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.tw-border-color-disabled {
|
|
678
|
+
@apply tw-border-white-100;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.tw-border-color-on-fill-disabled {
|
|
682
|
+
@apply tw-border-white-200;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.tw-border-color-brand-base {
|
|
686
|
+
@apply tw-border-kangkong-700;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.tw-border-color-brand-hover {
|
|
690
|
+
@apply tw-border-kangkong-800;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.tw-border-color-brand-pressed {
|
|
694
|
+
@apply tw-border-kangkong-900;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.tw-border-color-success-base {
|
|
698
|
+
@apply tw-border-kangkong-700;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.tw-border-color-success-hover {
|
|
702
|
+
@apply tw-border-kangkong-800;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.tw-border-color-success-pressed {
|
|
706
|
+
@apply tw-border-kangkong-900;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.tw-border-color-information-base {
|
|
710
|
+
@apply tw-border-blueberry-700;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.tw-border-color-information-hover {
|
|
714
|
+
@apply tw-border-blueberry-800;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.tw-border-color-information-pressed {
|
|
718
|
+
@apply tw-border-blueberry-900;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.tw-border-color-danger-base {
|
|
722
|
+
@apply tw-border-tomato-600;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.tw-border-color-danger-hover {
|
|
726
|
+
@apply tw-border-tomato-700;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.tw-border-color-danger-pressed {
|
|
730
|
+
@apply tw-border-tomato-800;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.tw-border-color-pending-base {
|
|
734
|
+
@apply tw-border-mango-700;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.tw-border-color-pending-hover {
|
|
738
|
+
@apply tw-border-mango-800;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.tw-border-color-pending-pressed {
|
|
742
|
+
@apply tw-border-mango-900;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.tw-border-color-caution-base {
|
|
746
|
+
@apply tw-border-carrot-700;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.tw-border-color-caution-hover {
|
|
750
|
+
@apply tw-border-carrot-800;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.tw-border-color-caution-pressed {
|
|
754
|
+
@apply tw-border-carrot-900;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.tw-border-color-accent-base {
|
|
758
|
+
@apply tw-border-wintermelon-700;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.tw-border-color-accent-hover {
|
|
762
|
+
@apply tw-border-wintermelon-800;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.tw-border-color-accent-pressed {
|
|
766
|
+
@apply tw-border-wintermelon-900;
|
|
767
|
+
}
|
|
768
|
+
/* #endregion - Border Colors */
|
|
769
|
+
|
|
770
|
+
/* #region - Box Shadows */
|
|
771
|
+
.drop-shadow-sm {
|
|
772
|
+
@apply tw-shadow-drop-sm;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.drop-shadow {
|
|
776
|
+
@apply tw-shadow-drop;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.drop-shadow-md {
|
|
780
|
+
@apply tw-shadow-drop-md;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.drop-shadow-top-sm {
|
|
784
|
+
@apply tw-shadow-drop-top-sm;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.drop-shadow-top {
|
|
788
|
+
@apply tw-shadow-drop-top;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.drop-shadow-top-md {
|
|
792
|
+
@apply tw-shadow-drop-top-md;
|
|
793
|
+
}
|
|
794
|
+
/* #endregion - Box Shadows */
|
|
795
|
+
}
|