tharaday 0.7.3 → 0.7.4
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/ds.css +1 -1
- package/dist/ds.js +20 -20
- package/dist/ds.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/Checkbox/Checkbox.module.css +1 -0
- package/src/components/Tooltip/Tooltip.module.css +6 -6
- package/src/styles/ds.css +14 -9
- package/src/styles/palette.css +71 -0
- package/src/styles/themes/dark.css +35 -35
- package/src/styles/themes/light.css +35 -35
- package/src/styles/themes/retro-dark.css +35 -35
- package/src/styles/themes/retro-light.css +35 -35
- package/src/styles/themes/retro-palette.css +85 -0
- package/src/styles/themes/sanzo-152-dark.css +35 -35
- package/src/styles/themes/sanzo-152-light.css +35 -35
- package/src/styles/themes/sanzo-152-palette.css +66 -0
- package/src/styles/tokens.css +7 -232
- package/src/styles/semantic.css +0 -59
package/src/styles/tokens.css
CHANGED
|
@@ -1,227 +1,4 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
/* Primary palette */
|
|
3
|
-
--grey: #72727a;
|
|
4
|
-
--blue: #637ab3;
|
|
5
|
-
--green: #64af76;
|
|
6
|
-
--red: #d55a5a;
|
|
7
|
-
--orange: #bf914f;
|
|
8
|
-
--neutral-0: #ffffff;
|
|
9
|
-
--neutral-50: #fafafa;
|
|
10
|
-
--neutral-100: #f5f5f5;
|
|
11
|
-
--neutral-200: #eeeeee;
|
|
12
|
-
--neutral-300: #e0e0e0;
|
|
13
|
-
--neutral-400: #a5a5ae; /* Brighter: from #9ca3af */
|
|
14
|
-
--neutral-500: #7b7b85; /* Brighter: from #6b7280 */
|
|
15
|
-
--neutral-600: #63636e; /* Brighter: from #4b5563 */
|
|
16
|
-
--neutral-700: #424249; /* Brighter: from #374151 */
|
|
17
|
-
--neutral-800: #323237; /* Brighter: from #1f2937 */
|
|
18
|
-
--neutral-900: #242429; /* Brighter: from #111827 */
|
|
19
|
-
--neutral-950: #09090b; /* Brighter: from #030712 */
|
|
20
|
-
|
|
21
|
-
/* Info / Primary (Blue) */
|
|
22
|
-
--blue-50: color-mix(in srgb, var(--blue) 10%, #ffffff);
|
|
23
|
-
--blue-100: color-mix(in srgb, var(--blue) 20%, #ffffff);
|
|
24
|
-
--blue-200: color-mix(in srgb, var(--blue) 35%, #ffffff);
|
|
25
|
-
--blue-300: color-mix(in srgb, var(--blue) 55%, #ffffff);
|
|
26
|
-
--blue-400: color-mix(in srgb, var(--blue) 75%, #ffffff);
|
|
27
|
-
--blue-500: var(--blue);
|
|
28
|
-
--blue-600: color-mix(in srgb, var(--blue) 85%, #000000);
|
|
29
|
-
--blue-700: color-mix(in srgb, var(--blue) 70%, #000000);
|
|
30
|
-
--blue-800: color-mix(in srgb, var(--blue) 55%, #000000);
|
|
31
|
-
--blue-900: color-mix(in srgb, var(--blue) 40%, #000000);
|
|
32
|
-
--blue-950: color-mix(in srgb, var(--blue) 25%, #000000);
|
|
33
|
-
|
|
34
|
-
/* Success (Green) */
|
|
35
|
-
--green-50: color-mix(in srgb, var(--green) 10%, #ffffff);
|
|
36
|
-
--green-100: color-mix(in srgb, var(--green) 20%, #ffffff);
|
|
37
|
-
--green-200: color-mix(in srgb, var(--green) 35%, #ffffff);
|
|
38
|
-
--green-300: color-mix(in srgb, var(--green) 55%, #ffffff);
|
|
39
|
-
--green-400: color-mix(in srgb, var(--green) 75%, #ffffff);
|
|
40
|
-
--green-500: var(--green);
|
|
41
|
-
--green-600: color-mix(in srgb, var(--green) 85%, #000000);
|
|
42
|
-
--green-700: color-mix(in srgb, var(--green) 70%, #000000);
|
|
43
|
-
--green-800: color-mix(in srgb, var(--green) 55%, #000000);
|
|
44
|
-
--green-900: color-mix(in srgb, var(--green) 40%, #000000);
|
|
45
|
-
--green-950: color-mix(in srgb, var(--green) 25%, #000000);
|
|
46
|
-
|
|
47
|
-
/* Danger (Red) */
|
|
48
|
-
--red-50: color-mix(in srgb, var(--red) 10%, #ffffff);
|
|
49
|
-
--red-100: color-mix(in srgb, var(--red) 20%, #ffffff);
|
|
50
|
-
--red-200: color-mix(in srgb, var(--red) 35%, #ffffff);
|
|
51
|
-
--red-300: color-mix(in srgb, var(--red) 55%, #ffffff);
|
|
52
|
-
--red-400: color-mix(in srgb, var(--red) 75%, #ffffff);
|
|
53
|
-
--red-500: var(--red);
|
|
54
|
-
--red-600: color-mix(in srgb, var(--red) 85%, #000000);
|
|
55
|
-
--red-700: color-mix(in srgb, var(--red) 70%, #000000);
|
|
56
|
-
--red-800: color-mix(in srgb, var(--red) 55%, #000000);
|
|
57
|
-
--red-900: color-mix(in srgb, var(--red) 40%, #000000);
|
|
58
|
-
--red-950: color-mix(in srgb, var(--red) 25%, #000000);
|
|
59
|
-
|
|
60
|
-
/* Warning (Amber/Orange) */
|
|
61
|
-
--orange-50: color-mix(in srgb, var(--orange) 10%, #ffffff);
|
|
62
|
-
--orange-100: color-mix(in srgb, var(--orange) 20%, #ffffff);
|
|
63
|
-
--orange-200: color-mix(in srgb, var(--orange) 35%, #ffffff);
|
|
64
|
-
--orange-300: color-mix(in srgb, var(--orange) 55%, #ffffff);
|
|
65
|
-
--orange-400: color-mix(in srgb, var(--orange) 75%, #ffffff);
|
|
66
|
-
--orange-500: var(--orange);
|
|
67
|
-
--orange-600: color-mix(in srgb, var(--orange) 85%, #000000);
|
|
68
|
-
--orange-700: color-mix(in srgb, var(--orange) 70%, #000000);
|
|
69
|
-
--orange-800: color-mix(in srgb, var(--orange) 55%, #000000);
|
|
70
|
-
--orange-900: color-mix(in srgb, var(--orange) 40%, #000000);
|
|
71
|
-
--orange-950: color-mix(in srgb, var(--orange) 25%, #000000);
|
|
72
|
-
|
|
73
|
-
/* Retro palette */
|
|
74
|
-
--retro-yellow: #faca78;
|
|
75
|
-
--retro-orange: #f48028;
|
|
76
|
-
--retro-red: #dd5544;
|
|
77
|
-
--retro-brown: #7f5344;
|
|
78
|
-
--retro-teal: #68c7c1;
|
|
79
|
-
--retro-green: #787c54;
|
|
80
|
-
--retro-gray-50: #f7f7f5;
|
|
81
|
-
--retro-gray-100: #e3e3dc;
|
|
82
|
-
--retro-gray-200: #cfcfc5;
|
|
83
|
-
--retro-gray-300: #b9b9ae;
|
|
84
|
-
--retro-gray-400: #a3a398;
|
|
85
|
-
--retro-gray-500: #8d8d82;
|
|
86
|
-
--retro-gray-600: #717168;
|
|
87
|
-
--retro-gray-700: #56564f;
|
|
88
|
-
--retro-gray-800: #3c3c37;
|
|
89
|
-
--retro-gray-900: #21211e;
|
|
90
|
-
|
|
91
|
-
/* Retro scales */
|
|
92
|
-
--retro-yellow-50: color-mix(in srgb, var(--retro-yellow) 10%, #ffffff);
|
|
93
|
-
--retro-yellow-100: color-mix(in srgb, var(--retro-yellow) 20%, #ffffff);
|
|
94
|
-
--retro-yellow-200: color-mix(in srgb, var(--retro-yellow) 35%, #ffffff);
|
|
95
|
-
--retro-yellow-300: color-mix(in srgb, var(--retro-yellow) 55%, #ffffff);
|
|
96
|
-
--retro-yellow-400: color-mix(in srgb, var(--retro-yellow) 75%, #ffffff);
|
|
97
|
-
--retro-yellow-500: var(--retro-yellow);
|
|
98
|
-
--retro-yellow-600: color-mix(in srgb, var(--retro-yellow) 85%, #000000);
|
|
99
|
-
--retro-yellow-700: color-mix(in srgb, var(--retro-yellow) 70%, #000000);
|
|
100
|
-
--retro-yellow-800: color-mix(in srgb, var(--retro-yellow) 55%, #000000);
|
|
101
|
-
--retro-yellow-900: color-mix(in srgb, var(--retro-yellow) 40%, #000000);
|
|
102
|
-
|
|
103
|
-
--retro-orange-50: color-mix(in srgb, var(--retro-orange) 10%, #ffffff);
|
|
104
|
-
--retro-orange-100: color-mix(in srgb, var(--retro-orange) 20%, #ffffff);
|
|
105
|
-
--retro-orange-200: color-mix(in srgb, var(--retro-orange) 35%, #ffffff);
|
|
106
|
-
--retro-orange-300: color-mix(in srgb, var(--retro-orange) 55%, #ffffff);
|
|
107
|
-
--retro-orange-400: color-mix(in srgb, var(--retro-orange) 75%, #ffffff);
|
|
108
|
-
--retro-orange-500: var(--retro-orange);
|
|
109
|
-
--retro-orange-600: color-mix(in srgb, var(--retro-orange) 85%, #000000);
|
|
110
|
-
--retro-orange-700: color-mix(in srgb, var(--retro-orange) 70%, #000000);
|
|
111
|
-
--retro-orange-800: color-mix(in srgb, var(--retro-orange) 55%, #000000);
|
|
112
|
-
--retro-orange-900: color-mix(in srgb, var(--retro-orange) 40%, #000000);
|
|
113
|
-
|
|
114
|
-
--retro-brown-50: color-mix(in srgb, var(--retro-brown) 10%, #ffffff);
|
|
115
|
-
--retro-brown-100: color-mix(in srgb, var(--retro-brown) 20%, #ffffff);
|
|
116
|
-
--retro-brown-200: color-mix(in srgb, var(--retro-brown) 35%, #ffffff);
|
|
117
|
-
--retro-brown-300: color-mix(in srgb, var(--retro-brown) 55%, #ffffff);
|
|
118
|
-
--retro-brown-400: color-mix(in srgb, var(--retro-brown) 75%, #ffffff);
|
|
119
|
-
--retro-brown-500: var(--retro-brown);
|
|
120
|
-
--retro-brown-600: color-mix(in srgb, var(--retro-brown) 85%, #000000);
|
|
121
|
-
--retro-brown-700: color-mix(in srgb, var(--retro-brown) 70%, #000000);
|
|
122
|
-
--retro-brown-800: color-mix(in srgb, var(--retro-brown) 55%, #000000);
|
|
123
|
-
--retro-brown-900: color-mix(in srgb, var(--retro-brown) 40%, #000000);
|
|
124
|
-
|
|
125
|
-
--retro-teal-50: color-mix(in srgb, var(--retro-teal) 10%, #ffffff);
|
|
126
|
-
--retro-teal-100: color-mix(in srgb, var(--retro-teal) 20%, #ffffff);
|
|
127
|
-
--retro-teal-200: color-mix(in srgb, var(--retro-teal) 35%, #ffffff);
|
|
128
|
-
--retro-teal-300: color-mix(in srgb, var(--retro-teal) 55%, #ffffff);
|
|
129
|
-
--retro-teal-400: color-mix(in srgb, var(--retro-teal) 75%, #ffffff);
|
|
130
|
-
--retro-teal-500: var(--retro-teal);
|
|
131
|
-
--retro-teal-600: color-mix(in srgb, var(--retro-teal) 85%, #000000);
|
|
132
|
-
--retro-teal-700: color-mix(in srgb, var(--retro-teal) 70%, #000000);
|
|
133
|
-
--retro-teal-800: color-mix(in srgb, var(--retro-teal) 55%, #000000);
|
|
134
|
-
--retro-teal-900: color-mix(in srgb, var(--retro-teal) 40%, #000000);
|
|
135
|
-
|
|
136
|
-
--retro-green-50: color-mix(in srgb, var(--retro-green) 10%, #ffffff);
|
|
137
|
-
--retro-green-100: color-mix(in srgb, var(--retro-green) 20%, #ffffff);
|
|
138
|
-
--retro-green-200: color-mix(in srgb, var(--retro-green) 35%, #ffffff);
|
|
139
|
-
--retro-green-300: color-mix(in srgb, var(--retro-green) 55%, #ffffff);
|
|
140
|
-
--retro-green-400: color-mix(in srgb, var(--retro-green) 75%, #ffffff);
|
|
141
|
-
--retro-green-500: var(--retro-green);
|
|
142
|
-
--retro-green-600: color-mix(in srgb, var(--retro-green) 85%, #000000);
|
|
143
|
-
--retro-green-700: color-mix(in srgb, var(--retro-green) 70%, #000000);
|
|
144
|
-
--retro-green-800: color-mix(in srgb, var(--retro-green) 55%, #000000);
|
|
145
|
-
--retro-green-900: color-mix(in srgb, var(--retro-green) 40%, #000000);
|
|
146
|
-
|
|
147
|
-
--retro-red-50: color-mix(in srgb, var(--retro-red) 10%, #ffffff);
|
|
148
|
-
--retro-red-100: color-mix(in srgb, var(--retro-red) 20%, #ffffff);
|
|
149
|
-
--retro-red-200: color-mix(in srgb, var(--retro-red) 35%, #ffffff);
|
|
150
|
-
--retro-red-300: color-mix(in srgb, var(--retro-red) 55%, #ffffff);
|
|
151
|
-
--retro-red-400: color-mix(in srgb, var(--retro-red) 75%, #ffffff);
|
|
152
|
-
--retro-red-500: var(--retro-red);
|
|
153
|
-
--retro-red-600: color-mix(in srgb, var(--retro-red) 85%, #000000);
|
|
154
|
-
--retro-red-700: color-mix(in srgb, var(--retro-red) 70%, #000000);
|
|
155
|
-
--retro-red-800: color-mix(in srgb, var(--retro-red) 55%, #000000);
|
|
156
|
-
--retro-red-900: color-mix(in srgb, var(--retro-red) 40%, #000000);
|
|
157
|
-
|
|
158
|
-
/* Sanzo-152 palette */
|
|
159
|
-
--sanzo-rose: #a0585e;
|
|
160
|
-
--sanzo-mauve: #ab6469;
|
|
161
|
-
--sanzo-sand: #baa28f;
|
|
162
|
-
--sanzo-blue-pale: #889caa;
|
|
163
|
-
--sanzo-blue-dark: #1f3f66;
|
|
164
|
-
--sanzo-blue-grayish: #4c5f6e;
|
|
165
|
-
--sanzo-ochre: #a97b01;
|
|
166
|
-
--sanzo-teal: #2f4a3a;
|
|
167
|
-
--sanzo-brown: #351d0b;
|
|
168
|
-
|
|
169
|
-
/* Sanzo-152 scales (for stateful UI usage) */
|
|
170
|
-
--sanzo-rose-50: color-mix(in srgb, var(--sanzo-rose) 30%, #ffffff);
|
|
171
|
-
--sanzo-rose-100: color-mix(in srgb, var(--sanzo-rose) 45%, #ffffff);
|
|
172
|
-
--sanzo-rose-200: color-mix(in srgb, var(--sanzo-rose) 60%, #ffffff);
|
|
173
|
-
--sanzo-rose-300: color-mix(in srgb, var(--sanzo-rose) 70%, #ffffff);
|
|
174
|
-
--sanzo-rose-400: color-mix(in srgb, var(--sanzo-rose) 85%, #ffffff);
|
|
175
|
-
--sanzo-rose-500: var(--sanzo-rose);
|
|
176
|
-
--sanzo-rose-600: color-mix(in srgb, var(--sanzo-rose) 80%, #000000);
|
|
177
|
-
--sanzo-rose-700: color-mix(in srgb, var(--sanzo-rose) 65%, #000000);
|
|
178
|
-
--sanzo-rose-800: color-mix(in srgb, var(--sanzo-rose) 50%, #000000);
|
|
179
|
-
--sanzo-rose-900: color-mix(in srgb, var(--sanzo-rose) 35%, #000000);
|
|
180
|
-
|
|
181
|
-
--sanzo-sand-50: color-mix(in srgb, var(--sanzo-sand) 30%, #ffffff);
|
|
182
|
-
--sanzo-sand-100: color-mix(in srgb, var(--sanzo-sand) 40%, #ffffff);
|
|
183
|
-
--sanzo-sand-200: color-mix(in srgb, var(--sanzo-sand) 50%, #ffffff);
|
|
184
|
-
--sanzo-sand-300: color-mix(in srgb, var(--sanzo-sand) 65%, #ffffff);
|
|
185
|
-
--sanzo-sand-400: color-mix(in srgb, var(--sanzo-sand) 80%, #ffffff);
|
|
186
|
-
--sanzo-sand-500: var(--sanzo-sand);
|
|
187
|
-
--sanzo-sand-600: color-mix(in srgb, var(--sanzo-sand) 75%, #000000);
|
|
188
|
-
--sanzo-sand-700: color-mix(in srgb, var(--sanzo-sand) 65%, #000000);
|
|
189
|
-
--sanzo-sand-800: color-mix(in srgb, var(--sanzo-sand) 50%, #000000);
|
|
190
|
-
--sanzo-sand-900: color-mix(in srgb, var(--sanzo-sand) 30%, #000000);
|
|
191
|
-
|
|
192
|
-
--sanzo-ochre-50: color-mix(in srgb, var(--sanzo-ochre) 30%, #ffffff);
|
|
193
|
-
--sanzo-ochre-100: color-mix(in srgb, var(--sanzo-ochre) 50%, #ffffff);
|
|
194
|
-
--sanzo-ochre-200: color-mix(in srgb, var(--sanzo-ochre) 60%, #ffffff);
|
|
195
|
-
--sanzo-ochre-300: color-mix(in srgb, var(--sanzo-ochre) 70%, #ffffff);
|
|
196
|
-
--sanzo-ochre-400: color-mix(in srgb, var(--sanzo-ochre) 80%, #ffffff);
|
|
197
|
-
--sanzo-ochre-500: var(--sanzo-ochre);
|
|
198
|
-
--sanzo-ochre-600: color-mix(in srgb, var(--sanzo-ochre) 75%, #000000);
|
|
199
|
-
--sanzo-ochre-700: color-mix(in srgb, var(--sanzo-ochre) 55%, #000000);
|
|
200
|
-
--sanzo-ochre-800: color-mix(in srgb, var(--sanzo-ochre) 40%, #000000);
|
|
201
|
-
--sanzo-ochre-900: color-mix(in srgb, var(--sanzo-ochre) 25%, #000000);
|
|
202
|
-
|
|
203
|
-
--sanzo-blue-dark-50: color-mix(in srgb, var(--sanzo-blue-dark) 50%, #ffffff);
|
|
204
|
-
--sanzo-blue-dark-100: color-mix(in srgb, var(--sanzo-blue-dark) 60%, #ffffff);
|
|
205
|
-
--sanzo-blue-dark-200: color-mix(in srgb, var(--sanzo-blue-dark) 70%, #ffffff);
|
|
206
|
-
--sanzo-blue-dark-300: color-mix(in srgb, var(--sanzo-blue-dark) 80%, #ffffff);
|
|
207
|
-
--sanzo-blue-dark-400: color-mix(in srgb, var(--sanzo-blue-dark) 90%, #ffffff);
|
|
208
|
-
--sanzo-blue-dark-500: var(--sanzo-blue-dark);
|
|
209
|
-
--sanzo-blue-dark-600: color-mix(in srgb, var(--sanzo-blue-dark) 88%, #000000);
|
|
210
|
-
--sanzo-blue-dark-700: color-mix(in srgb, var(--sanzo-blue-dark) 76%, #000000);
|
|
211
|
-
--sanzo-blue-dark-800: color-mix(in srgb, var(--sanzo-blue-dark) 64%, #000000);
|
|
212
|
-
--sanzo-blue-dark-900: color-mix(in srgb, var(--sanzo-blue-dark) 52%, #000000);
|
|
213
|
-
|
|
214
|
-
--sanzo-teal-50: color-mix(in srgb, var(--sanzo-teal) 25%, #ffffff);
|
|
215
|
-
--sanzo-teal-100: color-mix(in srgb, var(--sanzo-teal) 40%, #ffffff);
|
|
216
|
-
--sanzo-teal-200: color-mix(in srgb, var(--sanzo-teal) 55%, #ffffff);
|
|
217
|
-
--sanzo-teal-300: color-mix(in srgb, var(--sanzo-teal) 70%, #ffffff);
|
|
218
|
-
--sanzo-teal-400: color-mix(in srgb, var(--sanzo-teal) 85%, #ffffff);
|
|
219
|
-
--sanzo-teal-500: var(--sanzo-teal);
|
|
220
|
-
--sanzo-teal-600: color-mix(in srgb, var(--sanzo-teal) 85%, #000000);
|
|
221
|
-
--sanzo-teal-700: color-mix(in srgb, var(--sanzo-teal) 70%, #000000);
|
|
222
|
-
--sanzo-teal-800: color-mix(in srgb, var(--sanzo-teal) 55%, #000000);
|
|
223
|
-
--sanzo-teal-900: color-mix(in srgb, var(--sanzo-teal) 40%, #000000);
|
|
224
|
-
|
|
225
2
|
/* --- TYPOGRAPHY SCALE --- */
|
|
226
3
|
|
|
227
4
|
--ds-font-family-base:
|
|
@@ -260,11 +37,11 @@
|
|
|
260
37
|
|
|
261
38
|
/* --- CONTENT WIDTH SCALE --- */
|
|
262
39
|
|
|
263
|
-
--ds-content-width-sm: 25rem; /* 400px
|
|
264
|
-
--ds-content-width-md: 37.5rem; /* 600px
|
|
265
|
-
--ds-content-width-lg: 50rem; /* 800px
|
|
266
|
-
--ds-content-width-xl: 62.5rem; /* 1000px
|
|
267
|
-
--ds-content-width-2xl: 75rem; /* 1200px
|
|
40
|
+
--ds-content-width-sm: 25rem; /* 400px */
|
|
41
|
+
--ds-content-width-md: 37.5rem; /* 600px */
|
|
42
|
+
--ds-content-width-lg: 50rem; /* 800px */
|
|
43
|
+
--ds-content-width-xl: 62.5rem; /* 1000px */
|
|
44
|
+
--ds-content-width-2xl: 75rem; /* 1200px */
|
|
268
45
|
|
|
269
46
|
/* --- BORDERS & SHADOWS --- */
|
|
270
47
|
|
|
@@ -280,11 +57,9 @@
|
|
|
280
57
|
--ds-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
281
58
|
--ds-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
282
59
|
|
|
283
|
-
/* ---
|
|
284
|
-
|
|
285
|
-
--ds-checkbox-size: 1.125rem; /* 18px — checkbox and radio control box */
|
|
60
|
+
/* --- OVERLAY & ANIMATION --- */
|
|
286
61
|
|
|
287
|
-
|
|
62
|
+
--ds-overlay: rgba(0, 0, 0, 0.5);
|
|
288
63
|
|
|
289
64
|
--ds-transition-fast: 150ms ease;
|
|
290
65
|
--ds-transition-base: 250ms ease;
|
package/src/styles/semantic.css
DELETED
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
/* Surfaces */
|
|
3
|
-
--ds-surface-0: var(--ds-ref-surface-0);
|
|
4
|
-
--ds-surface-1: var(--ds-ref-surface-1);
|
|
5
|
-
--ds-surface-2: var(--ds-ref-surface-2);
|
|
6
|
-
|
|
7
|
-
/* Text */
|
|
8
|
-
--ds-text-1: var(--ds-ref-text-1);
|
|
9
|
-
--ds-text-2: var(--ds-ref-text-2);
|
|
10
|
-
--ds-text-on-brand: var(--ds-ref-text-on-brand);
|
|
11
|
-
--ds-text-disabled: var(--ds-ref-text-disabled);
|
|
12
|
-
|
|
13
|
-
/* Borders */
|
|
14
|
-
--ds-border-1: var(--ds-ref-border-1);
|
|
15
|
-
--ds-border-2: var(--ds-ref-border-2);
|
|
16
|
-
--ds-border-disabled: var(--ds-ref-border-disabled);
|
|
17
|
-
|
|
18
|
-
/* Focus */
|
|
19
|
-
--ds-ring: var(--ds-ref-ring);
|
|
20
|
-
--ds-ring-offset: var(--ds-ref-ring-offset);
|
|
21
|
-
|
|
22
|
-
/* Intents */
|
|
23
|
-
--ds-info: var(--ds-ref-info);
|
|
24
|
-
--ds-success: var(--ds-ref-success);
|
|
25
|
-
--ds-warning: var(--ds-ref-warning);
|
|
26
|
-
--ds-danger: var(--ds-ref-danger);
|
|
27
|
-
--ds-neutral: var(--ds-ref-neutral);
|
|
28
|
-
|
|
29
|
-
--ds-info-hover: var(--ds-ref-info-hover);
|
|
30
|
-
--ds-info-active: var(--ds-ref-info-active);
|
|
31
|
-
--ds-info-subtle: var(--ds-ref-info-subtle);
|
|
32
|
-
|
|
33
|
-
--ds-success-hover: var(--ds-ref-success-hover);
|
|
34
|
-
--ds-success-active: var(--ds-ref-success-active);
|
|
35
|
-
--ds-success-subtle: var(--ds-ref-success-subtle);
|
|
36
|
-
|
|
37
|
-
--ds-warning-hover: var(--ds-ref-warning-hover);
|
|
38
|
-
--ds-warning-active: var(--ds-ref-warning-active);
|
|
39
|
-
--ds-warning-subtle: var(--ds-ref-warning-subtle);
|
|
40
|
-
|
|
41
|
-
--ds-danger-hover: var(--ds-ref-danger-hover);
|
|
42
|
-
--ds-danger-active: var(--ds-ref-danger-active);
|
|
43
|
-
--ds-danger-subtle: var(--ds-ref-danger-subtle);
|
|
44
|
-
|
|
45
|
-
--ds-neutral-hover: var(--ds-ref-neutral-hover);
|
|
46
|
-
--ds-neutral-active: var(--ds-ref-neutral-active);
|
|
47
|
-
--ds-neutral-subtle: var(--ds-ref-neutral-subtle);
|
|
48
|
-
|
|
49
|
-
/* Convenience defaults */
|
|
50
|
-
--ds-border-default: var(--ds-border-1);
|
|
51
|
-
--ds-surface-disabled: var(--ds-ref-surface-disabled);
|
|
52
|
-
|
|
53
|
-
/* Overlay */
|
|
54
|
-
--ds-overlay: rgba(0, 0, 0, 0.5);
|
|
55
|
-
|
|
56
|
-
/* Skeleton */
|
|
57
|
-
--ds-skeleton: var(--ds-ref-skeleton);
|
|
58
|
-
--ds-skeleton-highlight: var(--ds-ref-skeleton-highlight);
|
|
59
|
-
}
|