@oslokommune/punkt-css 9.3.2 → 9.4.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/CHANGELOG.md +28 -0
- package/README.md +1 -1
- package/dist/css/components/alert.css +18 -16
- package/dist/css/components/alert.min.css +1 -1
- package/dist/css/components/badge.css +2 -13
- package/dist/css/components/badge.min.css +1 -1
- package/dist/css/components/footer.css +5 -5
- package/dist/css/components/footer.min.css +1 -1
- package/dist/css/components/header.css +20 -11
- package/dist/css/components/header.min.css +1 -1
- package/dist/css/components/inputwrapper.css +21 -16
- package/dist/css/components/inputwrapper.min.css +1 -1
- package/dist/css/components/linkcard.css +21 -12
- package/dist/css/components/linkcard.min.css +1 -1
- package/dist/css/components/messagebox.css +12 -12
- package/dist/css/components/messagebox.min.css +1 -1
- package/dist/css/components/tag.css +126 -40
- package/dist/css/components/tag.min.css +1 -1
- package/dist/css/components/textinput.css +61 -35
- package/dist/css/components/textinput.min.css +1 -1
- package/dist/css/pkt-base.css +1418 -243
- package/dist/css/pkt-base.min.css +1 -1
- package/dist/css/pkt-components.css +286 -160
- package/dist/css/pkt-components.min.css +1 -1
- package/dist/css/pkt-elements.css +484 -344
- package/dist/css/pkt-elements.min.css +1 -1
- package/dist/css/pkt.css +2127 -712
- package/dist/css/pkt.min.css +1 -1
- package/dist/scss/abstracts/variables/_colors.scss +108 -0
- package/dist/scss/abstracts/variables/_spacing.scss +12 -10
- package/dist/scss/base/_colors.scss +111 -9
- package/dist/scss/base/_typography.scss +15 -58
- package/dist/scss/components/_alert.scss +28 -25
- package/dist/scss/components/_badge.scss +56 -55
- package/dist/scss/components/_footer.scss +5 -8
- package/dist/scss/components/_header.scss +30 -16
- package/dist/scss/components/_inputwrapper.scss +27 -20
- package/dist/scss/components/_linkcard.scss +41 -16
- package/dist/scss/components/_messagebox.scss +16 -14
- package/dist/scss/components/_tag.scss +150 -41
- package/dist/scss/elements/_button.scss +220 -156
- package/dist/scss/elements/_checkbox-radio.scss +86 -150
- package/dist/scss/elements/_form.scss +26 -24
- package/dist/scss/elements/_hr.scss +1 -1
- package/dist/scss/elements/_input.scss +63 -41
- package/dist/scss/elements/_list.scss +11 -6
- package/dist/scss/elements/_section.scss +8 -8
- package/dist/scss/elements/_table.scss +8 -8
- package/package.json +2 -2
package/dist/css/pkt-base.css
CHANGED
|
@@ -46,12 +46,99 @@
|
|
|
46
46
|
}
|
|
47
47
|
/*
|
|
48
48
|
* Colors
|
|
49
|
+
* Brand
|
|
50
|
+
* Light mode
|
|
51
|
+
* Dark mode
|
|
49
52
|
*/
|
|
50
53
|
:root {
|
|
51
54
|
/**
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
+
* @tokens Colors
|
|
56
|
+
* @presenter Color
|
|
57
|
+
*/
|
|
58
|
+
--pkt-color-brand-blue-100: #F1FDFF;
|
|
59
|
+
--pkt-color-brand-blue-200: #E5FCFF;
|
|
60
|
+
--pkt-color-brand-blue-300: #D1F9FF;
|
|
61
|
+
--pkt-color-brand-blue-500: #B3F5FF;
|
|
62
|
+
--pkt-color-brand-blue-1000: #6FE9FF;
|
|
63
|
+
--pkt-color-brand-dark-blue-700: #6A698B;
|
|
64
|
+
--pkt-color-brand-dark-blue-1000: #2A2859;
|
|
65
|
+
--pkt-color-brand-warm-blue-1000: #1F42AA;
|
|
66
|
+
--pkt-color-brand-green-400: #C7FDE9;
|
|
67
|
+
--pkt-color-brand-green-1000: #43F8B6;
|
|
68
|
+
--pkt-color-brand-light-green-400: #E5FFE6;
|
|
69
|
+
--pkt-color-brand-light-green-1000: #C7F6C9;
|
|
70
|
+
--pkt-color-brand-dark-green-1000: #034B45;
|
|
71
|
+
--pkt-color-brand-yellow-1000: #F9C66B;
|
|
72
|
+
--pkt-color-brand-yellow-500: #FFE7BC;
|
|
73
|
+
--pkt-color-brand-red-100: #FFF2F1;
|
|
74
|
+
--pkt-color-brand-red-400: #FFDFDC;
|
|
75
|
+
--pkt-color-brand-red-600: #FFB4AC;
|
|
76
|
+
--pkt-color-brand-red-1000: #FF8274;
|
|
77
|
+
--pkt-color-brand-light-beige-1000: #F8F0DD;
|
|
78
|
+
--pkt-color-brand-dark-beige-1000: #D0BFAE;
|
|
79
|
+
--pkt-color-brand-neutrals-white: #FFFFFF;
|
|
80
|
+
--pkt-color-brand-neutrals-100: #F9F9F9;
|
|
81
|
+
--pkt-color-brand-neutrals-200: #F2F2F2;
|
|
82
|
+
--pkt-color-brand-neutrals-1000: #2C2C2C;
|
|
83
|
+
--pkt-color-brand-neutrals-black: #000000;
|
|
84
|
+
--pkt-color-brand-neutrals-transparent: transparent;
|
|
85
|
+
--pkt-color-brand-purple-1000: #E0ADFF;
|
|
86
|
+
--pkt-color-grays-gray-100: #E6E6E6;
|
|
87
|
+
--pkt-color-grays-gray-200: #CCCCCC;
|
|
88
|
+
--pkt-color-grays-gray-300: #B3B3B3;
|
|
89
|
+
--pkt-color-grays-gray-400: #9A9A9A;
|
|
90
|
+
--pkt-color-grays-gray-500: #808080;
|
|
91
|
+
--pkt-color-grays-gray-600: #666666;
|
|
92
|
+
--pkt-color-grays-gray-700: #4D4D4D;
|
|
93
|
+
--pkt-color-grays-gray-800: #333333;
|
|
94
|
+
--pkt-color-grays-gray-900: #1A1A1A;
|
|
95
|
+
--pkt-color-grays-gray-1000: #2C2C2C;
|
|
96
|
+
--pkt-color-background-card: #FFFFFF;
|
|
97
|
+
--pkt-color-background-default: #FFFFFF;
|
|
98
|
+
--pkt-color-background-subtle: #F9F9F9;
|
|
99
|
+
--pkt-color-background-transparent: transparent;
|
|
100
|
+
--pkt-color-border-default: #2A2859;
|
|
101
|
+
--pkt-color-border-beige: #D0BFAE;
|
|
102
|
+
--pkt-color-border-blue: #6FE9FF;
|
|
103
|
+
--pkt-color-border-gray: #CCCCCC;
|
|
104
|
+
--pkt-color-border-green: #43F8B6;
|
|
105
|
+
--pkt-color-border-light-beige: #F8F0DD;
|
|
106
|
+
--pkt-color-border-red: #FF8274;
|
|
107
|
+
--pkt-color-border-subtle: #F2F2F2;
|
|
108
|
+
--pkt-color-border-yellow: #F9C66B;
|
|
109
|
+
--pkt-color-border-states-active: #1F42AA;
|
|
110
|
+
--pkt-color-border-states-disabled: #B3B3B3;
|
|
111
|
+
--pkt-color-border-states-focus: #E0ADFF;
|
|
112
|
+
--pkt-color-border-states-hover: #1F42AA;
|
|
113
|
+
--pkt-color-surface-default-faded-green: #E5FFE6;
|
|
114
|
+
--pkt-color-surface-default-faded-red: #FFDFDC;
|
|
115
|
+
--pkt-color-surface-default-gray: #F9F9F9;
|
|
116
|
+
--pkt-color-surface-default-light-beige: #F8F0DD;
|
|
117
|
+
--pkt-color-surface-default-light-blue: #D1F9FF;
|
|
118
|
+
--pkt-color-surface-default-light-green: #C7FDE9;
|
|
119
|
+
--pkt-color-surface-default-red: #FFB4AC;
|
|
120
|
+
--pkt-color-surface-default-yellow: #FFE7BC;
|
|
121
|
+
--pkt-color-surface-strong-beige: #D0BFAE;
|
|
122
|
+
--pkt-color-surface-strong-blue: #6FE9FF;
|
|
123
|
+
--pkt-color-surface-strong-dark-blue: #2A2859;
|
|
124
|
+
--pkt-color-surface-strong-dark-green: #034B45;
|
|
125
|
+
--pkt-color-surface-strong-gray: #F2F2F2;
|
|
126
|
+
--pkt-color-surface-strong-green: #43F8B6;
|
|
127
|
+
--pkt-color-surface-strong-light-green: #C7F6C9;
|
|
128
|
+
--pkt-color-surface-strong-red: #FF8274;
|
|
129
|
+
--pkt-color-surface-strong-yellow: #F9C66B;
|
|
130
|
+
--pkt-color-surface-subtle-light-blue: #E5FCFF;
|
|
131
|
+
--pkt-color-surface-subtle-light-red: #FFF2F1;
|
|
132
|
+
--pkt-color-surface-subtle-pale-blue: #F1FDFF;
|
|
133
|
+
--pkt-color-surface-subtle-white: #FFFFFF;
|
|
134
|
+
--pkt-color-text-body-dark: #2A2859;
|
|
135
|
+
--pkt-color-text-body-default: #2A2859;
|
|
136
|
+
--pkt-color-text-body-light: #FFFFFF;
|
|
137
|
+
--pkt-color-text-placeholder: #666666;
|
|
138
|
+
--pkt-color-text-action-disabled: #666666;
|
|
139
|
+
--pkt-color-text-action-active: #1F42AA;
|
|
140
|
+
--pkt-color-text-action-hover: #1F42AA;
|
|
141
|
+
--pkt-color-text-action-normal: #2A2859;
|
|
55
142
|
--color-blue: #6fe9ff;
|
|
56
143
|
--color-blue-light: #b3f5ff;
|
|
57
144
|
--color-blue-dark: #2a2859;
|
|
@@ -104,414 +191,1115 @@
|
|
|
104
191
|
--color-grayscale-90: #1a1a1a;
|
|
105
192
|
--color-black: #000;
|
|
106
193
|
}
|
|
107
|
-
|
|
108
|
-
|
|
194
|
+
:root .pkt-color-bg-brand-blue-100 {
|
|
195
|
+
background-color: #F1FDFF !important;
|
|
196
|
+
}
|
|
197
|
+
:root .pkt-color-txt-brand-blue-100 {
|
|
198
|
+
color: #F1FDFF !important;
|
|
199
|
+
}
|
|
200
|
+
:root .pkt-color-border-brand-blue-100 {
|
|
201
|
+
border-color: #F1FDFF !important;
|
|
202
|
+
}
|
|
203
|
+
:root .pkt-color-bg-brand-blue-200 {
|
|
204
|
+
background-color: #E5FCFF !important;
|
|
205
|
+
}
|
|
206
|
+
:root .pkt-color-txt-brand-blue-200 {
|
|
207
|
+
color: #E5FCFF !important;
|
|
208
|
+
}
|
|
209
|
+
:root .pkt-color-border-brand-blue-200 {
|
|
210
|
+
border-color: #E5FCFF !important;
|
|
211
|
+
}
|
|
212
|
+
:root .pkt-color-bg-brand-blue-300 {
|
|
213
|
+
background-color: #D1F9FF !important;
|
|
214
|
+
}
|
|
215
|
+
:root .pkt-color-txt-brand-blue-300 {
|
|
216
|
+
color: #D1F9FF !important;
|
|
217
|
+
}
|
|
218
|
+
:root .pkt-color-border-brand-blue-300 {
|
|
219
|
+
border-color: #D1F9FF !important;
|
|
220
|
+
}
|
|
221
|
+
:root .pkt-color-bg-brand-blue-500 {
|
|
222
|
+
background-color: #B3F5FF !important;
|
|
223
|
+
}
|
|
224
|
+
:root .pkt-color-txt-brand-blue-500 {
|
|
225
|
+
color: #B3F5FF !important;
|
|
226
|
+
}
|
|
227
|
+
:root .pkt-color-border-brand-blue-500 {
|
|
228
|
+
border-color: #B3F5FF !important;
|
|
229
|
+
}
|
|
230
|
+
:root .pkt-color-bg-brand-blue-1000 {
|
|
231
|
+
background-color: #6FE9FF !important;
|
|
232
|
+
}
|
|
233
|
+
:root .pkt-color-txt-brand-blue-1000 {
|
|
234
|
+
color: #6FE9FF !important;
|
|
235
|
+
}
|
|
236
|
+
:root .pkt-color-border-brand-blue-1000 {
|
|
237
|
+
border-color: #6FE9FF !important;
|
|
238
|
+
}
|
|
239
|
+
:root .pkt-color-bg-brand-dark-blue-700 {
|
|
240
|
+
background-color: #6A698B !important;
|
|
241
|
+
}
|
|
242
|
+
:root .pkt-color-txt-brand-dark-blue-700 {
|
|
243
|
+
color: #6A698B !important;
|
|
244
|
+
}
|
|
245
|
+
:root .pkt-color-border-brand-dark-blue-700 {
|
|
246
|
+
border-color: #6A698B !important;
|
|
247
|
+
}
|
|
248
|
+
:root .pkt-color-bg-brand-dark-blue-1000 {
|
|
249
|
+
background-color: #2A2859 !important;
|
|
250
|
+
}
|
|
251
|
+
:root .pkt-color-txt-brand-dark-blue-1000 {
|
|
252
|
+
color: #2A2859 !important;
|
|
253
|
+
}
|
|
254
|
+
:root .pkt-color-border-brand-dark-blue-1000 {
|
|
255
|
+
border-color: #2A2859 !important;
|
|
256
|
+
}
|
|
257
|
+
:root .pkt-color-bg-brand-warm-blue-1000 {
|
|
258
|
+
background-color: #1F42AA !important;
|
|
259
|
+
}
|
|
260
|
+
:root .pkt-color-txt-brand-warm-blue-1000 {
|
|
261
|
+
color: #1F42AA !important;
|
|
262
|
+
}
|
|
263
|
+
:root .pkt-color-border-brand-warm-blue-1000 {
|
|
264
|
+
border-color: #1F42AA !important;
|
|
265
|
+
}
|
|
266
|
+
:root .pkt-color-bg-brand-green-400 {
|
|
267
|
+
background-color: #C7FDE9 !important;
|
|
268
|
+
}
|
|
269
|
+
:root .pkt-color-txt-brand-green-400 {
|
|
270
|
+
color: #C7FDE9 !important;
|
|
271
|
+
}
|
|
272
|
+
:root .pkt-color-border-brand-green-400 {
|
|
273
|
+
border-color: #C7FDE9 !important;
|
|
274
|
+
}
|
|
275
|
+
:root .pkt-color-bg-brand-green-1000 {
|
|
276
|
+
background-color: #43F8B6 !important;
|
|
277
|
+
}
|
|
278
|
+
:root .pkt-color-txt-brand-green-1000 {
|
|
279
|
+
color: #43F8B6 !important;
|
|
280
|
+
}
|
|
281
|
+
:root .pkt-color-border-brand-green-1000 {
|
|
282
|
+
border-color: #43F8B6 !important;
|
|
283
|
+
}
|
|
284
|
+
:root .pkt-color-bg-brand-light-green-400 {
|
|
285
|
+
background-color: #E5FFE6 !important;
|
|
286
|
+
}
|
|
287
|
+
:root .pkt-color-txt-brand-light-green-400 {
|
|
288
|
+
color: #E5FFE6 !important;
|
|
289
|
+
}
|
|
290
|
+
:root .pkt-color-border-brand-light-green-400 {
|
|
291
|
+
border-color: #E5FFE6 !important;
|
|
292
|
+
}
|
|
293
|
+
:root .pkt-color-bg-brand-light-green-1000 {
|
|
294
|
+
background-color: #C7F6C9 !important;
|
|
295
|
+
}
|
|
296
|
+
:root .pkt-color-txt-brand-light-green-1000 {
|
|
297
|
+
color: #C7F6C9 !important;
|
|
298
|
+
}
|
|
299
|
+
:root .pkt-color-border-brand-light-green-1000 {
|
|
300
|
+
border-color: #C7F6C9 !important;
|
|
301
|
+
}
|
|
302
|
+
:root .pkt-color-bg-brand-dark-green-1000 {
|
|
303
|
+
background-color: #034B45 !important;
|
|
304
|
+
}
|
|
305
|
+
:root .pkt-color-txt-brand-dark-green-1000 {
|
|
306
|
+
color: #034B45 !important;
|
|
307
|
+
}
|
|
308
|
+
:root .pkt-color-border-brand-dark-green-1000 {
|
|
309
|
+
border-color: #034B45 !important;
|
|
310
|
+
}
|
|
311
|
+
:root .pkt-color-bg-brand-yellow-1000 {
|
|
312
|
+
background-color: #F9C66B !important;
|
|
313
|
+
}
|
|
314
|
+
:root .pkt-color-txt-brand-yellow-1000 {
|
|
315
|
+
color: #F9C66B !important;
|
|
316
|
+
}
|
|
317
|
+
:root .pkt-color-border-brand-yellow-1000 {
|
|
318
|
+
border-color: #F9C66B !important;
|
|
319
|
+
}
|
|
320
|
+
:root .pkt-color-bg-brand-yellow-500 {
|
|
321
|
+
background-color: #FFE7BC !important;
|
|
322
|
+
}
|
|
323
|
+
:root .pkt-color-txt-brand-yellow-500 {
|
|
324
|
+
color: #FFE7BC !important;
|
|
325
|
+
}
|
|
326
|
+
:root .pkt-color-border-brand-yellow-500 {
|
|
327
|
+
border-color: #FFE7BC !important;
|
|
328
|
+
}
|
|
329
|
+
:root .pkt-color-bg-brand-red-100 {
|
|
330
|
+
background-color: #FFF2F1 !important;
|
|
331
|
+
}
|
|
332
|
+
:root .pkt-color-txt-brand-red-100 {
|
|
333
|
+
color: #FFF2F1 !important;
|
|
334
|
+
}
|
|
335
|
+
:root .pkt-color-border-brand-red-100 {
|
|
336
|
+
border-color: #FFF2F1 !important;
|
|
337
|
+
}
|
|
338
|
+
:root .pkt-color-bg-brand-red-400 {
|
|
339
|
+
background-color: #FFDFDC !important;
|
|
340
|
+
}
|
|
341
|
+
:root .pkt-color-txt-brand-red-400 {
|
|
342
|
+
color: #FFDFDC !important;
|
|
343
|
+
}
|
|
344
|
+
:root .pkt-color-border-brand-red-400 {
|
|
345
|
+
border-color: #FFDFDC !important;
|
|
346
|
+
}
|
|
347
|
+
:root .pkt-color-bg-brand-red-600 {
|
|
348
|
+
background-color: #FFB4AC !important;
|
|
349
|
+
}
|
|
350
|
+
:root .pkt-color-txt-brand-red-600 {
|
|
351
|
+
color: #FFB4AC !important;
|
|
352
|
+
}
|
|
353
|
+
:root .pkt-color-border-brand-red-600 {
|
|
354
|
+
border-color: #FFB4AC !important;
|
|
355
|
+
}
|
|
356
|
+
:root .pkt-color-bg-brand-red-1000 {
|
|
357
|
+
background-color: #FF8274 !important;
|
|
358
|
+
}
|
|
359
|
+
:root .pkt-color-txt-brand-red-1000 {
|
|
360
|
+
color: #FF8274 !important;
|
|
361
|
+
}
|
|
362
|
+
:root .pkt-color-border-brand-red-1000 {
|
|
363
|
+
border-color: #FF8274 !important;
|
|
364
|
+
}
|
|
365
|
+
:root .pkt-color-bg-brand-light-beige-1000 {
|
|
366
|
+
background-color: #F8F0DD !important;
|
|
367
|
+
}
|
|
368
|
+
:root .pkt-color-txt-brand-light-beige-1000 {
|
|
369
|
+
color: #F8F0DD !important;
|
|
370
|
+
}
|
|
371
|
+
:root .pkt-color-border-brand-light-beige-1000 {
|
|
372
|
+
border-color: #F8F0DD !important;
|
|
373
|
+
}
|
|
374
|
+
:root .pkt-color-bg-brand-dark-beige-1000 {
|
|
375
|
+
background-color: #D0BFAE !important;
|
|
376
|
+
}
|
|
377
|
+
:root .pkt-color-txt-brand-dark-beige-1000 {
|
|
378
|
+
color: #D0BFAE !important;
|
|
379
|
+
}
|
|
380
|
+
:root .pkt-color-border-brand-dark-beige-1000 {
|
|
381
|
+
border-color: #D0BFAE !important;
|
|
382
|
+
}
|
|
383
|
+
:root .pkt-color-bg-brand-neutrals-white {
|
|
384
|
+
background-color: #FFFFFF !important;
|
|
385
|
+
}
|
|
386
|
+
:root .pkt-color-txt-brand-neutrals-white {
|
|
387
|
+
color: #FFFFFF !important;
|
|
388
|
+
}
|
|
389
|
+
:root .pkt-color-border-brand-neutrals-white {
|
|
390
|
+
border-color: #FFFFFF !important;
|
|
391
|
+
}
|
|
392
|
+
:root .pkt-color-bg-brand-neutrals-100 {
|
|
393
|
+
background-color: #F9F9F9 !important;
|
|
394
|
+
}
|
|
395
|
+
:root .pkt-color-txt-brand-neutrals-100 {
|
|
396
|
+
color: #F9F9F9 !important;
|
|
397
|
+
}
|
|
398
|
+
:root .pkt-color-border-brand-neutrals-100 {
|
|
399
|
+
border-color: #F9F9F9 !important;
|
|
400
|
+
}
|
|
401
|
+
:root .pkt-color-bg-brand-neutrals-200 {
|
|
402
|
+
background-color: #F2F2F2 !important;
|
|
403
|
+
}
|
|
404
|
+
:root .pkt-color-txt-brand-neutrals-200 {
|
|
405
|
+
color: #F2F2F2 !important;
|
|
406
|
+
}
|
|
407
|
+
:root .pkt-color-border-brand-neutrals-200 {
|
|
408
|
+
border-color: #F2F2F2 !important;
|
|
409
|
+
}
|
|
410
|
+
:root .pkt-color-bg-brand-neutrals-1000 {
|
|
411
|
+
background-color: #2C2C2C !important;
|
|
412
|
+
}
|
|
413
|
+
:root .pkt-color-txt-brand-neutrals-1000 {
|
|
414
|
+
color: #2C2C2C !important;
|
|
415
|
+
}
|
|
416
|
+
:root .pkt-color-border-brand-neutrals-1000 {
|
|
417
|
+
border-color: #2C2C2C !important;
|
|
418
|
+
}
|
|
419
|
+
:root .pkt-color-bg-brand-neutrals-black {
|
|
420
|
+
background-color: #000000 !important;
|
|
421
|
+
}
|
|
422
|
+
:root .pkt-color-txt-brand-neutrals-black {
|
|
423
|
+
color: #000000 !important;
|
|
424
|
+
}
|
|
425
|
+
:root .pkt-color-border-brand-neutrals-black {
|
|
426
|
+
border-color: #000000 !important;
|
|
427
|
+
}
|
|
428
|
+
:root .pkt-color-bg-brand-neutrals-transparent {
|
|
429
|
+
background-color: transparent !important;
|
|
430
|
+
}
|
|
431
|
+
:root .pkt-color-txt-brand-neutrals-transparent {
|
|
432
|
+
color: transparent !important;
|
|
433
|
+
}
|
|
434
|
+
:root .pkt-color-border-brand-neutrals-transparent {
|
|
435
|
+
border-color: transparent !important;
|
|
436
|
+
}
|
|
437
|
+
:root .pkt-color-bg-brand-purple-1000 {
|
|
438
|
+
background-color: #E0ADFF !important;
|
|
439
|
+
}
|
|
440
|
+
:root .pkt-color-txt-brand-purple-1000 {
|
|
441
|
+
color: #E0ADFF !important;
|
|
442
|
+
}
|
|
443
|
+
:root .pkt-color-border-brand-purple-1000 {
|
|
444
|
+
border-color: #E0ADFF !important;
|
|
445
|
+
}
|
|
446
|
+
:root .pkt-color-bg-grays-gray-100 {
|
|
447
|
+
background-color: #E6E6E6 !important;
|
|
448
|
+
}
|
|
449
|
+
:root .pkt-color-txt-grays-gray-100 {
|
|
450
|
+
color: #E6E6E6 !important;
|
|
451
|
+
}
|
|
452
|
+
:root .pkt-color-border-grays-gray-100 {
|
|
453
|
+
border-color: #E6E6E6 !important;
|
|
454
|
+
}
|
|
455
|
+
:root .pkt-color-bg-grays-gray-200 {
|
|
456
|
+
background-color: #CCCCCC !important;
|
|
457
|
+
}
|
|
458
|
+
:root .pkt-color-txt-grays-gray-200 {
|
|
459
|
+
color: #CCCCCC !important;
|
|
460
|
+
}
|
|
461
|
+
:root .pkt-color-border-grays-gray-200 {
|
|
462
|
+
border-color: #CCCCCC !important;
|
|
463
|
+
}
|
|
464
|
+
:root .pkt-color-bg-grays-gray-300 {
|
|
465
|
+
background-color: #B3B3B3 !important;
|
|
466
|
+
}
|
|
467
|
+
:root .pkt-color-txt-grays-gray-300 {
|
|
468
|
+
color: #B3B3B3 !important;
|
|
469
|
+
}
|
|
470
|
+
:root .pkt-color-border-grays-gray-300 {
|
|
471
|
+
border-color: #B3B3B3 !important;
|
|
472
|
+
}
|
|
473
|
+
:root .pkt-color-bg-grays-gray-400 {
|
|
474
|
+
background-color: #9A9A9A !important;
|
|
475
|
+
}
|
|
476
|
+
:root .pkt-color-txt-grays-gray-400 {
|
|
477
|
+
color: #9A9A9A !important;
|
|
478
|
+
}
|
|
479
|
+
:root .pkt-color-border-grays-gray-400 {
|
|
480
|
+
border-color: #9A9A9A !important;
|
|
481
|
+
}
|
|
482
|
+
:root .pkt-color-bg-grays-gray-500 {
|
|
483
|
+
background-color: #808080 !important;
|
|
484
|
+
}
|
|
485
|
+
:root .pkt-color-txt-grays-gray-500 {
|
|
486
|
+
color: #808080 !important;
|
|
487
|
+
}
|
|
488
|
+
:root .pkt-color-border-grays-gray-500 {
|
|
489
|
+
border-color: #808080 !important;
|
|
490
|
+
}
|
|
491
|
+
:root .pkt-color-bg-grays-gray-600 {
|
|
492
|
+
background-color: #666666 !important;
|
|
493
|
+
}
|
|
494
|
+
:root .pkt-color-txt-grays-gray-600 {
|
|
495
|
+
color: #666666 !important;
|
|
496
|
+
}
|
|
497
|
+
:root .pkt-color-border-grays-gray-600 {
|
|
498
|
+
border-color: #666666 !important;
|
|
499
|
+
}
|
|
500
|
+
:root .pkt-color-bg-grays-gray-700 {
|
|
501
|
+
background-color: #4D4D4D !important;
|
|
502
|
+
}
|
|
503
|
+
:root .pkt-color-txt-grays-gray-700 {
|
|
504
|
+
color: #4D4D4D !important;
|
|
505
|
+
}
|
|
506
|
+
:root .pkt-color-border-grays-gray-700 {
|
|
507
|
+
border-color: #4D4D4D !important;
|
|
508
|
+
}
|
|
509
|
+
:root .pkt-color-bg-grays-gray-800 {
|
|
510
|
+
background-color: #333333 !important;
|
|
511
|
+
}
|
|
512
|
+
:root .pkt-color-txt-grays-gray-800 {
|
|
513
|
+
color: #333333 !important;
|
|
514
|
+
}
|
|
515
|
+
:root .pkt-color-border-grays-gray-800 {
|
|
516
|
+
border-color: #333333 !important;
|
|
517
|
+
}
|
|
518
|
+
:root .pkt-color-bg-grays-gray-900 {
|
|
519
|
+
background-color: #1A1A1A !important;
|
|
520
|
+
}
|
|
521
|
+
:root .pkt-color-txt-grays-gray-900 {
|
|
522
|
+
color: #1A1A1A !important;
|
|
523
|
+
}
|
|
524
|
+
:root .pkt-color-border-grays-gray-900 {
|
|
525
|
+
border-color: #1A1A1A !important;
|
|
526
|
+
}
|
|
527
|
+
:root .pkt-color-bg-grays-gray-1000 {
|
|
528
|
+
background-color: #2C2C2C !important;
|
|
529
|
+
}
|
|
530
|
+
:root .pkt-color-txt-grays-gray-1000 {
|
|
531
|
+
color: #2C2C2C !important;
|
|
532
|
+
}
|
|
533
|
+
:root .pkt-color-border-grays-gray-1000 {
|
|
534
|
+
border-color: #2C2C2C !important;
|
|
535
|
+
}
|
|
536
|
+
:root .pkt-color-bg-background-card {
|
|
537
|
+
background-color: var(--pkt-color-background-card) !important;
|
|
538
|
+
}
|
|
539
|
+
:root .pkt-color-txt-background-card {
|
|
540
|
+
color: var(--pkt-color-background-card) !important;
|
|
541
|
+
}
|
|
542
|
+
:root .pkt-color-border-background-card {
|
|
543
|
+
border-color: var(--pkt-color-background-card) !important;
|
|
544
|
+
}
|
|
545
|
+
:root .pkt-color-bg-background-default {
|
|
546
|
+
background-color: var(--pkt-color-background-default) !important;
|
|
547
|
+
}
|
|
548
|
+
:root .pkt-color-txt-background-default {
|
|
549
|
+
color: var(--pkt-color-background-default) !important;
|
|
550
|
+
}
|
|
551
|
+
:root .pkt-color-border-background-default {
|
|
552
|
+
border-color: var(--pkt-color-background-default) !important;
|
|
553
|
+
}
|
|
554
|
+
:root .pkt-color-bg-background-subtle {
|
|
555
|
+
background-color: var(--pkt-color-background-subtle) !important;
|
|
556
|
+
}
|
|
557
|
+
:root .pkt-color-txt-background-subtle {
|
|
558
|
+
color: var(--pkt-color-background-subtle) !important;
|
|
559
|
+
}
|
|
560
|
+
:root .pkt-color-border-background-subtle {
|
|
561
|
+
border-color: var(--pkt-color-background-subtle) !important;
|
|
562
|
+
}
|
|
563
|
+
:root .pkt-color-bg-background-transparent {
|
|
564
|
+
background-color: var(--pkt-color-background-transparent) !important;
|
|
565
|
+
}
|
|
566
|
+
:root .pkt-color-txt-background-transparent {
|
|
567
|
+
color: var(--pkt-color-background-transparent) !important;
|
|
568
|
+
}
|
|
569
|
+
:root .pkt-color-border-background-transparent {
|
|
570
|
+
border-color: var(--pkt-color-background-transparent) !important;
|
|
571
|
+
}
|
|
572
|
+
:root .pkt-color-bg-border-default {
|
|
573
|
+
background-color: var(--pkt-color-border-default) !important;
|
|
574
|
+
}
|
|
575
|
+
:root .pkt-color-txt-border-default {
|
|
576
|
+
color: var(--pkt-color-border-default) !important;
|
|
577
|
+
}
|
|
578
|
+
:root .pkt-color-border-border-default {
|
|
579
|
+
border-color: var(--pkt-color-border-default) !important;
|
|
580
|
+
}
|
|
581
|
+
:root .pkt-color-bg-border-beige {
|
|
582
|
+
background-color: var(--pkt-color-border-beige) !important;
|
|
583
|
+
}
|
|
584
|
+
:root .pkt-color-txt-border-beige {
|
|
585
|
+
color: var(--pkt-color-border-beige) !important;
|
|
586
|
+
}
|
|
587
|
+
:root .pkt-color-border-border-beige {
|
|
588
|
+
border-color: var(--pkt-color-border-beige) !important;
|
|
589
|
+
}
|
|
590
|
+
:root .pkt-color-bg-border-blue {
|
|
591
|
+
background-color: var(--pkt-color-border-blue) !important;
|
|
592
|
+
}
|
|
593
|
+
:root .pkt-color-txt-border-blue {
|
|
594
|
+
color: var(--pkt-color-border-blue) !important;
|
|
595
|
+
}
|
|
596
|
+
:root .pkt-color-border-border-blue {
|
|
597
|
+
border-color: var(--pkt-color-border-blue) !important;
|
|
598
|
+
}
|
|
599
|
+
:root .pkt-color-bg-border-gray {
|
|
600
|
+
background-color: var(--pkt-color-border-gray) !important;
|
|
601
|
+
}
|
|
602
|
+
:root .pkt-color-txt-border-gray {
|
|
603
|
+
color: var(--pkt-color-border-gray) !important;
|
|
604
|
+
}
|
|
605
|
+
:root .pkt-color-border-border-gray {
|
|
606
|
+
border-color: var(--pkt-color-border-gray) !important;
|
|
607
|
+
}
|
|
608
|
+
:root .pkt-color-bg-border-green {
|
|
609
|
+
background-color: var(--pkt-color-border-green) !important;
|
|
610
|
+
}
|
|
611
|
+
:root .pkt-color-txt-border-green {
|
|
612
|
+
color: var(--pkt-color-border-green) !important;
|
|
613
|
+
}
|
|
614
|
+
:root .pkt-color-border-border-green {
|
|
615
|
+
border-color: var(--pkt-color-border-green) !important;
|
|
616
|
+
}
|
|
617
|
+
:root .pkt-color-bg-border-light-beige {
|
|
618
|
+
background-color: var(--pkt-color-border-light-beige) !important;
|
|
619
|
+
}
|
|
620
|
+
:root .pkt-color-txt-border-light-beige {
|
|
621
|
+
color: var(--pkt-color-border-light-beige) !important;
|
|
622
|
+
}
|
|
623
|
+
:root .pkt-color-border-border-light-beige {
|
|
624
|
+
border-color: var(--pkt-color-border-light-beige) !important;
|
|
625
|
+
}
|
|
626
|
+
:root .pkt-color-bg-border-red {
|
|
627
|
+
background-color: var(--pkt-color-border-red) !important;
|
|
628
|
+
}
|
|
629
|
+
:root .pkt-color-txt-border-red {
|
|
630
|
+
color: var(--pkt-color-border-red) !important;
|
|
631
|
+
}
|
|
632
|
+
:root .pkt-color-border-border-red {
|
|
633
|
+
border-color: var(--pkt-color-border-red) !important;
|
|
634
|
+
}
|
|
635
|
+
:root .pkt-color-bg-border-subtle {
|
|
636
|
+
background-color: var(--pkt-color-border-subtle) !important;
|
|
637
|
+
}
|
|
638
|
+
:root .pkt-color-txt-border-subtle {
|
|
639
|
+
color: var(--pkt-color-border-subtle) !important;
|
|
640
|
+
}
|
|
641
|
+
:root .pkt-color-border-border-subtle {
|
|
642
|
+
border-color: var(--pkt-color-border-subtle) !important;
|
|
643
|
+
}
|
|
644
|
+
:root .pkt-color-bg-border-yellow {
|
|
645
|
+
background-color: var(--pkt-color-border-yellow) !important;
|
|
646
|
+
}
|
|
647
|
+
:root .pkt-color-txt-border-yellow {
|
|
648
|
+
color: var(--pkt-color-border-yellow) !important;
|
|
649
|
+
}
|
|
650
|
+
:root .pkt-color-border-border-yellow {
|
|
651
|
+
border-color: var(--pkt-color-border-yellow) !important;
|
|
652
|
+
}
|
|
653
|
+
:root .pkt-color-bg-border-states-active {
|
|
654
|
+
background-color: var(--pkt-color-border-states-active) !important;
|
|
655
|
+
}
|
|
656
|
+
:root .pkt-color-txt-border-states-active {
|
|
657
|
+
color: var(--pkt-color-border-states-active) !important;
|
|
658
|
+
}
|
|
659
|
+
:root .pkt-color-border-border-states-active {
|
|
660
|
+
border-color: var(--pkt-color-border-states-active) !important;
|
|
661
|
+
}
|
|
662
|
+
:root .pkt-color-bg-border-states-disabled {
|
|
663
|
+
background-color: var(--pkt-color-border-states-disabled) !important;
|
|
664
|
+
}
|
|
665
|
+
:root .pkt-color-txt-border-states-disabled {
|
|
666
|
+
color: var(--pkt-color-border-states-disabled) !important;
|
|
667
|
+
}
|
|
668
|
+
:root .pkt-color-border-border-states-disabled {
|
|
669
|
+
border-color: var(--pkt-color-border-states-disabled) !important;
|
|
670
|
+
}
|
|
671
|
+
:root .pkt-color-bg-border-states-focus {
|
|
672
|
+
background-color: var(--pkt-color-border-states-focus) !important;
|
|
673
|
+
}
|
|
674
|
+
:root .pkt-color-txt-border-states-focus {
|
|
675
|
+
color: var(--pkt-color-border-states-focus) !important;
|
|
676
|
+
}
|
|
677
|
+
:root .pkt-color-border-border-states-focus {
|
|
678
|
+
border-color: var(--pkt-color-border-states-focus) !important;
|
|
679
|
+
}
|
|
680
|
+
:root .pkt-color-bg-border-states-hover {
|
|
681
|
+
background-color: var(--pkt-color-border-states-hover) !important;
|
|
682
|
+
}
|
|
683
|
+
:root .pkt-color-txt-border-states-hover {
|
|
684
|
+
color: var(--pkt-color-border-states-hover) !important;
|
|
685
|
+
}
|
|
686
|
+
:root .pkt-color-border-border-states-hover {
|
|
687
|
+
border-color: var(--pkt-color-border-states-hover) !important;
|
|
688
|
+
}
|
|
689
|
+
:root .pkt-color-bg-surface-default-faded-green {
|
|
690
|
+
background-color: var(--pkt-color-surface-default-faded-green) !important;
|
|
691
|
+
}
|
|
692
|
+
:root .pkt-color-txt-surface-default-faded-green {
|
|
693
|
+
color: var(--pkt-color-surface-default-faded-green) !important;
|
|
694
|
+
}
|
|
695
|
+
:root .pkt-color-border-surface-default-faded-green {
|
|
696
|
+
border-color: var(--pkt-color-surface-default-faded-green) !important;
|
|
697
|
+
}
|
|
698
|
+
:root .pkt-color-bg-surface-default-faded-red {
|
|
699
|
+
background-color: var(--pkt-color-surface-default-faded-red) !important;
|
|
700
|
+
}
|
|
701
|
+
:root .pkt-color-txt-surface-default-faded-red {
|
|
702
|
+
color: var(--pkt-color-surface-default-faded-red) !important;
|
|
703
|
+
}
|
|
704
|
+
:root .pkt-color-border-surface-default-faded-red {
|
|
705
|
+
border-color: var(--pkt-color-surface-default-faded-red) !important;
|
|
706
|
+
}
|
|
707
|
+
:root .pkt-color-bg-surface-default-gray {
|
|
708
|
+
background-color: var(--pkt-color-surface-default-gray) !important;
|
|
709
|
+
}
|
|
710
|
+
:root .pkt-color-txt-surface-default-gray {
|
|
711
|
+
color: var(--pkt-color-surface-default-gray) !important;
|
|
712
|
+
}
|
|
713
|
+
:root .pkt-color-border-surface-default-gray {
|
|
714
|
+
border-color: var(--pkt-color-surface-default-gray) !important;
|
|
715
|
+
}
|
|
716
|
+
:root .pkt-color-bg-surface-default-light-beige {
|
|
717
|
+
background-color: var(--pkt-color-surface-default-light-beige) !important;
|
|
718
|
+
}
|
|
719
|
+
:root .pkt-color-txt-surface-default-light-beige {
|
|
720
|
+
color: var(--pkt-color-surface-default-light-beige) !important;
|
|
721
|
+
}
|
|
722
|
+
:root .pkt-color-border-surface-default-light-beige {
|
|
723
|
+
border-color: var(--pkt-color-surface-default-light-beige) !important;
|
|
724
|
+
}
|
|
725
|
+
:root .pkt-color-bg-surface-default-light-blue {
|
|
726
|
+
background-color: var(--pkt-color-surface-default-light-blue) !important;
|
|
727
|
+
}
|
|
728
|
+
:root .pkt-color-txt-surface-default-light-blue {
|
|
729
|
+
color: var(--pkt-color-surface-default-light-blue) !important;
|
|
730
|
+
}
|
|
731
|
+
:root .pkt-color-border-surface-default-light-blue {
|
|
732
|
+
border-color: var(--pkt-color-surface-default-light-blue) !important;
|
|
733
|
+
}
|
|
734
|
+
:root .pkt-color-bg-surface-default-light-green {
|
|
735
|
+
background-color: var(--pkt-color-surface-default-light-green) !important;
|
|
736
|
+
}
|
|
737
|
+
:root .pkt-color-txt-surface-default-light-green {
|
|
738
|
+
color: var(--pkt-color-surface-default-light-green) !important;
|
|
739
|
+
}
|
|
740
|
+
:root .pkt-color-border-surface-default-light-green {
|
|
741
|
+
border-color: var(--pkt-color-surface-default-light-green) !important;
|
|
742
|
+
}
|
|
743
|
+
:root .pkt-color-bg-surface-default-red {
|
|
744
|
+
background-color: var(--pkt-color-surface-default-red) !important;
|
|
745
|
+
}
|
|
746
|
+
:root .pkt-color-txt-surface-default-red {
|
|
747
|
+
color: var(--pkt-color-surface-default-red) !important;
|
|
748
|
+
}
|
|
749
|
+
:root .pkt-color-border-surface-default-red {
|
|
750
|
+
border-color: var(--pkt-color-surface-default-red) !important;
|
|
751
|
+
}
|
|
752
|
+
:root .pkt-color-bg-surface-default-yellow {
|
|
753
|
+
background-color: var(--pkt-color-surface-default-yellow) !important;
|
|
754
|
+
}
|
|
755
|
+
:root .pkt-color-txt-surface-default-yellow {
|
|
756
|
+
color: var(--pkt-color-surface-default-yellow) !important;
|
|
757
|
+
}
|
|
758
|
+
:root .pkt-color-border-surface-default-yellow {
|
|
759
|
+
border-color: var(--pkt-color-surface-default-yellow) !important;
|
|
760
|
+
}
|
|
761
|
+
:root .pkt-color-bg-surface-strong-beige {
|
|
762
|
+
background-color: var(--pkt-color-surface-strong-beige) !important;
|
|
763
|
+
}
|
|
764
|
+
:root .pkt-color-txt-surface-strong-beige {
|
|
765
|
+
color: var(--pkt-color-surface-strong-beige) !important;
|
|
766
|
+
}
|
|
767
|
+
:root .pkt-color-border-surface-strong-beige {
|
|
768
|
+
border-color: var(--pkt-color-surface-strong-beige) !important;
|
|
769
|
+
}
|
|
770
|
+
:root .pkt-color-bg-surface-strong-blue {
|
|
771
|
+
background-color: var(--pkt-color-surface-strong-blue) !important;
|
|
772
|
+
}
|
|
773
|
+
:root .pkt-color-txt-surface-strong-blue {
|
|
774
|
+
color: var(--pkt-color-surface-strong-blue) !important;
|
|
775
|
+
}
|
|
776
|
+
:root .pkt-color-border-surface-strong-blue {
|
|
777
|
+
border-color: var(--pkt-color-surface-strong-blue) !important;
|
|
778
|
+
}
|
|
779
|
+
:root .pkt-color-bg-surface-strong-dark-blue {
|
|
780
|
+
background-color: var(--pkt-color-surface-strong-dark-blue) !important;
|
|
781
|
+
}
|
|
782
|
+
:root .pkt-color-txt-surface-strong-dark-blue {
|
|
783
|
+
color: var(--pkt-color-surface-strong-dark-blue) !important;
|
|
784
|
+
}
|
|
785
|
+
:root .pkt-color-border-surface-strong-dark-blue {
|
|
786
|
+
border-color: var(--pkt-color-surface-strong-dark-blue) !important;
|
|
787
|
+
}
|
|
788
|
+
:root .pkt-color-bg-surface-strong-dark-green {
|
|
789
|
+
background-color: var(--pkt-color-surface-strong-dark-green) !important;
|
|
790
|
+
}
|
|
791
|
+
:root .pkt-color-txt-surface-strong-dark-green {
|
|
792
|
+
color: var(--pkt-color-surface-strong-dark-green) !important;
|
|
793
|
+
}
|
|
794
|
+
:root .pkt-color-border-surface-strong-dark-green {
|
|
795
|
+
border-color: var(--pkt-color-surface-strong-dark-green) !important;
|
|
796
|
+
}
|
|
797
|
+
:root .pkt-color-bg-surface-strong-gray {
|
|
798
|
+
background-color: var(--pkt-color-surface-strong-gray) !important;
|
|
799
|
+
}
|
|
800
|
+
:root .pkt-color-txt-surface-strong-gray {
|
|
801
|
+
color: var(--pkt-color-surface-strong-gray) !important;
|
|
802
|
+
}
|
|
803
|
+
:root .pkt-color-border-surface-strong-gray {
|
|
804
|
+
border-color: var(--pkt-color-surface-strong-gray) !important;
|
|
805
|
+
}
|
|
806
|
+
:root .pkt-color-bg-surface-strong-green {
|
|
807
|
+
background-color: var(--pkt-color-surface-strong-green) !important;
|
|
808
|
+
}
|
|
809
|
+
:root .pkt-color-txt-surface-strong-green {
|
|
810
|
+
color: var(--pkt-color-surface-strong-green) !important;
|
|
811
|
+
}
|
|
812
|
+
:root .pkt-color-border-surface-strong-green {
|
|
813
|
+
border-color: var(--pkt-color-surface-strong-green) !important;
|
|
814
|
+
}
|
|
815
|
+
:root .pkt-color-bg-surface-strong-light-green {
|
|
816
|
+
background-color: var(--pkt-color-surface-strong-light-green) !important;
|
|
817
|
+
}
|
|
818
|
+
:root .pkt-color-txt-surface-strong-light-green {
|
|
819
|
+
color: var(--pkt-color-surface-strong-light-green) !important;
|
|
820
|
+
}
|
|
821
|
+
:root .pkt-color-border-surface-strong-light-green {
|
|
822
|
+
border-color: var(--pkt-color-surface-strong-light-green) !important;
|
|
823
|
+
}
|
|
824
|
+
:root .pkt-color-bg-surface-strong-red {
|
|
825
|
+
background-color: var(--pkt-color-surface-strong-red) !important;
|
|
826
|
+
}
|
|
827
|
+
:root .pkt-color-txt-surface-strong-red {
|
|
828
|
+
color: var(--pkt-color-surface-strong-red) !important;
|
|
829
|
+
}
|
|
830
|
+
:root .pkt-color-border-surface-strong-red {
|
|
831
|
+
border-color: var(--pkt-color-surface-strong-red) !important;
|
|
832
|
+
}
|
|
833
|
+
:root .pkt-color-bg-surface-strong-yellow {
|
|
834
|
+
background-color: var(--pkt-color-surface-strong-yellow) !important;
|
|
835
|
+
}
|
|
836
|
+
:root .pkt-color-txt-surface-strong-yellow {
|
|
837
|
+
color: var(--pkt-color-surface-strong-yellow) !important;
|
|
838
|
+
}
|
|
839
|
+
:root .pkt-color-border-surface-strong-yellow {
|
|
840
|
+
border-color: var(--pkt-color-surface-strong-yellow) !important;
|
|
841
|
+
}
|
|
842
|
+
:root .pkt-color-bg-surface-subtle-light-blue {
|
|
843
|
+
background-color: var(--pkt-color-surface-subtle-light-blue) !important;
|
|
844
|
+
}
|
|
845
|
+
:root .pkt-color-txt-surface-subtle-light-blue {
|
|
846
|
+
color: var(--pkt-color-surface-subtle-light-blue) !important;
|
|
847
|
+
}
|
|
848
|
+
:root .pkt-color-border-surface-subtle-light-blue {
|
|
849
|
+
border-color: var(--pkt-color-surface-subtle-light-blue) !important;
|
|
850
|
+
}
|
|
851
|
+
:root .pkt-color-bg-surface-subtle-light-red {
|
|
852
|
+
background-color: var(--pkt-color-surface-subtle-light-red) !important;
|
|
853
|
+
}
|
|
854
|
+
:root .pkt-color-txt-surface-subtle-light-red {
|
|
855
|
+
color: var(--pkt-color-surface-subtle-light-red) !important;
|
|
856
|
+
}
|
|
857
|
+
:root .pkt-color-border-surface-subtle-light-red {
|
|
858
|
+
border-color: var(--pkt-color-surface-subtle-light-red) !important;
|
|
859
|
+
}
|
|
860
|
+
:root .pkt-color-bg-surface-subtle-pale-blue {
|
|
861
|
+
background-color: var(--pkt-color-surface-subtle-pale-blue) !important;
|
|
862
|
+
}
|
|
863
|
+
:root .pkt-color-txt-surface-subtle-pale-blue {
|
|
864
|
+
color: var(--pkt-color-surface-subtle-pale-blue) !important;
|
|
865
|
+
}
|
|
866
|
+
:root .pkt-color-border-surface-subtle-pale-blue {
|
|
867
|
+
border-color: var(--pkt-color-surface-subtle-pale-blue) !important;
|
|
868
|
+
}
|
|
869
|
+
:root .pkt-color-bg-surface-subtle-white {
|
|
870
|
+
background-color: var(--pkt-color-surface-subtle-white) !important;
|
|
871
|
+
}
|
|
872
|
+
:root .pkt-color-txt-surface-subtle-white {
|
|
873
|
+
color: var(--pkt-color-surface-subtle-white) !important;
|
|
874
|
+
}
|
|
875
|
+
:root .pkt-color-border-surface-subtle-white {
|
|
876
|
+
border-color: var(--pkt-color-surface-subtle-white) !important;
|
|
877
|
+
}
|
|
878
|
+
:root .pkt-color-bg-text-body-dark {
|
|
879
|
+
background-color: var(--pkt-color-text-body-dark) !important;
|
|
880
|
+
}
|
|
881
|
+
:root .pkt-color-txt-text-body-dark {
|
|
882
|
+
color: var(--pkt-color-text-body-dark) !important;
|
|
883
|
+
}
|
|
884
|
+
:root .pkt-color-border-text-body-dark {
|
|
885
|
+
border-color: var(--pkt-color-text-body-dark) !important;
|
|
886
|
+
}
|
|
887
|
+
:root .pkt-color-bg-text-body-default {
|
|
888
|
+
background-color: var(--pkt-color-text-body-default) !important;
|
|
889
|
+
}
|
|
890
|
+
:root .pkt-color-txt-text-body-default {
|
|
891
|
+
color: var(--pkt-color-text-body-default) !important;
|
|
892
|
+
}
|
|
893
|
+
:root .pkt-color-border-text-body-default {
|
|
894
|
+
border-color: var(--pkt-color-text-body-default) !important;
|
|
895
|
+
}
|
|
896
|
+
:root .pkt-color-bg-text-body-light {
|
|
897
|
+
background-color: var(--pkt-color-text-body-light) !important;
|
|
898
|
+
}
|
|
899
|
+
:root .pkt-color-txt-text-body-light {
|
|
900
|
+
color: var(--pkt-color-text-body-light) !important;
|
|
901
|
+
}
|
|
902
|
+
:root .pkt-color-border-text-body-light {
|
|
903
|
+
border-color: var(--pkt-color-text-body-light) !important;
|
|
904
|
+
}
|
|
905
|
+
:root .pkt-color-bg-text-placeholder {
|
|
906
|
+
background-color: var(--pkt-color-text-placeholder) !important;
|
|
907
|
+
}
|
|
908
|
+
:root .pkt-color-txt-text-placeholder {
|
|
909
|
+
color: var(--pkt-color-text-placeholder) !important;
|
|
910
|
+
}
|
|
911
|
+
:root .pkt-color-border-text-placeholder {
|
|
912
|
+
border-color: var(--pkt-color-text-placeholder) !important;
|
|
913
|
+
}
|
|
914
|
+
:root .pkt-color-bg-text-action-disabled {
|
|
915
|
+
background-color: var(--pkt-color-text-action-disabled) !important;
|
|
916
|
+
}
|
|
917
|
+
:root .pkt-color-txt-text-action-disabled {
|
|
918
|
+
color: var(--pkt-color-text-action-disabled) !important;
|
|
919
|
+
}
|
|
920
|
+
:root .pkt-color-border-text-action-disabled {
|
|
921
|
+
border-color: var(--pkt-color-text-action-disabled) !important;
|
|
922
|
+
}
|
|
923
|
+
:root .pkt-color-bg-text-action-active {
|
|
924
|
+
background-color: var(--pkt-color-text-action-active) !important;
|
|
925
|
+
}
|
|
926
|
+
:root .pkt-color-txt-text-action-active {
|
|
927
|
+
color: var(--pkt-color-text-action-active) !important;
|
|
928
|
+
}
|
|
929
|
+
:root .pkt-color-border-text-action-active {
|
|
930
|
+
border-color: var(--pkt-color-text-action-active) !important;
|
|
931
|
+
}
|
|
932
|
+
:root .pkt-color-bg-text-action-hover {
|
|
933
|
+
background-color: var(--pkt-color-text-action-hover) !important;
|
|
934
|
+
}
|
|
935
|
+
:root .pkt-color-txt-text-action-hover {
|
|
936
|
+
color: var(--pkt-color-text-action-hover) !important;
|
|
937
|
+
}
|
|
938
|
+
:root .pkt-color-border-text-action-hover {
|
|
939
|
+
border-color: var(--pkt-color-text-action-hover) !important;
|
|
940
|
+
}
|
|
941
|
+
:root .pkt-color-bg-text-action-normal {
|
|
942
|
+
background-color: var(--pkt-color-text-action-normal) !important;
|
|
943
|
+
}
|
|
944
|
+
:root .pkt-color-txt-text-action-normal {
|
|
945
|
+
color: var(--pkt-color-text-action-normal) !important;
|
|
946
|
+
}
|
|
947
|
+
:root .pkt-color-border-text-action-normal {
|
|
948
|
+
border-color: var(--pkt-color-text-action-normal) !important;
|
|
949
|
+
}
|
|
950
|
+
:root .bg-color-blue {
|
|
109
951
|
background-color: #6fe9ff !important;
|
|
110
952
|
}
|
|
111
|
-
|
|
112
|
-
.txt-color-blue {
|
|
953
|
+
:root .txt-color-blue {
|
|
113
954
|
color: #6fe9ff !important;
|
|
114
955
|
}
|
|
115
|
-
|
|
116
|
-
.bg-color-blue-light {
|
|
956
|
+
:root .bg-color-blue-light {
|
|
117
957
|
background-color: #b3f5ff !important;
|
|
118
958
|
}
|
|
119
|
-
|
|
120
|
-
.txt-color-blue-light {
|
|
959
|
+
:root .txt-color-blue-light {
|
|
121
960
|
color: #b3f5ff !important;
|
|
122
961
|
}
|
|
123
|
-
|
|
124
|
-
.bg-color-blue-dark {
|
|
962
|
+
:root .bg-color-blue-dark {
|
|
125
963
|
background-color: #2a2859 !important;
|
|
126
964
|
}
|
|
127
|
-
|
|
128
|
-
.txt-color-blue-dark {
|
|
965
|
+
:root .txt-color-blue-dark {
|
|
129
966
|
color: #2a2859 !important;
|
|
130
967
|
}
|
|
131
|
-
|
|
132
|
-
.bg-color-green {
|
|
968
|
+
:root .bg-color-green {
|
|
133
969
|
background-color: #43f8b6 !important;
|
|
134
970
|
}
|
|
135
|
-
|
|
136
|
-
.txt-color-green {
|
|
971
|
+
:root .txt-color-green {
|
|
137
972
|
color: #43f8b6 !important;
|
|
138
973
|
}
|
|
139
|
-
|
|
140
|
-
.bg-color-green-light {
|
|
974
|
+
:root .bg-color-green-light {
|
|
141
975
|
background-color: #c7f6c9 !important;
|
|
142
976
|
}
|
|
143
|
-
|
|
144
|
-
.txt-color-green-light {
|
|
977
|
+
:root .txt-color-green-light {
|
|
145
978
|
color: #c7f6c9 !important;
|
|
146
979
|
}
|
|
147
|
-
|
|
148
|
-
.bg-color-green-dark {
|
|
980
|
+
:root .bg-color-green-dark {
|
|
149
981
|
background-color: #034b45 !important;
|
|
150
982
|
}
|
|
151
|
-
|
|
152
|
-
.txt-color-green-dark {
|
|
983
|
+
:root .txt-color-green-dark {
|
|
153
984
|
color: #034b45 !important;
|
|
154
985
|
}
|
|
155
|
-
|
|
156
|
-
.bg-color-red {
|
|
986
|
+
:root .bg-color-red {
|
|
157
987
|
background-color: #ff8274 !important;
|
|
158
988
|
}
|
|
159
|
-
|
|
160
|
-
.txt-color-red {
|
|
989
|
+
:root .txt-color-red {
|
|
161
990
|
color: #ff8274 !important;
|
|
162
991
|
}
|
|
163
|
-
|
|
164
|
-
.bg-color-red-light {
|
|
992
|
+
:root .bg-color-red-light {
|
|
165
993
|
background-color: #ffb4ac !important;
|
|
166
994
|
}
|
|
167
|
-
|
|
168
|
-
.txt-color-red-light {
|
|
995
|
+
:root .txt-color-red-light {
|
|
169
996
|
color: #ffb4ac !important;
|
|
170
997
|
}
|
|
171
|
-
|
|
172
|
-
.bg-color-yellow {
|
|
998
|
+
:root .bg-color-yellow {
|
|
173
999
|
background-color: #f9c66b !important;
|
|
174
1000
|
}
|
|
175
|
-
|
|
176
|
-
.txt-color-yellow {
|
|
1001
|
+
:root .txt-color-yellow {
|
|
177
1002
|
color: #f9c66b !important;
|
|
178
1003
|
}
|
|
179
|
-
|
|
180
|
-
.bg-color-beige-light {
|
|
1004
|
+
:root .bg-color-beige-light {
|
|
181
1005
|
background-color: #f8f0dd !important;
|
|
182
1006
|
}
|
|
183
|
-
|
|
184
|
-
.txt-color-beige-light {
|
|
1007
|
+
:root .txt-color-beige-light {
|
|
185
1008
|
color: #f8f0dd !important;
|
|
186
1009
|
}
|
|
187
|
-
|
|
188
|
-
.bg-color-beige-dark {
|
|
1010
|
+
:root .bg-color-beige-dark {
|
|
189
1011
|
background-color: #d0bfae !important;
|
|
190
1012
|
}
|
|
191
|
-
|
|
192
|
-
.txt-color-beige-dark {
|
|
1013
|
+
:root .txt-color-beige-dark {
|
|
193
1014
|
color: #d0bfae !important;
|
|
194
1015
|
}
|
|
195
|
-
|
|
196
|
-
.bg-color-active {
|
|
1016
|
+
:root .bg-color-active {
|
|
197
1017
|
background-color: #1f42aa !important;
|
|
198
1018
|
}
|
|
199
|
-
|
|
200
|
-
.txt-color-active {
|
|
1019
|
+
:root .txt-color-active {
|
|
201
1020
|
color: #1f42aa !important;
|
|
202
1021
|
}
|
|
203
|
-
|
|
204
|
-
.bg-color-active-light {
|
|
1022
|
+
:root .bg-color-active-light {
|
|
205
1023
|
background-color: #b3f5ff !important;
|
|
206
1024
|
}
|
|
207
|
-
|
|
208
|
-
.txt-color-active-light {
|
|
1025
|
+
:root .txt-color-active-light {
|
|
209
1026
|
color: #b3f5ff !important;
|
|
210
1027
|
}
|
|
211
|
-
|
|
212
|
-
.bg-color-hover {
|
|
1028
|
+
:root .bg-color-hover {
|
|
213
1029
|
background-color: #1f42aa !important;
|
|
214
1030
|
}
|
|
215
|
-
|
|
216
|
-
.txt-color-hover {
|
|
1031
|
+
:root .txt-color-hover {
|
|
217
1032
|
color: #1f42aa !important;
|
|
218
1033
|
}
|
|
219
|
-
|
|
220
|
-
.bg-color-hover-light {
|
|
1034
|
+
:root .bg-color-hover-light {
|
|
221
1035
|
background-color: #b3f5ff !important;
|
|
222
1036
|
}
|
|
223
|
-
|
|
224
|
-
.txt-color-hover-light {
|
|
1037
|
+
:root .txt-color-hover-light {
|
|
225
1038
|
color: #b3f5ff !important;
|
|
226
1039
|
}
|
|
227
|
-
|
|
228
|
-
.bg-color-focus {
|
|
1040
|
+
:root .bg-color-focus {
|
|
229
1041
|
background-color: #e0adff !important;
|
|
230
1042
|
}
|
|
231
|
-
|
|
232
|
-
.txt-color-focus {
|
|
1043
|
+
:root .txt-color-focus {
|
|
233
1044
|
color: #e0adff !important;
|
|
234
1045
|
}
|
|
235
|
-
|
|
236
|
-
.bg-color-disabled {
|
|
1046
|
+
:root .bg-color-disabled {
|
|
237
1047
|
background-color: #4d4d4d !important;
|
|
238
1048
|
}
|
|
239
|
-
|
|
240
|
-
.txt-color-disabled {
|
|
1049
|
+
:root .txt-color-disabled {
|
|
241
1050
|
color: #4d4d4d !important;
|
|
242
1051
|
}
|
|
243
|
-
|
|
244
|
-
.bg-color-disabled-light {
|
|
1052
|
+
:root .bg-color-disabled-light {
|
|
245
1053
|
background-color: #f9f9f9 !important;
|
|
246
1054
|
}
|
|
247
|
-
|
|
248
|
-
.txt-color-disabled-light {
|
|
1055
|
+
:root .txt-color-disabled-light {
|
|
249
1056
|
color: #f9f9f9 !important;
|
|
250
1057
|
}
|
|
251
|
-
|
|
252
|
-
.bg-color-info {
|
|
1058
|
+
:root .bg-color-info {
|
|
253
1059
|
background-color: #2a2859 !important;
|
|
254
1060
|
}
|
|
255
|
-
|
|
256
|
-
.txt-color-info {
|
|
1061
|
+
:root .txt-color-info {
|
|
257
1062
|
color: #2a2859 !important;
|
|
258
1063
|
}
|
|
259
|
-
|
|
260
|
-
.bg-color-success {
|
|
1064
|
+
:root .bg-color-success {
|
|
261
1065
|
background-color: #034b45 !important;
|
|
262
1066
|
}
|
|
263
|
-
|
|
264
|
-
.txt-color-success {
|
|
1067
|
+
:root .txt-color-success {
|
|
265
1068
|
color: #034b45 !important;
|
|
266
1069
|
}
|
|
267
|
-
|
|
268
|
-
.bg-color-warning {
|
|
1070
|
+
:root .bg-color-warning {
|
|
269
1071
|
background-color: #774c01 !important;
|
|
270
1072
|
}
|
|
271
|
-
|
|
272
|
-
.txt-color-warning {
|
|
1073
|
+
:root .txt-color-warning {
|
|
273
1074
|
color: #774c01 !important;
|
|
274
1075
|
}
|
|
275
|
-
|
|
276
|
-
.bg-color-error {
|
|
1076
|
+
:root .bg-color-error {
|
|
277
1077
|
background-color: #96281c !important;
|
|
278
1078
|
}
|
|
279
|
-
|
|
280
|
-
.txt-color-error {
|
|
1079
|
+
:root .txt-color-error {
|
|
281
1080
|
color: #96281c !important;
|
|
282
1081
|
}
|
|
283
|
-
|
|
284
|
-
.bg-color-blue-dark-5 {
|
|
1082
|
+
:root .bg-color-blue-dark-5 {
|
|
285
1083
|
background-color: #f2f9ff !important;
|
|
286
1084
|
}
|
|
287
|
-
|
|
288
|
-
.txt-color-blue-dark-5 {
|
|
1085
|
+
:root .txt-color-blue-dark-5 {
|
|
289
1086
|
color: #f2f9ff !important;
|
|
290
1087
|
}
|
|
291
|
-
|
|
292
|
-
.bg-color-blue-dark-10 {
|
|
1088
|
+
:root .bg-color-blue-dark-10 {
|
|
293
1089
|
background-color: #d9e9f2 !important;
|
|
294
1090
|
}
|
|
295
|
-
|
|
296
|
-
.txt-color-blue-dark-10 {
|
|
1091
|
+
:root .txt-color-blue-dark-10 {
|
|
297
1092
|
color: #d9e9f2 !important;
|
|
298
1093
|
}
|
|
299
|
-
|
|
300
|
-
.bg-color-blue-5 {
|
|
1094
|
+
:root .bg-color-blue-5 {
|
|
301
1095
|
background-color: #f1fdff !important;
|
|
302
1096
|
}
|
|
303
|
-
|
|
304
|
-
.txt-color-blue-5 {
|
|
1097
|
+
:root .txt-color-blue-5 {
|
|
305
1098
|
color: #f1fdff !important;
|
|
306
1099
|
}
|
|
307
|
-
|
|
308
|
-
.bg-color-blue-10 {
|
|
1100
|
+
:root .bg-color-blue-10 {
|
|
309
1101
|
background-color: #e5fcff !important;
|
|
310
1102
|
}
|
|
311
|
-
|
|
312
|
-
.txt-color-blue-10 {
|
|
1103
|
+
:root .txt-color-blue-10 {
|
|
313
1104
|
color: #e5fcff !important;
|
|
314
1105
|
}
|
|
315
|
-
|
|
316
|
-
.bg-color-blue-60 {
|
|
1106
|
+
:root .bg-color-blue-60 {
|
|
317
1107
|
background-color: #d1f9ff !important;
|
|
318
1108
|
}
|
|
319
|
-
|
|
320
|
-
.txt-color-blue-60 {
|
|
1109
|
+
:root .txt-color-blue-60 {
|
|
321
1110
|
color: #d1f9ff !important;
|
|
322
1111
|
}
|
|
323
|
-
|
|
324
|
-
.bg-color-green-dark-5 {
|
|
1112
|
+
:root .bg-color-green-dark-5 {
|
|
325
1113
|
background-color: #f2fff3 !important;
|
|
326
1114
|
}
|
|
327
|
-
|
|
328
|
-
.txt-color-green-dark-5 {
|
|
1115
|
+
:root .txt-color-green-dark-5 {
|
|
329
1116
|
color: #f2fff3 !important;
|
|
330
1117
|
}
|
|
331
|
-
|
|
332
|
-
.bg-color-green-dark-10 {
|
|
1118
|
+
:root .bg-color-green-dark-10 {
|
|
333
1119
|
background-color: #d9f2ef !important;
|
|
334
1120
|
}
|
|
335
|
-
|
|
336
|
-
.txt-color-green-dark-10 {
|
|
1121
|
+
:root .txt-color-green-dark-10 {
|
|
337
1122
|
color: #d9f2ef !important;
|
|
338
1123
|
}
|
|
339
|
-
|
|
340
|
-
.bg-color-green-10 {
|
|
1124
|
+
:root .bg-color-green-10 {
|
|
341
1125
|
background-color: #e5ffe6 !important;
|
|
342
1126
|
}
|
|
343
|
-
|
|
344
|
-
.txt-color-green-10 {
|
|
1127
|
+
:root .txt-color-green-10 {
|
|
345
1128
|
color: #e5ffe6 !important;
|
|
346
1129
|
}
|
|
347
|
-
|
|
348
|
-
.bg-color-green-30 {
|
|
1130
|
+
:root .bg-color-green-30 {
|
|
349
1131
|
background-color: #c7fde9 !important;
|
|
350
1132
|
}
|
|
351
|
-
|
|
352
|
-
.txt-color-green-30 {
|
|
1133
|
+
:root .txt-color-green-30 {
|
|
353
1134
|
color: #c7fde9 !important;
|
|
354
1135
|
}
|
|
355
|
-
|
|
356
|
-
.bg-color-red-5 {
|
|
1136
|
+
:root .bg-color-red-5 {
|
|
357
1137
|
background-color: #fff3f2 !important;
|
|
358
1138
|
}
|
|
359
|
-
|
|
360
|
-
.txt-color-red-5 {
|
|
1139
|
+
:root .txt-color-red-5 {
|
|
361
1140
|
color: #fff3f2 !important;
|
|
362
1141
|
}
|
|
363
|
-
|
|
364
|
-
.bg-color-red-10 {
|
|
1142
|
+
:root .bg-color-red-10 {
|
|
365
1143
|
background-color: #ffe8e5 !important;
|
|
366
1144
|
}
|
|
367
|
-
|
|
368
|
-
.txt-color-red-10 {
|
|
1145
|
+
:root .txt-color-red-10 {
|
|
369
1146
|
color: #ffe8e5 !important;
|
|
370
1147
|
}
|
|
371
|
-
|
|
372
|
-
.bg-color-red-30 {
|
|
1148
|
+
:root .bg-color-red-30 {
|
|
373
1149
|
background-color: #ffdfdc !important;
|
|
374
1150
|
}
|
|
375
|
-
|
|
376
|
-
.txt-color-red-30 {
|
|
1151
|
+
:root .txt-color-red-30 {
|
|
377
1152
|
color: #ffdfdc !important;
|
|
378
1153
|
}
|
|
379
|
-
|
|
380
|
-
.bg-color-yellow-5 {
|
|
1154
|
+
:root .bg-color-yellow-5 {
|
|
381
1155
|
background-color: #fef9f0 !important;
|
|
382
1156
|
}
|
|
383
|
-
|
|
384
|
-
.txt-color-yellow-5 {
|
|
1157
|
+
:root .txt-color-yellow-5 {
|
|
385
1158
|
color: #fef9f0 !important;
|
|
386
1159
|
}
|
|
387
|
-
|
|
388
|
-
.bg-color-yellow-50 {
|
|
1160
|
+
:root .bg-color-yellow-50 {
|
|
389
1161
|
background-color: #ffe7bc !important;
|
|
390
1162
|
}
|
|
391
|
-
|
|
392
|
-
.txt-color-yellow-50 {
|
|
1163
|
+
:root .txt-color-yellow-50 {
|
|
393
1164
|
color: #ffe7bc !important;
|
|
394
1165
|
}
|
|
395
|
-
|
|
396
|
-
.bg-color-gray-light {
|
|
1166
|
+
:root .bg-color-gray-light {
|
|
397
1167
|
background-color: #f9f9f9 !important;
|
|
398
1168
|
}
|
|
399
|
-
|
|
400
|
-
.txt-color-gray-light {
|
|
1169
|
+
:root .txt-color-gray-light {
|
|
401
1170
|
color: #f9f9f9 !important;
|
|
402
1171
|
}
|
|
403
|
-
|
|
404
|
-
.bg-color-gray {
|
|
1172
|
+
:root .bg-color-gray {
|
|
405
1173
|
background-color: #f2f2f2 !important;
|
|
406
1174
|
}
|
|
407
|
-
|
|
408
|
-
.txt-color-gray {
|
|
1175
|
+
:root .txt-color-gray {
|
|
409
1176
|
color: #f2f2f2 !important;
|
|
410
1177
|
}
|
|
411
|
-
|
|
412
|
-
.bg-color-gray-dark {
|
|
1178
|
+
:root .bg-color-gray-dark {
|
|
413
1179
|
background-color: #2c2c2c !important;
|
|
414
1180
|
}
|
|
415
|
-
|
|
416
|
-
.txt-color-gray-dark {
|
|
1181
|
+
:root .txt-color-gray-dark {
|
|
417
1182
|
color: #2c2c2c !important;
|
|
418
1183
|
}
|
|
419
|
-
|
|
420
|
-
.bg-color-transparent {
|
|
1184
|
+
:root .bg-color-transparent {
|
|
421
1185
|
background-color: transparent !important;
|
|
422
1186
|
}
|
|
423
|
-
|
|
424
|
-
.txt-color-transparent {
|
|
1187
|
+
:root .txt-color-transparent {
|
|
425
1188
|
color: transparent !important;
|
|
426
1189
|
}
|
|
427
|
-
|
|
428
|
-
.bg-color-white {
|
|
1190
|
+
:root .bg-color-white {
|
|
429
1191
|
background-color: #fff !important;
|
|
430
1192
|
}
|
|
431
|
-
|
|
432
|
-
.txt-color-white {
|
|
1193
|
+
:root .txt-color-white {
|
|
433
1194
|
color: #fff !important;
|
|
434
1195
|
}
|
|
435
|
-
|
|
436
|
-
.bg-color-grayscale-10 {
|
|
1196
|
+
:root .bg-color-grayscale-10 {
|
|
437
1197
|
background-color: #e6e6e6 !important;
|
|
438
1198
|
}
|
|
439
|
-
|
|
440
|
-
.txt-color-grayscale-10 {
|
|
1199
|
+
:root .txt-color-grayscale-10 {
|
|
441
1200
|
color: #e6e6e6 !important;
|
|
442
1201
|
}
|
|
443
|
-
|
|
444
|
-
.bg-color-grayscale-20 {
|
|
1202
|
+
:root .bg-color-grayscale-20 {
|
|
445
1203
|
background-color: #ccc !important;
|
|
446
1204
|
}
|
|
447
|
-
|
|
448
|
-
.txt-color-grayscale-20 {
|
|
1205
|
+
:root .txt-color-grayscale-20 {
|
|
449
1206
|
color: #ccc !important;
|
|
450
1207
|
}
|
|
451
|
-
|
|
452
|
-
.bg-color-grayscale-30 {
|
|
1208
|
+
:root .bg-color-grayscale-30 {
|
|
453
1209
|
background-color: #b3b3b3 !important;
|
|
454
1210
|
}
|
|
455
|
-
|
|
456
|
-
.txt-color-grayscale-30 {
|
|
1211
|
+
:root .txt-color-grayscale-30 {
|
|
457
1212
|
color: #b3b3b3 !important;
|
|
458
1213
|
}
|
|
459
|
-
|
|
460
|
-
.bg-color-grayscale-40 {
|
|
1214
|
+
:root .bg-color-grayscale-40 {
|
|
461
1215
|
background-color: #9a9a9a !important;
|
|
462
1216
|
}
|
|
463
|
-
|
|
464
|
-
.txt-color-grayscale-40 {
|
|
1217
|
+
:root .txt-color-grayscale-40 {
|
|
465
1218
|
color: #9a9a9a !important;
|
|
466
1219
|
}
|
|
467
|
-
|
|
468
|
-
.bg-color-grayscale-50 {
|
|
1220
|
+
:root .bg-color-grayscale-50 {
|
|
469
1221
|
background-color: #808080 !important;
|
|
470
1222
|
}
|
|
471
|
-
|
|
472
|
-
.txt-color-grayscale-50 {
|
|
1223
|
+
:root .txt-color-grayscale-50 {
|
|
473
1224
|
color: #808080 !important;
|
|
474
1225
|
}
|
|
475
|
-
|
|
476
|
-
.bg-color-grayscale-60 {
|
|
1226
|
+
:root .bg-color-grayscale-60 {
|
|
477
1227
|
background-color: #666 !important;
|
|
478
1228
|
}
|
|
479
|
-
|
|
480
|
-
.txt-color-grayscale-60 {
|
|
1229
|
+
:root .txt-color-grayscale-60 {
|
|
481
1230
|
color: #666 !important;
|
|
482
1231
|
}
|
|
483
|
-
|
|
484
|
-
.bg-color-grayscale-70 {
|
|
1232
|
+
:root .bg-color-grayscale-70 {
|
|
485
1233
|
background-color: #4d4d4d !important;
|
|
486
1234
|
}
|
|
487
|
-
|
|
488
|
-
.txt-color-grayscale-70 {
|
|
1235
|
+
:root .txt-color-grayscale-70 {
|
|
489
1236
|
color: #4d4d4d !important;
|
|
490
1237
|
}
|
|
491
|
-
|
|
492
|
-
.bg-color-grayscale-80 {
|
|
1238
|
+
:root .bg-color-grayscale-80 {
|
|
493
1239
|
background-color: #333 !important;
|
|
494
1240
|
}
|
|
495
|
-
|
|
496
|
-
.txt-color-grayscale-80 {
|
|
1241
|
+
:root .txt-color-grayscale-80 {
|
|
497
1242
|
color: #333 !important;
|
|
498
1243
|
}
|
|
499
|
-
|
|
500
|
-
.bg-color-grayscale-90 {
|
|
1244
|
+
:root .bg-color-grayscale-90 {
|
|
501
1245
|
background-color: #1a1a1a !important;
|
|
502
1246
|
}
|
|
503
|
-
|
|
504
|
-
.txt-color-grayscale-90 {
|
|
1247
|
+
:root .txt-color-grayscale-90 {
|
|
505
1248
|
color: #1a1a1a !important;
|
|
506
1249
|
}
|
|
507
|
-
|
|
508
|
-
.bg-color-black {
|
|
1250
|
+
:root .bg-color-black {
|
|
509
1251
|
background-color: #000 !important;
|
|
510
1252
|
}
|
|
511
|
-
|
|
512
|
-
.txt-color-black {
|
|
1253
|
+
:root .txt-color-black {
|
|
513
1254
|
color: #000 !important;
|
|
514
1255
|
}
|
|
1256
|
+
:root [data-mode=dark] {
|
|
1257
|
+
--pkt-color-background-card: var(--pkt-color-grays-gray-700);
|
|
1258
|
+
--pkt-color-background-default: var(--pkt-color-grays-gray-1000);
|
|
1259
|
+
--pkt-color-background-subtle: var(--pkt-color-grays-gray-1000);
|
|
1260
|
+
--pkt-color-background-transparent: var(--pkt-color-brand-neutrals-transparent);
|
|
1261
|
+
--pkt-color-border-default: var(--pkt-color-brand-neutrals-white);
|
|
1262
|
+
--pkt-color-border-beige: var(--pkt-color-brand-dark-beige-1000);
|
|
1263
|
+
--pkt-color-border-blue: var(--pkt-color-brand-blue-1000);
|
|
1264
|
+
--pkt-color-border-green: var(--pkt-color-brand-green-1000);
|
|
1265
|
+
--pkt-color-border-light-beige: var(--pkt-color-brand-light-beige-1000);
|
|
1266
|
+
--pkt-color-border-red: var(--pkt-color-brand-red-1000);
|
|
1267
|
+
--pkt-color-border-subtle: var(--pkt-color-brand-dark-blue-700);
|
|
1268
|
+
--pkt-color-border-yellow: var(--pkt-color-brand-yellow-1000);
|
|
1269
|
+
--pkt-color-border-states-active: var(--pkt-color-brand-blue-500);
|
|
1270
|
+
--pkt-color-border-states-disabled: var(--pkt-color-grays-gray-500);
|
|
1271
|
+
--pkt-color-border-states-focus: var(--pkt-color-brand-purple-1000);
|
|
1272
|
+
--pkt-color-border-states-hover: var(--pkt-color-brand-blue-500);
|
|
1273
|
+
--pkt-color-surface-default-faded-green: var(--pkt-color-brand-light-green-400);
|
|
1274
|
+
--pkt-color-surface-default-faded-red: var(--pkt-color-brand-red-400);
|
|
1275
|
+
--pkt-color-surface-default-gray: var(--pkt-color-brand-neutrals-100);
|
|
1276
|
+
--pkt-color-surface-default-light-beige: var(--pkt-color-brand-light-beige-1000);
|
|
1277
|
+
--pkt-color-surface-default-light-blue: var(--pkt-color-brand-blue-300);
|
|
1278
|
+
--pkt-color-surface-default-light-green: var(--pkt-color-brand-green-400);
|
|
1279
|
+
--pkt-color-surface-default-red: var(--pkt-color-brand-red-600);
|
|
1280
|
+
--pkt-color-surface-default-yellow: var(--pkt-color-brand-yellow-500);
|
|
1281
|
+
--pkt-color-surface-strong-beige: var(--pkt-color-brand-dark-beige-1000);
|
|
1282
|
+
--pkt-color-surface-strong-blue: var(--pkt-color-brand-blue-1000);
|
|
1283
|
+
--pkt-color-surface-strong-dark-blue: var(--pkt-color-brand-dark-blue-1000);
|
|
1284
|
+
--pkt-color-surface-strong-dark-green: var(--pkt-color-brand-dark-green-1000);
|
|
1285
|
+
--pkt-color-surface-strong-gray: var(--pkt-color-brand-neutrals-200);
|
|
1286
|
+
--pkt-color-surface-strong-green: var(--pkt-color-brand-green-1000);
|
|
1287
|
+
--pkt-color-surface-strong-light-green: var(--pkt-color-brand-light-green-1000);
|
|
1288
|
+
--pkt-color-surface-strong-red: var(--pkt-color-brand-red-1000);
|
|
1289
|
+
--pkt-color-surface-strong-yellow: var(--pkt-color-brand-yellow-1000);
|
|
1290
|
+
--pkt-color-surface-subtle-light-blue: var(--pkt-color-brand-blue-200);
|
|
1291
|
+
--pkt-color-surface-subtle-light-red: var(--pkt-color-brand-red-100);
|
|
1292
|
+
--pkt-color-surface-subtle-pale-blue: var(--pkt-color-brand-blue-100);
|
|
1293
|
+
--pkt-color-surface-subtle-white: var(--pkt-color-brand-neutrals-white);
|
|
1294
|
+
--pkt-color-text-body-dark: var(--pkt-color-brand-dark-blue-1000);
|
|
1295
|
+
--pkt-color-text-body-default: var(--pkt-color-brand-neutrals-white);
|
|
1296
|
+
--pkt-color-text-body-light: var(--pkt-color-brand-neutrals-white);
|
|
1297
|
+
--pkt-color-text-placeholder: var(--pkt-color-grays-gray-300);
|
|
1298
|
+
--pkt-color-text-action-disabled: var(--pkt-color-grays-gray-200);
|
|
1299
|
+
--pkt-color-text-action-active: var(--pkt-color-brand-blue-500);
|
|
1300
|
+
--pkt-color-text-action-hover: var(--pkt-color-brand-blue-500);
|
|
1301
|
+
--pkt-color-text-action-normal: var(--pkt-color-brand-neutrals-white);
|
|
1302
|
+
}
|
|
515
1303
|
|
|
516
1304
|
/*
|
|
517
1305
|
* Defaults for elementer
|
|
@@ -5777,6 +6565,354 @@ body {
|
|
|
5777
6565
|
padding-bottom: 4.5rem !important;
|
|
5778
6566
|
}
|
|
5779
6567
|
}
|
|
6568
|
+
.m-size-80 {
|
|
6569
|
+
margin: 5rem !important;
|
|
6570
|
+
}
|
|
6571
|
+
|
|
6572
|
+
.mt-size-80 {
|
|
6573
|
+
margin-top: 5rem !important;
|
|
6574
|
+
}
|
|
6575
|
+
|
|
6576
|
+
.mr-size-80 {
|
|
6577
|
+
margin-right: 5rem !important;
|
|
6578
|
+
}
|
|
6579
|
+
|
|
6580
|
+
.mb-size-80 {
|
|
6581
|
+
margin-bottom: 5rem !important;
|
|
6582
|
+
}
|
|
6583
|
+
|
|
6584
|
+
.ml-size-80 {
|
|
6585
|
+
margin-left: 5rem !important;
|
|
6586
|
+
}
|
|
6587
|
+
|
|
6588
|
+
.mx-size-80 {
|
|
6589
|
+
margin-right: 5rem !important;
|
|
6590
|
+
margin-left: 5rem !important;
|
|
6591
|
+
}
|
|
6592
|
+
|
|
6593
|
+
.my-size-80 {
|
|
6594
|
+
margin-top: 5rem !important;
|
|
6595
|
+
margin-bottom: 5rem !important;
|
|
6596
|
+
}
|
|
6597
|
+
|
|
6598
|
+
.p-size-80 {
|
|
6599
|
+
padding: 5rem !important;
|
|
6600
|
+
}
|
|
6601
|
+
|
|
6602
|
+
.pt-size-80 {
|
|
6603
|
+
padding-top: 5rem !important;
|
|
6604
|
+
}
|
|
6605
|
+
|
|
6606
|
+
.pr-size-80 {
|
|
6607
|
+
padding-right: 5rem !important;
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
.pb-size-80 {
|
|
6611
|
+
padding-bottom: 5rem !important;
|
|
6612
|
+
}
|
|
6613
|
+
|
|
6614
|
+
.pl-size-80 {
|
|
6615
|
+
padding-left: 5rem !important;
|
|
6616
|
+
}
|
|
6617
|
+
|
|
6618
|
+
.px-size-80 {
|
|
6619
|
+
padding-right: 5rem !important;
|
|
6620
|
+
padding-left: 5rem !important;
|
|
6621
|
+
}
|
|
6622
|
+
|
|
6623
|
+
.py-size-80 {
|
|
6624
|
+
padding-top: 5rem !important;
|
|
6625
|
+
padding-bottom: 5rem !important;
|
|
6626
|
+
}
|
|
6627
|
+
|
|
6628
|
+
@media screen and (min-width: 0) {
|
|
6629
|
+
.m-size-80--mobile-up {
|
|
6630
|
+
margin: 5rem !important;
|
|
6631
|
+
}
|
|
6632
|
+
.mt-size-80--mobile-up {
|
|
6633
|
+
margin-top: 5rem !important;
|
|
6634
|
+
}
|
|
6635
|
+
.mr-size-80--mobile-up {
|
|
6636
|
+
margin-right: 5rem !important;
|
|
6637
|
+
}
|
|
6638
|
+
.mb-size-80--mobile-up {
|
|
6639
|
+
margin-bottom: 5rem !important;
|
|
6640
|
+
}
|
|
6641
|
+
.ml-size-80--mobile-up {
|
|
6642
|
+
margin-left: 5rem !important;
|
|
6643
|
+
}
|
|
6644
|
+
.mx-size-80--mobile-up {
|
|
6645
|
+
margin-right: 5rem !important;
|
|
6646
|
+
margin-left: 5rem !important;
|
|
6647
|
+
}
|
|
6648
|
+
.my-size-80--mobile-up {
|
|
6649
|
+
margin-top: 5rem !important;
|
|
6650
|
+
margin-bottom: 5rem !important;
|
|
6651
|
+
}
|
|
6652
|
+
.p-size-80--mobile-up {
|
|
6653
|
+
padding: 5rem !important;
|
|
6654
|
+
}
|
|
6655
|
+
.pt-size-80--mobile-up {
|
|
6656
|
+
padding-top: 5rem !important;
|
|
6657
|
+
}
|
|
6658
|
+
.pr-size-80--mobile-up {
|
|
6659
|
+
padding-right: 5rem !important;
|
|
6660
|
+
}
|
|
6661
|
+
.pb-size-80--mobile-up {
|
|
6662
|
+
padding-bottom: 5rem !important;
|
|
6663
|
+
}
|
|
6664
|
+
.pl-size-80--mobile-up {
|
|
6665
|
+
padding-left: 5rem !important;
|
|
6666
|
+
}
|
|
6667
|
+
.px-size-80--mobile-up {
|
|
6668
|
+
padding-right: 5rem !important;
|
|
6669
|
+
padding-left: 5rem !important;
|
|
6670
|
+
}
|
|
6671
|
+
.py-size-80--mobile-up {
|
|
6672
|
+
padding-top: 5rem !important;
|
|
6673
|
+
padding-bottom: 5rem !important;
|
|
6674
|
+
}
|
|
6675
|
+
}
|
|
6676
|
+
@media screen and (min-width: 36rem) {
|
|
6677
|
+
.m-size-80--phablet-up {
|
|
6678
|
+
margin: 5rem !important;
|
|
6679
|
+
}
|
|
6680
|
+
.mt-size-80--phablet-up {
|
|
6681
|
+
margin-top: 5rem !important;
|
|
6682
|
+
}
|
|
6683
|
+
.mr-size-80--phablet-up {
|
|
6684
|
+
margin-right: 5rem !important;
|
|
6685
|
+
}
|
|
6686
|
+
.mb-size-80--phablet-up {
|
|
6687
|
+
margin-bottom: 5rem !important;
|
|
6688
|
+
}
|
|
6689
|
+
.ml-size-80--phablet-up {
|
|
6690
|
+
margin-left: 5rem !important;
|
|
6691
|
+
}
|
|
6692
|
+
.mx-size-80--phablet-up {
|
|
6693
|
+
margin-right: 5rem !important;
|
|
6694
|
+
margin-left: 5rem !important;
|
|
6695
|
+
}
|
|
6696
|
+
.my-size-80--phablet-up {
|
|
6697
|
+
margin-top: 5rem !important;
|
|
6698
|
+
margin-bottom: 5rem !important;
|
|
6699
|
+
}
|
|
6700
|
+
.p-size-80--phablet-up {
|
|
6701
|
+
padding: 5rem !important;
|
|
6702
|
+
}
|
|
6703
|
+
.pt-size-80--phablet-up {
|
|
6704
|
+
padding-top: 5rem !important;
|
|
6705
|
+
}
|
|
6706
|
+
.pr-size-80--phablet-up {
|
|
6707
|
+
padding-right: 5rem !important;
|
|
6708
|
+
}
|
|
6709
|
+
.pb-size-80--phablet-up {
|
|
6710
|
+
padding-bottom: 5rem !important;
|
|
6711
|
+
}
|
|
6712
|
+
.pl-size-80--phablet-up {
|
|
6713
|
+
padding-left: 5rem !important;
|
|
6714
|
+
}
|
|
6715
|
+
.px-size-80--phablet-up {
|
|
6716
|
+
padding-right: 5rem !important;
|
|
6717
|
+
padding-left: 5rem !important;
|
|
6718
|
+
}
|
|
6719
|
+
.py-size-80--phablet-up {
|
|
6720
|
+
padding-top: 5rem !important;
|
|
6721
|
+
padding-bottom: 5rem !important;
|
|
6722
|
+
}
|
|
6723
|
+
}
|
|
6724
|
+
@media screen and (min-width: 48rem) {
|
|
6725
|
+
.m-size-80--tablet-up {
|
|
6726
|
+
margin: 5rem !important;
|
|
6727
|
+
}
|
|
6728
|
+
.mt-size-80--tablet-up {
|
|
6729
|
+
margin-top: 5rem !important;
|
|
6730
|
+
}
|
|
6731
|
+
.mr-size-80--tablet-up {
|
|
6732
|
+
margin-right: 5rem !important;
|
|
6733
|
+
}
|
|
6734
|
+
.mb-size-80--tablet-up {
|
|
6735
|
+
margin-bottom: 5rem !important;
|
|
6736
|
+
}
|
|
6737
|
+
.ml-size-80--tablet-up {
|
|
6738
|
+
margin-left: 5rem !important;
|
|
6739
|
+
}
|
|
6740
|
+
.mx-size-80--tablet-up {
|
|
6741
|
+
margin-right: 5rem !important;
|
|
6742
|
+
margin-left: 5rem !important;
|
|
6743
|
+
}
|
|
6744
|
+
.my-size-80--tablet-up {
|
|
6745
|
+
margin-top: 5rem !important;
|
|
6746
|
+
margin-bottom: 5rem !important;
|
|
6747
|
+
}
|
|
6748
|
+
.p-size-80--tablet-up {
|
|
6749
|
+
padding: 5rem !important;
|
|
6750
|
+
}
|
|
6751
|
+
.pt-size-80--tablet-up {
|
|
6752
|
+
padding-top: 5rem !important;
|
|
6753
|
+
}
|
|
6754
|
+
.pr-size-80--tablet-up {
|
|
6755
|
+
padding-right: 5rem !important;
|
|
6756
|
+
}
|
|
6757
|
+
.pb-size-80--tablet-up {
|
|
6758
|
+
padding-bottom: 5rem !important;
|
|
6759
|
+
}
|
|
6760
|
+
.pl-size-80--tablet-up {
|
|
6761
|
+
padding-left: 5rem !important;
|
|
6762
|
+
}
|
|
6763
|
+
.px-size-80--tablet-up {
|
|
6764
|
+
padding-right: 5rem !important;
|
|
6765
|
+
padding-left: 5rem !important;
|
|
6766
|
+
}
|
|
6767
|
+
.py-size-80--tablet-up {
|
|
6768
|
+
padding-top: 5rem !important;
|
|
6769
|
+
padding-bottom: 5rem !important;
|
|
6770
|
+
}
|
|
6771
|
+
}
|
|
6772
|
+
@media screen and (min-width: 64rem) {
|
|
6773
|
+
.m-size-80--tablet-big-up {
|
|
6774
|
+
margin: 5rem !important;
|
|
6775
|
+
}
|
|
6776
|
+
.mt-size-80--tablet-big-up {
|
|
6777
|
+
margin-top: 5rem !important;
|
|
6778
|
+
}
|
|
6779
|
+
.mr-size-80--tablet-big-up {
|
|
6780
|
+
margin-right: 5rem !important;
|
|
6781
|
+
}
|
|
6782
|
+
.mb-size-80--tablet-big-up {
|
|
6783
|
+
margin-bottom: 5rem !important;
|
|
6784
|
+
}
|
|
6785
|
+
.ml-size-80--tablet-big-up {
|
|
6786
|
+
margin-left: 5rem !important;
|
|
6787
|
+
}
|
|
6788
|
+
.mx-size-80--tablet-big-up {
|
|
6789
|
+
margin-right: 5rem !important;
|
|
6790
|
+
margin-left: 5rem !important;
|
|
6791
|
+
}
|
|
6792
|
+
.my-size-80--tablet-big-up {
|
|
6793
|
+
margin-top: 5rem !important;
|
|
6794
|
+
margin-bottom: 5rem !important;
|
|
6795
|
+
}
|
|
6796
|
+
.p-size-80--tablet-big-up {
|
|
6797
|
+
padding: 5rem !important;
|
|
6798
|
+
}
|
|
6799
|
+
.pt-size-80--tablet-big-up {
|
|
6800
|
+
padding-top: 5rem !important;
|
|
6801
|
+
}
|
|
6802
|
+
.pr-size-80--tablet-big-up {
|
|
6803
|
+
padding-right: 5rem !important;
|
|
6804
|
+
}
|
|
6805
|
+
.pb-size-80--tablet-big-up {
|
|
6806
|
+
padding-bottom: 5rem !important;
|
|
6807
|
+
}
|
|
6808
|
+
.pl-size-80--tablet-big-up {
|
|
6809
|
+
padding-left: 5rem !important;
|
|
6810
|
+
}
|
|
6811
|
+
.px-size-80--tablet-big-up {
|
|
6812
|
+
padding-right: 5rem !important;
|
|
6813
|
+
padding-left: 5rem !important;
|
|
6814
|
+
}
|
|
6815
|
+
.py-size-80--tablet-big-up {
|
|
6816
|
+
padding-top: 5rem !important;
|
|
6817
|
+
padding-bottom: 5rem !important;
|
|
6818
|
+
}
|
|
6819
|
+
}
|
|
6820
|
+
@media screen and (min-width: 80rem) {
|
|
6821
|
+
.m-size-80--laptop-up {
|
|
6822
|
+
margin: 5rem !important;
|
|
6823
|
+
}
|
|
6824
|
+
.mt-size-80--laptop-up {
|
|
6825
|
+
margin-top: 5rem !important;
|
|
6826
|
+
}
|
|
6827
|
+
.mr-size-80--laptop-up {
|
|
6828
|
+
margin-right: 5rem !important;
|
|
6829
|
+
}
|
|
6830
|
+
.mb-size-80--laptop-up {
|
|
6831
|
+
margin-bottom: 5rem !important;
|
|
6832
|
+
}
|
|
6833
|
+
.ml-size-80--laptop-up {
|
|
6834
|
+
margin-left: 5rem !important;
|
|
6835
|
+
}
|
|
6836
|
+
.mx-size-80--laptop-up {
|
|
6837
|
+
margin-right: 5rem !important;
|
|
6838
|
+
margin-left: 5rem !important;
|
|
6839
|
+
}
|
|
6840
|
+
.my-size-80--laptop-up {
|
|
6841
|
+
margin-top: 5rem !important;
|
|
6842
|
+
margin-bottom: 5rem !important;
|
|
6843
|
+
}
|
|
6844
|
+
.p-size-80--laptop-up {
|
|
6845
|
+
padding: 5rem !important;
|
|
6846
|
+
}
|
|
6847
|
+
.pt-size-80--laptop-up {
|
|
6848
|
+
padding-top: 5rem !important;
|
|
6849
|
+
}
|
|
6850
|
+
.pr-size-80--laptop-up {
|
|
6851
|
+
padding-right: 5rem !important;
|
|
6852
|
+
}
|
|
6853
|
+
.pb-size-80--laptop-up {
|
|
6854
|
+
padding-bottom: 5rem !important;
|
|
6855
|
+
}
|
|
6856
|
+
.pl-size-80--laptop-up {
|
|
6857
|
+
padding-left: 5rem !important;
|
|
6858
|
+
}
|
|
6859
|
+
.px-size-80--laptop-up {
|
|
6860
|
+
padding-right: 5rem !important;
|
|
6861
|
+
padding-left: 5rem !important;
|
|
6862
|
+
}
|
|
6863
|
+
.py-size-80--laptop-up {
|
|
6864
|
+
padding-top: 5rem !important;
|
|
6865
|
+
padding-bottom: 5rem !important;
|
|
6866
|
+
}
|
|
6867
|
+
}
|
|
6868
|
+
@media screen and (min-width: 100rem) {
|
|
6869
|
+
.m-size-80--desktop-up {
|
|
6870
|
+
margin: 5rem !important;
|
|
6871
|
+
}
|
|
6872
|
+
.mt-size-80--desktop-up {
|
|
6873
|
+
margin-top: 5rem !important;
|
|
6874
|
+
}
|
|
6875
|
+
.mr-size-80--desktop-up {
|
|
6876
|
+
margin-right: 5rem !important;
|
|
6877
|
+
}
|
|
6878
|
+
.mb-size-80--desktop-up {
|
|
6879
|
+
margin-bottom: 5rem !important;
|
|
6880
|
+
}
|
|
6881
|
+
.ml-size-80--desktop-up {
|
|
6882
|
+
margin-left: 5rem !important;
|
|
6883
|
+
}
|
|
6884
|
+
.mx-size-80--desktop-up {
|
|
6885
|
+
margin-right: 5rem !important;
|
|
6886
|
+
margin-left: 5rem !important;
|
|
6887
|
+
}
|
|
6888
|
+
.my-size-80--desktop-up {
|
|
6889
|
+
margin-top: 5rem !important;
|
|
6890
|
+
margin-bottom: 5rem !important;
|
|
6891
|
+
}
|
|
6892
|
+
.p-size-80--desktop-up {
|
|
6893
|
+
padding: 5rem !important;
|
|
6894
|
+
}
|
|
6895
|
+
.pt-size-80--desktop-up {
|
|
6896
|
+
padding-top: 5rem !important;
|
|
6897
|
+
}
|
|
6898
|
+
.pr-size-80--desktop-up {
|
|
6899
|
+
padding-right: 5rem !important;
|
|
6900
|
+
}
|
|
6901
|
+
.pb-size-80--desktop-up {
|
|
6902
|
+
padding-bottom: 5rem !important;
|
|
6903
|
+
}
|
|
6904
|
+
.pl-size-80--desktop-up {
|
|
6905
|
+
padding-left: 5rem !important;
|
|
6906
|
+
}
|
|
6907
|
+
.px-size-80--desktop-up {
|
|
6908
|
+
padding-right: 5rem !important;
|
|
6909
|
+
padding-left: 5rem !important;
|
|
6910
|
+
}
|
|
6911
|
+
.py-size-80--desktop-up {
|
|
6912
|
+
padding-top: 5rem !important;
|
|
6913
|
+
padding-bottom: 5rem !important;
|
|
6914
|
+
}
|
|
6915
|
+
}
|
|
5780
6916
|
.m-size-88 {
|
|
5781
6917
|
margin: 5.5rem !important;
|
|
5782
6918
|
}
|
|
@@ -10209,6 +11345,15 @@ body {
|
|
|
10209
11345
|
.pkt-grid--rowgap-size-72 {
|
|
10210
11346
|
row-gap: 4.5rem;
|
|
10211
11347
|
}
|
|
11348
|
+
.pkt-grid--gap-size-80 {
|
|
11349
|
+
gap: 5rem;
|
|
11350
|
+
}
|
|
11351
|
+
.pkt-grid--colgap-size-80 {
|
|
11352
|
+
column-gap: 5rem;
|
|
11353
|
+
}
|
|
11354
|
+
.pkt-grid--rowgap-size-80 {
|
|
11355
|
+
row-gap: 5rem;
|
|
11356
|
+
}
|
|
10212
11357
|
.pkt-grid--gap-size-88 {
|
|
10213
11358
|
gap: 5.5rem;
|
|
10214
11359
|
}
|
|
@@ -10453,6 +11598,15 @@ body {
|
|
|
10453
11598
|
.pkt-grid--rowgap-size-72-mobile-up {
|
|
10454
11599
|
row-gap: 4.5rem;
|
|
10455
11600
|
}
|
|
11601
|
+
.pkt-grid--gap-size-80-mobile-up {
|
|
11602
|
+
gap: 5rem;
|
|
11603
|
+
}
|
|
11604
|
+
.pkt-grid--colgap-size-80-mobile-up {
|
|
11605
|
+
column-gap: 5rem;
|
|
11606
|
+
}
|
|
11607
|
+
.pkt-grid--rowgap-size-80-mobile-up {
|
|
11608
|
+
row-gap: 5rem;
|
|
11609
|
+
}
|
|
10456
11610
|
.pkt-grid--gap-size-88-mobile-up {
|
|
10457
11611
|
gap: 5.5rem;
|
|
10458
11612
|
}
|
|
@@ -10698,6 +11852,15 @@ body {
|
|
|
10698
11852
|
.pkt-grid--rowgap-size-72-phablet-up {
|
|
10699
11853
|
row-gap: 4.5rem;
|
|
10700
11854
|
}
|
|
11855
|
+
.pkt-grid--gap-size-80-phablet-up {
|
|
11856
|
+
gap: 5rem;
|
|
11857
|
+
}
|
|
11858
|
+
.pkt-grid--colgap-size-80-phablet-up {
|
|
11859
|
+
column-gap: 5rem;
|
|
11860
|
+
}
|
|
11861
|
+
.pkt-grid--rowgap-size-80-phablet-up {
|
|
11862
|
+
row-gap: 5rem;
|
|
11863
|
+
}
|
|
10701
11864
|
.pkt-grid--gap-size-88-phablet-up {
|
|
10702
11865
|
gap: 5.5rem;
|
|
10703
11866
|
}
|
|
@@ -10943,6 +12106,15 @@ body {
|
|
|
10943
12106
|
.pkt-grid--rowgap-size-72-tablet-up {
|
|
10944
12107
|
row-gap: 4.5rem;
|
|
10945
12108
|
}
|
|
12109
|
+
.pkt-grid--gap-size-80-tablet-up {
|
|
12110
|
+
gap: 5rem;
|
|
12111
|
+
}
|
|
12112
|
+
.pkt-grid--colgap-size-80-tablet-up {
|
|
12113
|
+
column-gap: 5rem;
|
|
12114
|
+
}
|
|
12115
|
+
.pkt-grid--rowgap-size-80-tablet-up {
|
|
12116
|
+
row-gap: 5rem;
|
|
12117
|
+
}
|
|
10946
12118
|
.pkt-grid--gap-size-88-tablet-up {
|
|
10947
12119
|
gap: 5.5rem;
|
|
10948
12120
|
}
|
|
@@ -11188,6 +12360,15 @@ body {
|
|
|
11188
12360
|
.pkt-grid--rowgap-size-72-tablet-big-up {
|
|
11189
12361
|
row-gap: 4.5rem;
|
|
11190
12362
|
}
|
|
12363
|
+
.pkt-grid--gap-size-80-tablet-big-up {
|
|
12364
|
+
gap: 5rem;
|
|
12365
|
+
}
|
|
12366
|
+
.pkt-grid--colgap-size-80-tablet-big-up {
|
|
12367
|
+
column-gap: 5rem;
|
|
12368
|
+
}
|
|
12369
|
+
.pkt-grid--rowgap-size-80-tablet-big-up {
|
|
12370
|
+
row-gap: 5rem;
|
|
12371
|
+
}
|
|
11191
12372
|
.pkt-grid--gap-size-88-tablet-big-up {
|
|
11192
12373
|
gap: 5.5rem;
|
|
11193
12374
|
}
|
|
@@ -11433,6 +12614,15 @@ body {
|
|
|
11433
12614
|
.pkt-grid--rowgap-size-72-laptop-up {
|
|
11434
12615
|
row-gap: 4.5rem;
|
|
11435
12616
|
}
|
|
12617
|
+
.pkt-grid--gap-size-80-laptop-up {
|
|
12618
|
+
gap: 5rem;
|
|
12619
|
+
}
|
|
12620
|
+
.pkt-grid--colgap-size-80-laptop-up {
|
|
12621
|
+
column-gap: 5rem;
|
|
12622
|
+
}
|
|
12623
|
+
.pkt-grid--rowgap-size-80-laptop-up {
|
|
12624
|
+
row-gap: 5rem;
|
|
12625
|
+
}
|
|
11436
12626
|
.pkt-grid--gap-size-88-laptop-up {
|
|
11437
12627
|
gap: 5.5rem;
|
|
11438
12628
|
}
|
|
@@ -11678,6 +12868,15 @@ body {
|
|
|
11678
12868
|
.pkt-grid--rowgap-size-72-desktop-up {
|
|
11679
12869
|
row-gap: 4.5rem;
|
|
11680
12870
|
}
|
|
12871
|
+
.pkt-grid--gap-size-80-desktop-up {
|
|
12872
|
+
gap: 5rem;
|
|
12873
|
+
}
|
|
12874
|
+
.pkt-grid--colgap-size-80-desktop-up {
|
|
12875
|
+
column-gap: 5rem;
|
|
12876
|
+
}
|
|
12877
|
+
.pkt-grid--rowgap-size-80-desktop-up {
|
|
12878
|
+
row-gap: 5rem;
|
|
12879
|
+
}
|
|
11681
12880
|
.pkt-grid--gap-size-88-desktop-up {
|
|
11682
12881
|
gap: 5.5rem;
|
|
11683
12882
|
}
|
|
@@ -12038,7 +13237,7 @@ body {
|
|
|
12038
13237
|
*
|
|
12039
13238
|
*/
|
|
12040
13239
|
body {
|
|
12041
|
-
color: var(--color-
|
|
13240
|
+
color: var(--pkt-color-text-body-default);
|
|
12042
13241
|
font-family: 'Oslo Sans', arial, sans-serif;
|
|
12043
13242
|
font-size: 1rem;
|
|
12044
13243
|
font-weight: 300;
|
|
@@ -12061,62 +13260,38 @@ strong {
|
|
|
12061
13260
|
|
|
12062
13261
|
a,
|
|
12063
13262
|
.pkt-link-button {
|
|
12064
|
-
color: var(--color-
|
|
13263
|
+
color: var(--pkt-color-text-action-normal);
|
|
12065
13264
|
text-decoration: underline;
|
|
12066
13265
|
word-wrap: break-word;
|
|
12067
13266
|
cursor: pointer;
|
|
12068
13267
|
}
|
|
12069
|
-
a:visited,
|
|
12070
|
-
.pkt-link-button:visited {
|
|
12071
|
-
color:
|
|
13268
|
+
a:visited:not(.pkt-linkcard),
|
|
13269
|
+
.pkt-link-button:visited:not(.pkt-linkcard) {
|
|
13270
|
+
color: inherit;
|
|
12072
13271
|
}
|
|
12073
13272
|
a:hover, a.pkt-link--hover,
|
|
12074
13273
|
.pkt-link-button:hover,
|
|
12075
13274
|
.pkt-link-button.pkt-link--hover {
|
|
12076
|
-
color: var(--color-
|
|
13275
|
+
color: var(--pkt-color-text-action-active);
|
|
12077
13276
|
text-decoration: underline;
|
|
12078
13277
|
}
|
|
12079
13278
|
a:focus-visible, a.pkt-link--focus,
|
|
12080
13279
|
.pkt-link-button:focus-visible,
|
|
12081
13280
|
.pkt-link-button.pkt-link--focus {
|
|
12082
|
-
box-shadow: 0px 0px 0px 0.125rem var(--color-active), 0px 0px 0px 0.375rem var(--color-focus);
|
|
13281
|
+
box-shadow: 0px 0px 0px 0.125rem var(--pkt-color-text-action-active), 0px 0px 0px 0.375rem var(--pkt-color-border-states-focus);
|
|
12083
13282
|
outline: none;
|
|
12084
|
-
color: var(--color-
|
|
13283
|
+
color: var(--pkt-color-text-action-active);
|
|
12085
13284
|
}
|
|
12086
13285
|
a:focus:not(:focus-visible),
|
|
12087
13286
|
.pkt-link-button:focus:not(:focus-visible) {
|
|
12088
13287
|
box-shadow: none;
|
|
12089
|
-
outline: 0.125rem solid var(--color-active);
|
|
12090
|
-
color: var(--color-
|
|
13288
|
+
outline: 0.125rem solid var(--pkt-color-text-action-active);
|
|
13289
|
+
color: var(--pkt-color-text-action-active);
|
|
12091
13290
|
}
|
|
12092
13291
|
a:active, a.pkt-link--active,
|
|
12093
13292
|
.pkt-link-button:active,
|
|
12094
13293
|
.pkt-link-button.pkt-link--active {
|
|
12095
|
-
color: var(--color-active);
|
|
12096
|
-
}
|
|
12097
|
-
[data-mode=dark] a:link, [data-mode=dark] a.pkt-link--link {
|
|
12098
|
-
color: var(--color-white);
|
|
12099
|
-
text-decoration: underline;
|
|
12100
|
-
word-wrap: break-word;
|
|
12101
|
-
}
|
|
12102
|
-
[data-mode=dark] a:visited {
|
|
12103
|
-
color: var(--color-white);
|
|
12104
|
-
}
|
|
12105
|
-
[data-mode=dark] a:hover, [data-mode=dark] a.pkt-link--hover {
|
|
12106
|
-
color: var(--color-hover-light);
|
|
12107
|
-
}
|
|
12108
|
-
[data-mode=dark] a:focus-visible, [data-mode=dark] a.pkt-link--focus {
|
|
12109
|
-
box-shadow: 0px 0px 0px 0.125rem var(--color-active-light), 0px 0px 0px 0.375rem var(--color-focus);
|
|
12110
|
-
outline: none;
|
|
12111
|
-
color: var(--color-hover-light);
|
|
12112
|
-
}
|
|
12113
|
-
[data-mode=dark] a:focus:not(:focus-visible) {
|
|
12114
|
-
box-shadow: none;
|
|
12115
|
-
outline: 0.125rem solid var(--color-focus);
|
|
12116
|
-
color: var(--color-hover-light);
|
|
12117
|
-
}
|
|
12118
|
-
[data-mode=dark] a:active, [data-mode=dark] a.pkt-link--active {
|
|
12119
|
-
color: var(--color-active-light);
|
|
13294
|
+
color: var(--pkt-color-text-action-active);
|
|
12120
13295
|
}
|
|
12121
13296
|
|
|
12122
13297
|
.pkt-link {
|
|
@@ -12141,7 +13316,7 @@ a:active, a.pkt-link--active,
|
|
|
12141
13316
|
}
|
|
12142
13317
|
.pkt-link--external::after {
|
|
12143
13318
|
content: " ";
|
|
12144
|
-
--svg: url(https://punkt-cdn.oslo.kommune.no/9.
|
|
13319
|
+
--svg: url(https://punkt-cdn.oslo.kommune.no/9.4/icons/new-window-small.svg);
|
|
12145
13320
|
background-image: var(--svg);
|
|
12146
13321
|
background-repeat: no-repeat;
|
|
12147
13322
|
background-size: 18px 18px;
|