@silknet-ds/tokens 0.1.0
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 +74 -0
- package/dist/tokens.css +716 -0
- package/dist/tokens.dark.css +355 -0
- package/dist/tokens.light.css +355 -0
- package/package.json +39 -0
package/dist/tokens.css
ADDED
|
@@ -0,0 +1,716 @@
|
|
|
1
|
+
/* @silknet-ds/tokens — light + dark theme variables. */
|
|
2
|
+
/* Light theme applies on :root by default. */
|
|
3
|
+
/* Dark theme applies on :root[data-theme="dark"] (or via prefers-color-scheme media query if you wire it). */
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Do not edit directly, this file was auto-generated.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
:root {
|
|
10
|
+
--primary-100: #e7f4fd;
|
|
11
|
+
--primary-200: #cce7fb;
|
|
12
|
+
--primary-300: #99d0f7;
|
|
13
|
+
--primary-400: #66b8f3;
|
|
14
|
+
--primary-500: #33a1ef;
|
|
15
|
+
--primary-600: #0089eb;
|
|
16
|
+
--primary-700: #006ebc;
|
|
17
|
+
--primary-800: #00528d;
|
|
18
|
+
--primary-900: #00375e;
|
|
19
|
+
--primary-950: #001b2f;
|
|
20
|
+
--primary-4: rgba(51, 161, 239, 0.04);
|
|
21
|
+
--primary-8: rgba(51, 161, 239, 0.08);
|
|
22
|
+
--primary-16: rgba(51, 161, 239, 0.16);
|
|
23
|
+
--primary-24: rgba(51, 161, 239, 0.24);
|
|
24
|
+
--primary-32: rgba(51, 161, 239, 0.32);
|
|
25
|
+
--primary-40: rgba(51, 161, 239, 0.4);
|
|
26
|
+
--primary-48: rgba(51, 161, 239, 0.48);
|
|
27
|
+
--grey-100: #f8f9f9;
|
|
28
|
+
--grey-200: #edeff0;
|
|
29
|
+
--grey-300: #e0e3e5;
|
|
30
|
+
--grey-400: #cdd2d6;
|
|
31
|
+
--grey-500: #b0b9bf;
|
|
32
|
+
--grey-600: #8e9aa3;
|
|
33
|
+
--grey-700: #69757e;
|
|
34
|
+
--grey-800: #4b565e;
|
|
35
|
+
--grey-900: #323a3f;
|
|
36
|
+
--grey-950: #1d2327;
|
|
37
|
+
--grey-4: rgba(176, 185, 191, 0.04);
|
|
38
|
+
--grey-8: rgba(176, 185, 191, 0.08);
|
|
39
|
+
--grey-16: rgba(176, 185, 191, 0.16);
|
|
40
|
+
--grey-24: rgba(176, 185, 191, 0.24);
|
|
41
|
+
--grey-32: rgba(176, 185, 191, 0.32);
|
|
42
|
+
--grey-40: rgba(176, 185, 191, 0.4);
|
|
43
|
+
--grey-48: rgba(176, 185, 191, 0.48);
|
|
44
|
+
--green-100: #e4f6ec;
|
|
45
|
+
--green-200: #c6ecd7;
|
|
46
|
+
--green-300: #8ce2b4;
|
|
47
|
+
--green-400: #5dd79a;
|
|
48
|
+
--green-500: #32c980;
|
|
49
|
+
--green-600: #29ae6f;
|
|
50
|
+
--green-700: #218557;
|
|
51
|
+
--green-800: #186a47;
|
|
52
|
+
--green-900: #134c34;
|
|
53
|
+
--green-950: #0e3525;
|
|
54
|
+
--green-4: rgba(50, 201, 128, 0.04);
|
|
55
|
+
--green-8: rgba(50, 201, 128, 0.08);
|
|
56
|
+
--green-16: rgba(50, 201, 128, 0.16);
|
|
57
|
+
--green-24: rgba(50, 201, 128, 0.24);
|
|
58
|
+
--green-32: rgba(50, 201, 128, 0.32);
|
|
59
|
+
--green-40: rgba(50, 201, 128, 0.4);
|
|
60
|
+
--green-48: rgba(50, 201, 128, 0.48);
|
|
61
|
+
--red-100: #fdebec;
|
|
62
|
+
--red-200: #fbd0d3;
|
|
63
|
+
--red-300: #f8a6ad;
|
|
64
|
+
--red-400: #f3747e;
|
|
65
|
+
--red-500: #f5515c;
|
|
66
|
+
--red-600: #db3f49;
|
|
67
|
+
--red-700: #b8323b;
|
|
68
|
+
--red-800: #8f262e;
|
|
69
|
+
--red-900: #661b22;
|
|
70
|
+
--red-950: #3f1015;
|
|
71
|
+
--red-4: rgba(245, 81, 92, 0.04);
|
|
72
|
+
--red-8: rgba(245, 81, 92, 0.08);
|
|
73
|
+
--red-16: rgba(245, 81, 92, 0.16);
|
|
74
|
+
--red-24: rgba(245, 81, 92, 0.24);
|
|
75
|
+
--red-32: rgba(245, 81, 92, 0.32);
|
|
76
|
+
--red-40: rgba(245, 81, 92, 0.4);
|
|
77
|
+
--red-48: rgba(245, 81, 92, 0.48);
|
|
78
|
+
--yellow-100: #fff6e1;
|
|
79
|
+
--yellow-200: #ffe9b8;
|
|
80
|
+
--yellow-300: #ffd980;
|
|
81
|
+
--yellow-400: #ffc84a;
|
|
82
|
+
--yellow-500: #ffb714;
|
|
83
|
+
--yellow-600: #e59f00;
|
|
84
|
+
--yellow-700: #bf8200;
|
|
85
|
+
--yellow-800: #996600;
|
|
86
|
+
--yellow-900: #734c00;
|
|
87
|
+
--yellow-950: #4d3300;
|
|
88
|
+
--yellow-4: rgba(255, 183, 20, 0.04);
|
|
89
|
+
--yellow-8: rgba(255, 183, 20, 0.08);
|
|
90
|
+
--yellow-16: rgba(255, 183, 20, 0.16);
|
|
91
|
+
--yellow-24: rgba(255, 183, 20, 0.24);
|
|
92
|
+
--yellow-32: rgba(255, 183, 20, 0.32);
|
|
93
|
+
--yellow-40: rgba(255, 183, 20, 0.4);
|
|
94
|
+
--yellow-48: rgba(255, 183, 20, 0.48);
|
|
95
|
+
--blue-100: #e9f6fc;
|
|
96
|
+
--blue-200: #d2ecf9;
|
|
97
|
+
--blue-300: #aeddf4;
|
|
98
|
+
--blue-400: #81caef;
|
|
99
|
+
--blue-500: #3daee6;
|
|
100
|
+
--blue-600: #2597d0;
|
|
101
|
+
--blue-700: #1c7fb0;
|
|
102
|
+
--blue-800: #1b6e98;
|
|
103
|
+
--blue-900: #134e6c;
|
|
104
|
+
--blue-950: #0f3f57;
|
|
105
|
+
--blue-4: rgba(61, 174, 230, 0.04);
|
|
106
|
+
--blue-8: rgba(61, 174, 230, 0.08);
|
|
107
|
+
--blue-16: rgba(61, 174, 230, 0.16);
|
|
108
|
+
--blue-24: rgba(61, 174, 230, 0.24);
|
|
109
|
+
--blue-32: rgba(61, 174, 230, 0.32);
|
|
110
|
+
--blue-40: rgba(61, 174, 230, 0.4);
|
|
111
|
+
--blue-48: rgba(61, 174, 230, 0.48);
|
|
112
|
+
--orange-100: #fdece3;
|
|
113
|
+
--orange-200: #fbdbcb;
|
|
114
|
+
--orange-300: #f8bda0;
|
|
115
|
+
--orange-400: #f69a6c;
|
|
116
|
+
--orange-500: #f07436;
|
|
117
|
+
--orange-600: #e15c19;
|
|
118
|
+
--orange-700: #aa4418;
|
|
119
|
+
--orange-800: #7d3212;
|
|
120
|
+
--orange-900: #59240d;
|
|
121
|
+
--orange-950: #3e1909;
|
|
122
|
+
--orange-4: rgba(240, 116, 54, 0.04);
|
|
123
|
+
--orange-8: rgba(240, 116, 54, 0.08);
|
|
124
|
+
--orange-16: rgba(240, 116, 54, 0.16);
|
|
125
|
+
--orange-24: rgba(240, 116, 54, 0.24);
|
|
126
|
+
--orange-32: rgba(240, 116, 54, 0.32);
|
|
127
|
+
--orange-40: rgba(240, 116, 54, 0.4);
|
|
128
|
+
--orange-48: rgba(240, 116, 54, 0.48);
|
|
129
|
+
--purple-100: #efe9fc;
|
|
130
|
+
--purple-200: #d9cafa;
|
|
131
|
+
--purple-300: #bea8f7;
|
|
132
|
+
--purple-400: #a986f4;
|
|
133
|
+
--purple-500: #9364f1;
|
|
134
|
+
--purple-600: #7743de;
|
|
135
|
+
--purple-700: #5b29bf;
|
|
136
|
+
--purple-800: #461f94;
|
|
137
|
+
--purple-900: #2f1669;
|
|
138
|
+
--purple-950: #210f48;
|
|
139
|
+
--purple-4: rgba(147, 100, 241, 0.04);
|
|
140
|
+
--purple-8: rgba(147, 100, 241, 0.08);
|
|
141
|
+
--purple-16: rgba(147, 100, 241, 0.16);
|
|
142
|
+
--purple-24: rgba(147, 100, 241, 0.24);
|
|
143
|
+
--purple-32: rgba(147, 100, 241, 0.32);
|
|
144
|
+
--purple-40: rgba(147, 100, 241, 0.4);
|
|
145
|
+
--purple-48: rgba(147, 100, 241, 0.48);
|
|
146
|
+
--pink-100: #fce9f5;
|
|
147
|
+
--pink-200: #f9cbea;
|
|
148
|
+
--pink-300: #f7a8df;
|
|
149
|
+
--pink-400: #f486cf;
|
|
150
|
+
--pink-500: #f164bd;
|
|
151
|
+
--pink-600: #de43a5;
|
|
152
|
+
--pink-700: #bf2988;
|
|
153
|
+
--pink-800: #941f69;
|
|
154
|
+
--pink-900: #69164a;
|
|
155
|
+
--pink-950: #480f33;
|
|
156
|
+
--pink-4: rgba(241, 100, 189, 0.04);
|
|
157
|
+
--pink-8: rgba(241, 100, 189, 0.08);
|
|
158
|
+
--pink-16: rgba(241, 100, 189, 0.16);
|
|
159
|
+
--pink-24: rgba(241, 100, 189, 0.24);
|
|
160
|
+
--pink-32: rgba(241, 100, 189, 0.32);
|
|
161
|
+
--pink-40: rgba(241, 100, 189, 0.4);
|
|
162
|
+
--pink-48: rgba(241, 100, 189, 0.48);
|
|
163
|
+
--teal-100: #ebfafa;
|
|
164
|
+
--teal-200: #c3efef;
|
|
165
|
+
--teal-300: #96e3e3;
|
|
166
|
+
--teal-400: #6ad7d7;
|
|
167
|
+
--teal-500: #33cccc;
|
|
168
|
+
--teal-600: #27aaaa;
|
|
169
|
+
--teal-700: #168c8c;
|
|
170
|
+
--teal-800: #0f6e6e;
|
|
171
|
+
--teal-900: #0a4d52;
|
|
172
|
+
--teal-950: #053336;
|
|
173
|
+
--teal-4: rgba(51, 204, 204, 0.04);
|
|
174
|
+
--teal-8: rgba(51, 204, 204, 0.08);
|
|
175
|
+
--teal-16: rgba(51, 204, 204, 0.16);
|
|
176
|
+
--teal-24: rgba(51, 204, 204, 0.24);
|
|
177
|
+
--teal-32: rgba(51, 204, 204, 0.32);
|
|
178
|
+
--teal-40: rgba(51, 204, 204, 0.4);
|
|
179
|
+
--teal-48: rgba(51, 204, 204, 0.48);
|
|
180
|
+
--silkfest-100: #ffe3cc;
|
|
181
|
+
--silkfest-200: #ffc799;
|
|
182
|
+
--silkfest-300: #ffab66;
|
|
183
|
+
--silkfest-400: #ff8f33;
|
|
184
|
+
--silkfest-500: #ff7300;
|
|
185
|
+
--silkfest-600: #cc5c00;
|
|
186
|
+
--silkfest-700: #994500;
|
|
187
|
+
--silkfest-800: #662e00;
|
|
188
|
+
--silkfest-900: #4d2300;
|
|
189
|
+
--silkfest-950: #331700;
|
|
190
|
+
--silkfest-4: rgba(255, 115, 0, 0.04);
|
|
191
|
+
--silkfest-8: rgba(255, 115, 0, 0.08);
|
|
192
|
+
--silkfest-16: rgba(255, 115, 0, 0.16);
|
|
193
|
+
--silkfest-24: rgba(255, 115, 0, 0.24);
|
|
194
|
+
--silkfest-32: rgba(255, 115, 0, 0.32);
|
|
195
|
+
--silkfest-40: rgba(255, 115, 0, 0.4);
|
|
196
|
+
--silkfest-48: rgba(255, 115, 0, 0.48);
|
|
197
|
+
--alpha-white-4: rgba(255, 255, 255, 0.04);
|
|
198
|
+
--alpha-white-8: rgba(255, 255, 255, 0.08);
|
|
199
|
+
--alpha-white-12: rgba(255, 255, 255, 0.12);
|
|
200
|
+
--alpha-white-16: rgba(255, 255, 255, 0.16);
|
|
201
|
+
--alpha-white-24: rgba(255, 255, 255, 0.24);
|
|
202
|
+
--alpha-white-32: rgba(255, 255, 255, 0.32);
|
|
203
|
+
--alpha-white-48: rgba(255, 255, 255, 0.48);
|
|
204
|
+
--alpha-white-64: rgba(255, 255, 255, 0.64);
|
|
205
|
+
--alpha-white-80: rgba(255, 255, 255, 0.8);
|
|
206
|
+
--alpha-white-96: rgba(255, 255, 255, 0.96);
|
|
207
|
+
--alpha-white-100: #ffffff;
|
|
208
|
+
--alpha-black-4: rgba(0, 0, 0, 0.04);
|
|
209
|
+
--alpha-black-8: rgba(0, 0, 0, 0.08);
|
|
210
|
+
--alpha-black-12: rgba(0, 0, 0, 0.12);
|
|
211
|
+
--alpha-black-16: rgba(0, 0, 0, 0.16);
|
|
212
|
+
--alpha-black-24: rgba(0, 0, 0, 0.24);
|
|
213
|
+
--alpha-black-32: rgba(0, 0, 0, 0.32);
|
|
214
|
+
--alpha-black-48: rgba(0, 0, 0, 0.48);
|
|
215
|
+
--alpha-black-64: rgba(0, 0, 0, 0.64);
|
|
216
|
+
--alpha-black-80: rgba(0, 0, 0, 0.8);
|
|
217
|
+
--alpha-black-96: rgba(0, 0, 0, 0.96);
|
|
218
|
+
--alpha-black-100: #000000;
|
|
219
|
+
--digits-0: 0px;
|
|
220
|
+
--digits-4: 4px;
|
|
221
|
+
--digits-8: 8px;
|
|
222
|
+
--digits-12: 12px;
|
|
223
|
+
--digits-14: 14px;
|
|
224
|
+
--digits-16: 16px;
|
|
225
|
+
--digits-20: 20px;
|
|
226
|
+
--digits-24: 24px;
|
|
227
|
+
--digits-28: 28px;
|
|
228
|
+
--digits-32: 32px;
|
|
229
|
+
--digits-36: 36px;
|
|
230
|
+
--digits-40: 40px;
|
|
231
|
+
--digits-44: 44px;
|
|
232
|
+
--digits-48: 48px;
|
|
233
|
+
--digits-52: 52px;
|
|
234
|
+
--digits-56: 56px;
|
|
235
|
+
--digits-radius-0: 0px;
|
|
236
|
+
--digits-radius-xxs: 4px;
|
|
237
|
+
--digits-radius-xs: 8px;
|
|
238
|
+
--digits-radius-s: 12px;
|
|
239
|
+
--digits-radius-m: 16px;
|
|
240
|
+
--digits-radius-l: 24px;
|
|
241
|
+
--digits-radius-xl: 32px;
|
|
242
|
+
--digits-radius-xxl: 48px;
|
|
243
|
+
--digits-spacing-0: 0px;
|
|
244
|
+
--digits-spacing-1: 4px;
|
|
245
|
+
--digits-spacing-2: 8px;
|
|
246
|
+
--digits-spacing-3: 12px;
|
|
247
|
+
--digits-spacing-4: 16px;
|
|
248
|
+
--digits-spacing-5: 20px;
|
|
249
|
+
--digits-spacing-6: 24px;
|
|
250
|
+
--digits-spacing-7: 28px;
|
|
251
|
+
--digits-spacing-8: 32px;
|
|
252
|
+
--digits-spacing-9: 36px;
|
|
253
|
+
--digits-spacing-10: 40px;
|
|
254
|
+
--digits-spacing-11: 44px;
|
|
255
|
+
--digits-spacing-12: 48px;
|
|
256
|
+
--digits-spacing-13: 52px;
|
|
257
|
+
--digits-spacing-14: 56px;
|
|
258
|
+
--digits-spacing-3-1: 14px;
|
|
259
|
+
--font-family-family: 'Noto Sans Georgian';
|
|
260
|
+
--font-weight-regular: regular;
|
|
261
|
+
--font-weight-medium: medium;
|
|
262
|
+
--font-weight-semibold: semibold;
|
|
263
|
+
--font-weight-bold: bold;
|
|
264
|
+
--font-size-heading-heading-1: 32px;
|
|
265
|
+
--font-size-heading-heading-2: 28px;
|
|
266
|
+
--font-size-heading-heading-3: 20px;
|
|
267
|
+
--font-size-heading-heading-4: 16px;
|
|
268
|
+
--font-size-heading-display-display: 20px;
|
|
269
|
+
--font-size-subtitle-subtitle-1: 16px;
|
|
270
|
+
--font-size-subtitle-subtitle-2: 14px;
|
|
271
|
+
--font-size-subtitle-subtitle-3: 12px;
|
|
272
|
+
--font-size-body-body-accent: 16px;
|
|
273
|
+
--font-size-body-body-default: 14px;
|
|
274
|
+
--font-size-body-body-additional: 12px;
|
|
275
|
+
--font-size-button-button-default: 14px;
|
|
276
|
+
--font-size-button-button-additional: 12px;
|
|
277
|
+
--font-size-other-caption: 11px;
|
|
278
|
+
--font-size-other-overline: 11px;
|
|
279
|
+
--font-height-heading-heading-1: 48px;
|
|
280
|
+
--font-height-heading-heading-2: 40px;
|
|
281
|
+
--font-height-heading-heading-3: 28px;
|
|
282
|
+
--font-height-heading-heading-4: 24px;
|
|
283
|
+
--font-height-heading-display-display: 28px;
|
|
284
|
+
--font-height-subtitle-subtitle-1: 24px;
|
|
285
|
+
--font-height-subtitle-subtitle-2: 20px;
|
|
286
|
+
--font-height-subtitle-subtitle-3: 16px;
|
|
287
|
+
--font-height-body-body-accent: 24px;
|
|
288
|
+
--font-height-body-body-default: 20px;
|
|
289
|
+
--font-height-body-body-additional: 16px;
|
|
290
|
+
--font-height-button-button-default: 20px;
|
|
291
|
+
--font-height-button-button-additional: 16px;
|
|
292
|
+
--font-height-other-caption: 16px;
|
|
293
|
+
--font-height-other-overline: 12px;
|
|
294
|
+
--text-default: #323a3f;
|
|
295
|
+
--text-secondary: #4b565e;
|
|
296
|
+
--text-additional: #69757e;
|
|
297
|
+
--text-disabled: #e0e3e5;
|
|
298
|
+
--text-contrast: #ffffff;
|
|
299
|
+
--text-primary: #006ebc;
|
|
300
|
+
--text-success: #218557;
|
|
301
|
+
--text-error: #b8323b;
|
|
302
|
+
--text-warrning: #996600;
|
|
303
|
+
--text-info: #1b6e98;
|
|
304
|
+
--text-orange: #aa4418;
|
|
305
|
+
--text-purple: #5b29bf;
|
|
306
|
+
--text-pink: #bf2988;
|
|
307
|
+
--text-teal: #168c8c;
|
|
308
|
+
--text-silkfest: #994500;
|
|
309
|
+
--background-surface: #f8f9f9;
|
|
310
|
+
--background-surface-hover: #edeff0;
|
|
311
|
+
--background-surface-pressed: #e0e3e5;
|
|
312
|
+
--background-layer: #ffffff;
|
|
313
|
+
--background-layer-hover: rgba(0, 0, 0, 0.08);
|
|
314
|
+
--background-layer-pressed: rgba(0, 0, 0, 0.16);
|
|
315
|
+
--background-primary-accent: #0089eb;
|
|
316
|
+
--background-success-accent: #29ae6f;
|
|
317
|
+
--background-error-accent: #db3f49;
|
|
318
|
+
--background-warning-accent: #e59f00;
|
|
319
|
+
--background-info-accent: #2597d0;
|
|
320
|
+
--background-orange-accent: #e15c19;
|
|
321
|
+
--background-purple-accent: #7743de;
|
|
322
|
+
--background-pink-accent: #de43a5;
|
|
323
|
+
--background-teal-accent: #27aaaa;
|
|
324
|
+
--background-silkfest-accent: #cc5c00;
|
|
325
|
+
--background-disabled: #e0e3e5;
|
|
326
|
+
--background-primary: #e7f4fd;
|
|
327
|
+
--background-success: #e4f6ec;
|
|
328
|
+
--background-error: #fdebec;
|
|
329
|
+
--background-warning: #fff6e1;
|
|
330
|
+
--background-info: #e9f6fc;
|
|
331
|
+
--background-orange: #fdece3;
|
|
332
|
+
--background-purple: #efe9fc;
|
|
333
|
+
--background-pink: #fce9f5;
|
|
334
|
+
--background-teal: #ebfafa;
|
|
335
|
+
--background-silkfest: #ffe3cc;
|
|
336
|
+
--background-toggle-default: #edeff0;
|
|
337
|
+
--background-chip-default: #f8f9f9;
|
|
338
|
+
--background-chip-selected: #4b565e;
|
|
339
|
+
--background-primary-soft: rgba(51, 161, 239, 0.08);
|
|
340
|
+
--background-navigation: rgba(255, 255, 255, 0.24);
|
|
341
|
+
--background-input-default: rgba(176, 185, 191, 0.08);
|
|
342
|
+
--background-input-hover: rgba(176, 185, 191, 0.16);
|
|
343
|
+
--background-input-pressed: rgba(176, 185, 191, 0.24);
|
|
344
|
+
--border-default: rgba(176, 185, 191, 0.32);
|
|
345
|
+
--border-subtle: rgba(176, 185, 191, 0.16);
|
|
346
|
+
--border-filled: #69757e;
|
|
347
|
+
--border-primary-focus: #0089eb;
|
|
348
|
+
--border-primary: #cce7fb;
|
|
349
|
+
--border-success: #c6ecd7;
|
|
350
|
+
--border-error: #fbd0d3;
|
|
351
|
+
--border-error-focus: #db3f49;
|
|
352
|
+
--border-warning: #ffe9b8;
|
|
353
|
+
--border-info: #d2ecf9;
|
|
354
|
+
--border-orange: #fbdbcb;
|
|
355
|
+
--border-purple: #d9cafa;
|
|
356
|
+
--border-pink: #f9cbea;
|
|
357
|
+
--border-teal: #c3efef;
|
|
358
|
+
--border-silkfest: #ffc799;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* Do not edit directly, this file was auto-generated.
|
|
364
|
+
*/
|
|
365
|
+
|
|
366
|
+
:root[data-theme="dark"] {
|
|
367
|
+
--primary-100: #e7f4fd;
|
|
368
|
+
--primary-200: #cce7fb;
|
|
369
|
+
--primary-300: #99d0f7;
|
|
370
|
+
--primary-400: #66b8f3;
|
|
371
|
+
--primary-500: #33a1ef;
|
|
372
|
+
--primary-600: #0089eb;
|
|
373
|
+
--primary-700: #006ebc;
|
|
374
|
+
--primary-800: #00528d;
|
|
375
|
+
--primary-900: #00375e;
|
|
376
|
+
--primary-950: #001b2f;
|
|
377
|
+
--primary-4: rgba(51, 161, 239, 0.04);
|
|
378
|
+
--primary-8: rgba(51, 161, 239, 0.08);
|
|
379
|
+
--primary-16: rgba(51, 161, 239, 0.16);
|
|
380
|
+
--primary-24: rgba(51, 161, 239, 0.24);
|
|
381
|
+
--primary-32: rgba(51, 161, 239, 0.32);
|
|
382
|
+
--primary-40: rgba(51, 161, 239, 0.4);
|
|
383
|
+
--primary-48: rgba(51, 161, 239, 0.48);
|
|
384
|
+
--grey-100: #f8f9f9;
|
|
385
|
+
--grey-200: #edeff0;
|
|
386
|
+
--grey-300: #e0e3e5;
|
|
387
|
+
--grey-400: #cdd2d6;
|
|
388
|
+
--grey-500: #b0b9bf;
|
|
389
|
+
--grey-600: #8e9aa3;
|
|
390
|
+
--grey-700: #69757e;
|
|
391
|
+
--grey-800: #4b565e;
|
|
392
|
+
--grey-900: #323a3f;
|
|
393
|
+
--grey-950: #1d2327;
|
|
394
|
+
--grey-4: rgba(176, 185, 191, 0.04);
|
|
395
|
+
--grey-8: rgba(176, 185, 191, 0.08);
|
|
396
|
+
--grey-16: rgba(176, 185, 191, 0.16);
|
|
397
|
+
--grey-24: rgba(176, 185, 191, 0.24);
|
|
398
|
+
--grey-32: rgba(176, 185, 191, 0.32);
|
|
399
|
+
--grey-40: rgba(176, 185, 191, 0.4);
|
|
400
|
+
--grey-48: rgba(176, 185, 191, 0.48);
|
|
401
|
+
--green-100: #e4f6ec;
|
|
402
|
+
--green-200: #c6ecd7;
|
|
403
|
+
--green-300: #8ce2b4;
|
|
404
|
+
--green-400: #5dd79a;
|
|
405
|
+
--green-500: #32c980;
|
|
406
|
+
--green-600: #29ae6f;
|
|
407
|
+
--green-700: #218557;
|
|
408
|
+
--green-800: #186a47;
|
|
409
|
+
--green-900: #134c34;
|
|
410
|
+
--green-950: #0e3525;
|
|
411
|
+
--green-4: rgba(50, 201, 128, 0.04);
|
|
412
|
+
--green-8: rgba(50, 201, 128, 0.08);
|
|
413
|
+
--green-16: rgba(50, 201, 128, 0.16);
|
|
414
|
+
--green-24: rgba(50, 201, 128, 0.24);
|
|
415
|
+
--green-32: rgba(50, 201, 128, 0.32);
|
|
416
|
+
--green-40: rgba(50, 201, 128, 0.4);
|
|
417
|
+
--green-48: rgba(50, 201, 128, 0.48);
|
|
418
|
+
--red-100: #fdebec;
|
|
419
|
+
--red-200: #fbd0d3;
|
|
420
|
+
--red-300: #f8a6ad;
|
|
421
|
+
--red-400: #f3747e;
|
|
422
|
+
--red-500: #f5515c;
|
|
423
|
+
--red-600: #db3f49;
|
|
424
|
+
--red-700: #b8323b;
|
|
425
|
+
--red-800: #8f262e;
|
|
426
|
+
--red-900: #661b22;
|
|
427
|
+
--red-950: #3f1015;
|
|
428
|
+
--red-4: rgba(245, 81, 92, 0.04);
|
|
429
|
+
--red-8: rgba(245, 81, 92, 0.08);
|
|
430
|
+
--red-16: rgba(245, 81, 92, 0.16);
|
|
431
|
+
--red-24: rgba(245, 81, 92, 0.24);
|
|
432
|
+
--red-32: rgba(245, 81, 92, 0.32);
|
|
433
|
+
--red-40: rgba(245, 81, 92, 0.4);
|
|
434
|
+
--red-48: rgba(245, 81, 92, 0.48);
|
|
435
|
+
--yellow-100: #fff6e1;
|
|
436
|
+
--yellow-200: #ffe9b8;
|
|
437
|
+
--yellow-300: #ffd980;
|
|
438
|
+
--yellow-400: #ffc84a;
|
|
439
|
+
--yellow-500: #ffb714;
|
|
440
|
+
--yellow-600: #e59f00;
|
|
441
|
+
--yellow-700: #bf8200;
|
|
442
|
+
--yellow-800: #996600;
|
|
443
|
+
--yellow-900: #734c00;
|
|
444
|
+
--yellow-950: #4d3300;
|
|
445
|
+
--yellow-4: rgba(255, 183, 20, 0.04);
|
|
446
|
+
--yellow-8: rgba(255, 183, 20, 0.08);
|
|
447
|
+
--yellow-16: rgba(255, 183, 20, 0.16);
|
|
448
|
+
--yellow-24: rgba(255, 183, 20, 0.24);
|
|
449
|
+
--yellow-32: rgba(255, 183, 20, 0.32);
|
|
450
|
+
--yellow-40: rgba(255, 183, 20, 0.4);
|
|
451
|
+
--yellow-48: rgba(255, 183, 20, 0.48);
|
|
452
|
+
--blue-100: #e9f6fc;
|
|
453
|
+
--blue-200: #d2ecf9;
|
|
454
|
+
--blue-300: #aeddf4;
|
|
455
|
+
--blue-400: #81caef;
|
|
456
|
+
--blue-500: #3daee6;
|
|
457
|
+
--blue-600: #2597d0;
|
|
458
|
+
--blue-700: #1c7fb0;
|
|
459
|
+
--blue-800: #1b6e98;
|
|
460
|
+
--blue-900: #134e6c;
|
|
461
|
+
--blue-950: #0f3f57;
|
|
462
|
+
--blue-4: rgba(61, 174, 230, 0.04);
|
|
463
|
+
--blue-8: rgba(61, 174, 230, 0.08);
|
|
464
|
+
--blue-16: rgba(61, 174, 230, 0.16);
|
|
465
|
+
--blue-24: rgba(61, 174, 230, 0.24);
|
|
466
|
+
--blue-32: rgba(61, 174, 230, 0.32);
|
|
467
|
+
--blue-40: rgba(61, 174, 230, 0.4);
|
|
468
|
+
--blue-48: rgba(61, 174, 230, 0.48);
|
|
469
|
+
--orange-100: #fdece3;
|
|
470
|
+
--orange-200: #fbdbcb;
|
|
471
|
+
--orange-300: #f8bda0;
|
|
472
|
+
--orange-400: #f69a6c;
|
|
473
|
+
--orange-500: #f07436;
|
|
474
|
+
--orange-600: #e15c19;
|
|
475
|
+
--orange-700: #aa4418;
|
|
476
|
+
--orange-800: #7d3212;
|
|
477
|
+
--orange-900: #59240d;
|
|
478
|
+
--orange-950: #3e1909;
|
|
479
|
+
--orange-4: rgba(240, 116, 54, 0.04);
|
|
480
|
+
--orange-8: rgba(240, 116, 54, 0.08);
|
|
481
|
+
--orange-16: rgba(240, 116, 54, 0.16);
|
|
482
|
+
--orange-24: rgba(240, 116, 54, 0.24);
|
|
483
|
+
--orange-32: rgba(240, 116, 54, 0.32);
|
|
484
|
+
--orange-40: rgba(240, 116, 54, 0.4);
|
|
485
|
+
--orange-48: rgba(240, 116, 54, 0.48);
|
|
486
|
+
--purple-100: #efe9fc;
|
|
487
|
+
--purple-200: #d9cafa;
|
|
488
|
+
--purple-300: #bea8f7;
|
|
489
|
+
--purple-400: #a986f4;
|
|
490
|
+
--purple-500: #9364f1;
|
|
491
|
+
--purple-600: #7743de;
|
|
492
|
+
--purple-700: #5b29bf;
|
|
493
|
+
--purple-800: #461f94;
|
|
494
|
+
--purple-900: #2f1669;
|
|
495
|
+
--purple-950: #210f48;
|
|
496
|
+
--purple-4: rgba(147, 100, 241, 0.04);
|
|
497
|
+
--purple-8: rgba(147, 100, 241, 0.08);
|
|
498
|
+
--purple-16: rgba(147, 100, 241, 0.16);
|
|
499
|
+
--purple-24: rgba(147, 100, 241, 0.24);
|
|
500
|
+
--purple-32: rgba(147, 100, 241, 0.32);
|
|
501
|
+
--purple-40: rgba(147, 100, 241, 0.4);
|
|
502
|
+
--purple-48: rgba(147, 100, 241, 0.48);
|
|
503
|
+
--pink-100: #fce9f5;
|
|
504
|
+
--pink-200: #f9cbea;
|
|
505
|
+
--pink-300: #f7a8df;
|
|
506
|
+
--pink-400: #f486cf;
|
|
507
|
+
--pink-500: #f164bd;
|
|
508
|
+
--pink-600: #de43a5;
|
|
509
|
+
--pink-700: #bf2988;
|
|
510
|
+
--pink-800: #941f69;
|
|
511
|
+
--pink-900: #69164a;
|
|
512
|
+
--pink-950: #480f33;
|
|
513
|
+
--pink-4: rgba(241, 100, 189, 0.04);
|
|
514
|
+
--pink-8: rgba(241, 100, 189, 0.08);
|
|
515
|
+
--pink-16: rgba(241, 100, 189, 0.16);
|
|
516
|
+
--pink-24: rgba(241, 100, 189, 0.24);
|
|
517
|
+
--pink-32: rgba(241, 100, 189, 0.32);
|
|
518
|
+
--pink-40: rgba(241, 100, 189, 0.4);
|
|
519
|
+
--pink-48: rgba(241, 100, 189, 0.48);
|
|
520
|
+
--teal-100: #ebfafa;
|
|
521
|
+
--teal-200: #c3efef;
|
|
522
|
+
--teal-300: #96e3e3;
|
|
523
|
+
--teal-400: #6ad7d7;
|
|
524
|
+
--teal-500: #33cccc;
|
|
525
|
+
--teal-600: #27aaaa;
|
|
526
|
+
--teal-700: #168c8c;
|
|
527
|
+
--teal-800: #0f6e6e;
|
|
528
|
+
--teal-900: #0a4d52;
|
|
529
|
+
--teal-950: #053336;
|
|
530
|
+
--teal-4: rgba(51, 204, 204, 0.04);
|
|
531
|
+
--teal-8: rgba(51, 204, 204, 0.08);
|
|
532
|
+
--teal-16: rgba(51, 204, 204, 0.16);
|
|
533
|
+
--teal-24: rgba(51, 204, 204, 0.24);
|
|
534
|
+
--teal-32: rgba(51, 204, 204, 0.32);
|
|
535
|
+
--teal-40: rgba(51, 204, 204, 0.4);
|
|
536
|
+
--teal-48: rgba(51, 204, 204, 0.48);
|
|
537
|
+
--silkfest-100: #ffe3cc;
|
|
538
|
+
--silkfest-200: #ffc799;
|
|
539
|
+
--silkfest-300: #ffab66;
|
|
540
|
+
--silkfest-400: #ff8f33;
|
|
541
|
+
--silkfest-500: #ff7300;
|
|
542
|
+
--silkfest-600: #cc5c00;
|
|
543
|
+
--silkfest-700: #994500;
|
|
544
|
+
--silkfest-800: #662e00;
|
|
545
|
+
--silkfest-900: #4d2300;
|
|
546
|
+
--silkfest-950: #331700;
|
|
547
|
+
--silkfest-4: rgba(255, 115, 0, 0.04);
|
|
548
|
+
--silkfest-8: rgba(255, 115, 0, 0.08);
|
|
549
|
+
--silkfest-16: rgba(255, 115, 0, 0.16);
|
|
550
|
+
--silkfest-24: rgba(255, 115, 0, 0.24);
|
|
551
|
+
--silkfest-32: rgba(255, 115, 0, 0.32);
|
|
552
|
+
--silkfest-40: rgba(255, 115, 0, 0.4);
|
|
553
|
+
--silkfest-48: rgba(255, 115, 0, 0.48);
|
|
554
|
+
--alpha-white-4: rgba(255, 255, 255, 0.04);
|
|
555
|
+
--alpha-white-8: rgba(255, 255, 255, 0.08);
|
|
556
|
+
--alpha-white-12: rgba(255, 255, 255, 0.12);
|
|
557
|
+
--alpha-white-16: rgba(255, 255, 255, 0.16);
|
|
558
|
+
--alpha-white-24: rgba(255, 255, 255, 0.24);
|
|
559
|
+
--alpha-white-32: rgba(255, 255, 255, 0.32);
|
|
560
|
+
--alpha-white-48: rgba(255, 255, 255, 0.48);
|
|
561
|
+
--alpha-white-64: rgba(255, 255, 255, 0.64);
|
|
562
|
+
--alpha-white-80: rgba(255, 255, 255, 0.8);
|
|
563
|
+
--alpha-white-96: rgba(255, 255, 255, 0.96);
|
|
564
|
+
--alpha-white-100: #ffffff;
|
|
565
|
+
--alpha-black-4: rgba(0, 0, 0, 0.04);
|
|
566
|
+
--alpha-black-8: rgba(0, 0, 0, 0.08);
|
|
567
|
+
--alpha-black-12: rgba(0, 0, 0, 0.12);
|
|
568
|
+
--alpha-black-16: rgba(0, 0, 0, 0.16);
|
|
569
|
+
--alpha-black-24: rgba(0, 0, 0, 0.24);
|
|
570
|
+
--alpha-black-32: rgba(0, 0, 0, 0.32);
|
|
571
|
+
--alpha-black-48: rgba(0, 0, 0, 0.48);
|
|
572
|
+
--alpha-black-64: rgba(0, 0, 0, 0.64);
|
|
573
|
+
--alpha-black-80: rgba(0, 0, 0, 0.8);
|
|
574
|
+
--alpha-black-96: rgba(0, 0, 0, 0.96);
|
|
575
|
+
--alpha-black-100: #000000;
|
|
576
|
+
--digits-0: 0px;
|
|
577
|
+
--digits-4: 4px;
|
|
578
|
+
--digits-8: 8px;
|
|
579
|
+
--digits-12: 12px;
|
|
580
|
+
--digits-14: 14px;
|
|
581
|
+
--digits-16: 16px;
|
|
582
|
+
--digits-20: 20px;
|
|
583
|
+
--digits-24: 24px;
|
|
584
|
+
--digits-28: 28px;
|
|
585
|
+
--digits-32: 32px;
|
|
586
|
+
--digits-36: 36px;
|
|
587
|
+
--digits-40: 40px;
|
|
588
|
+
--digits-44: 44px;
|
|
589
|
+
--digits-48: 48px;
|
|
590
|
+
--digits-52: 52px;
|
|
591
|
+
--digits-56: 56px;
|
|
592
|
+
--digits-radius-0: 0px;
|
|
593
|
+
--digits-radius-xxs: 4px;
|
|
594
|
+
--digits-radius-xs: 8px;
|
|
595
|
+
--digits-radius-s: 12px;
|
|
596
|
+
--digits-radius-m: 16px;
|
|
597
|
+
--digits-radius-l: 24px;
|
|
598
|
+
--digits-radius-xl: 32px;
|
|
599
|
+
--digits-radius-xxl: 48px;
|
|
600
|
+
--digits-spacing-0: 0px;
|
|
601
|
+
--digits-spacing-1: 4px;
|
|
602
|
+
--digits-spacing-2: 8px;
|
|
603
|
+
--digits-spacing-3: 12px;
|
|
604
|
+
--digits-spacing-4: 16px;
|
|
605
|
+
--digits-spacing-5: 20px;
|
|
606
|
+
--digits-spacing-6: 24px;
|
|
607
|
+
--digits-spacing-7: 28px;
|
|
608
|
+
--digits-spacing-8: 32px;
|
|
609
|
+
--digits-spacing-9: 36px;
|
|
610
|
+
--digits-spacing-10: 40px;
|
|
611
|
+
--digits-spacing-11: 44px;
|
|
612
|
+
--digits-spacing-12: 48px;
|
|
613
|
+
--digits-spacing-13: 52px;
|
|
614
|
+
--digits-spacing-14: 56px;
|
|
615
|
+
--digits-spacing-3-1: 14px;
|
|
616
|
+
--font-family-family: 'Noto Sans Georgian';
|
|
617
|
+
--font-weight-regular: regular;
|
|
618
|
+
--font-weight-medium: medium;
|
|
619
|
+
--font-weight-semibold: semibold;
|
|
620
|
+
--font-weight-bold: bold;
|
|
621
|
+
--font-size-heading-heading-1: 32px;
|
|
622
|
+
--font-size-heading-heading-2: 28px;
|
|
623
|
+
--font-size-heading-heading-3: 20px;
|
|
624
|
+
--font-size-heading-heading-4: 16px;
|
|
625
|
+
--font-size-heading-display-display: 20px;
|
|
626
|
+
--font-size-subtitle-subtitle-1: 16px;
|
|
627
|
+
--font-size-subtitle-subtitle-2: 14px;
|
|
628
|
+
--font-size-subtitle-subtitle-3: 12px;
|
|
629
|
+
--font-size-body-body-accent: 16px;
|
|
630
|
+
--font-size-body-body-default: 14px;
|
|
631
|
+
--font-size-body-body-additional: 12px;
|
|
632
|
+
--font-size-button-button-default: 14px;
|
|
633
|
+
--font-size-button-button-additional: 12px;
|
|
634
|
+
--font-size-other-caption: 11px;
|
|
635
|
+
--font-size-other-overline: 11px;
|
|
636
|
+
--font-height-heading-heading-1: 48px;
|
|
637
|
+
--font-height-heading-heading-2: 40px;
|
|
638
|
+
--font-height-heading-heading-3: 28px;
|
|
639
|
+
--font-height-heading-heading-4: 24px;
|
|
640
|
+
--font-height-heading-display-display: 28px;
|
|
641
|
+
--font-height-subtitle-subtitle-1: 24px;
|
|
642
|
+
--font-height-subtitle-subtitle-2: 20px;
|
|
643
|
+
--font-height-subtitle-subtitle-3: 16px;
|
|
644
|
+
--font-height-body-body-accent: 24px;
|
|
645
|
+
--font-height-body-body-default: 20px;
|
|
646
|
+
--font-height-body-body-additional: 16px;
|
|
647
|
+
--font-height-button-button-default: 20px;
|
|
648
|
+
--font-height-button-button-additional: 16px;
|
|
649
|
+
--font-height-other-caption: 16px;
|
|
650
|
+
--font-height-other-overline: 12px;
|
|
651
|
+
--text-default: #f8f9f9;
|
|
652
|
+
--text-secondary: #e0e3e5;
|
|
653
|
+
--text-additional: #b0b9bf;
|
|
654
|
+
--text-disabled: #4b565e;
|
|
655
|
+
--text-contrast: #000000;
|
|
656
|
+
--text-primary: #99d0f7;
|
|
657
|
+
--text-success: #8ce2b4;
|
|
658
|
+
--text-error: #f8a6ad;
|
|
659
|
+
--text-warrning: #ffd980;
|
|
660
|
+
--text-info: #aeddf4;
|
|
661
|
+
--text-orange: #f8bda0;
|
|
662
|
+
--text-purple: #bea8f7;
|
|
663
|
+
--text-pink: #f7a8df;
|
|
664
|
+
--text-teal: #96e3e3;
|
|
665
|
+
--text-silkfest: #ffab66;
|
|
666
|
+
--background-surface: #1d2327;
|
|
667
|
+
--background-surface-hover: #323a3f;
|
|
668
|
+
--background-surface-pressed: #4b565e;
|
|
669
|
+
--background-layer: #323a3f;
|
|
670
|
+
--background-layer-hover: rgba(0, 0, 0, 0.08);
|
|
671
|
+
--background-layer-pressed: rgba(0, 0, 0, 0.16);
|
|
672
|
+
--background-primary-accent: #0089eb;
|
|
673
|
+
--background-success-accent: #29ae6f;
|
|
674
|
+
--background-error-accent: #db3f49;
|
|
675
|
+
--background-warning-accent: #e59f00;
|
|
676
|
+
--background-info-accent: #2597d0;
|
|
677
|
+
--background-orange-accent: #e15c19;
|
|
678
|
+
--background-purple-accent: #7743de;
|
|
679
|
+
--background-pink-accent: #de43a5;
|
|
680
|
+
--background-teal-accent: #27aaaa;
|
|
681
|
+
--background-silkfest-accent: #cc5c00;
|
|
682
|
+
--background-disabled: #4b565e;
|
|
683
|
+
--background-primary: #001b2f;
|
|
684
|
+
--background-success: #0e3525;
|
|
685
|
+
--background-error: #3f1015;
|
|
686
|
+
--background-warning: #4d3300;
|
|
687
|
+
--background-info: #0f3f57;
|
|
688
|
+
--background-orange: #3e1909;
|
|
689
|
+
--background-purple: #210f48;
|
|
690
|
+
--background-pink: #480f33;
|
|
691
|
+
--background-teal: #053336;
|
|
692
|
+
--background-silkfest: #331700;
|
|
693
|
+
--background-toggle-default: #4b565e;
|
|
694
|
+
--background-chip-default: #4b565e;
|
|
695
|
+
--background-chip-selected: #f8f9f9;
|
|
696
|
+
--background-primary-soft: rgba(51, 161, 239, 0.08);
|
|
697
|
+
--background-navigation: rgba(176, 185, 191, 0.04);
|
|
698
|
+
--background-input-default: rgba(176, 185, 191, 0.08);
|
|
699
|
+
--background-input-hover: rgba(176, 185, 191, 0.16);
|
|
700
|
+
--background-input-pressed: rgba(176, 185, 191, 0.24);
|
|
701
|
+
--border-default: #69757e;
|
|
702
|
+
--border-subtle: #4b565e;
|
|
703
|
+
--border-filled: #4b565e;
|
|
704
|
+
--border-primary-focus: #0089eb;
|
|
705
|
+
--border-primary: #00375e;
|
|
706
|
+
--border-success: #134c34;
|
|
707
|
+
--border-error: #661b22;
|
|
708
|
+
--border-error-focus: #661b22;
|
|
709
|
+
--border-warning: #734c00;
|
|
710
|
+
--border-info: #134e6c;
|
|
711
|
+
--border-orange: #59240d;
|
|
712
|
+
--border-purple: #2f1669;
|
|
713
|
+
--border-pink: #69164a;
|
|
714
|
+
--border-teal: #0a4d52;
|
|
715
|
+
--border-silkfest: #4d2300;
|
|
716
|
+
}
|