@oslokommune/punkt-css 17.1.3 → 18.3.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.
Files changed (84) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/css/components/calendar.css +2 -2
  3. package/dist/css/components/calendar.min.css +1 -1
  4. package/dist/css/components/card.css +3 -3
  5. package/dist/css/components/card.min.css +1 -1
  6. package/dist/css/components/fileupload.css +7 -7
  7. package/dist/css/components/fileupload.min.css +1 -1
  8. package/dist/css/components/footer.css +1 -1
  9. package/dist/css/components/footer.min.css +1 -1
  10. package/dist/css/components/header.css +1 -1
  11. package/dist/css/components/header.min.css +1 -1
  12. package/dist/css/components/inputwrapper.css +1 -1
  13. package/dist/css/components/inputwrapper.min.css +1 -1
  14. package/dist/css/components/listbox.css +2 -2
  15. package/dist/css/components/listbox.min.css +1 -1
  16. package/dist/css/components/loader.css +4 -4
  17. package/dist/css/components/loader.min.css +1 -1
  18. package/dist/css/components/modal.css +1 -1
  19. package/dist/css/components/modal.min.css +1 -1
  20. package/dist/css/components/progressbar.css +1 -1
  21. package/dist/css/components/progressbar.min.css +1 -1
  22. package/dist/css/components/stepper.css +5 -5
  23. package/dist/css/components/stepper.min.css +1 -1
  24. package/dist/css/components/tag.css +4 -18
  25. package/dist/css/components/tag.min.css +1 -1
  26. package/dist/css/elements/button.css +70 -48
  27. package/dist/css/elements/button.min.css +1 -1
  28. package/dist/css/elements/checkbox-radio.css +3 -3
  29. package/dist/css/elements/checkbox-radio.min.css +1 -1
  30. package/dist/css/elements/form.css +4 -4
  31. package/dist/css/elements/form.min.css +1 -1
  32. package/dist/css/elements/hr.css +1 -1
  33. package/dist/css/elements/hr.min.css +1 -1
  34. package/dist/css/elements/input.css +1 -1
  35. package/dist/css/elements/input.min.css +1 -1
  36. package/dist/css/elements/list.css +1 -1
  37. package/dist/css/elements/list.min.css +1 -1
  38. package/dist/css/elements/section.css +11 -108
  39. package/dist/css/elements/section.min.css +1 -1
  40. package/dist/css/pkt-base.css +708 -75
  41. package/dist/css/pkt-base.min.css +1 -1
  42. package/dist/css/pkt-components.css +32 -88
  43. package/dist/css/pkt-components.min.css +1 -1
  44. package/dist/css/pkt-docs.css +832 -330
  45. package/dist/css/pkt-docs.min.css +1 -1
  46. package/dist/css/pkt-elements.css +91 -166
  47. package/dist/css/pkt-elements.min.css +1 -1
  48. package/dist/css/pkt-tokens.css +113 -68
  49. package/dist/css/pkt-tokens.min.css +1 -1
  50. package/dist/css/pkt-utilities.css +594 -6
  51. package/dist/css/pkt-utilities.min.css +1 -1
  52. package/dist/css/pkt.css +831 -329
  53. package/dist/css/pkt.layer.css +684 -322
  54. package/dist/css/pkt.layer.min.css +1 -1
  55. package/dist/css/pkt.min.css +1 -1
  56. package/dist/scss/abstracts/functions/_index.scss +25 -0
  57. package/dist/scss/abstracts/variables/_colors.scss +155 -68
  58. package/dist/scss/abstracts/variables/_index.scss +1 -1
  59. package/dist/scss/base/_colors-tokens.scss +9 -75
  60. package/dist/scss/components/_calendar.scss +2 -2
  61. package/dist/scss/components/_card.scss +3 -3
  62. package/dist/scss/components/_fileupload.scss +8 -7
  63. package/dist/scss/components/_footer.scss +6 -5
  64. package/dist/scss/components/_header-service-mobile.scss +3 -2
  65. package/dist/scss/components/_header-shared.scss +3 -2
  66. package/dist/scss/components/_header.scss +1 -1
  67. package/dist/scss/components/_index.scss +0 -1
  68. package/dist/scss/components/_inputwrapper.scss +1 -1
  69. package/dist/scss/components/_listbox.scss +4 -2
  70. package/dist/scss/components/_loader.scss +5 -4
  71. package/dist/scss/components/_modal.scss +2 -1
  72. package/dist/scss/components/_progressbar.scss +1 -1
  73. package/dist/scss/components/_stepper.scss +5 -5
  74. package/dist/scss/components/_tag.scss +5 -17
  75. package/dist/scss/elements/_button.scss +71 -67
  76. package/dist/scss/elements/_form.scss +4 -4
  77. package/dist/scss/elements/_hr.scss +1 -1
  78. package/dist/scss/elements/_list.scss +3 -3
  79. package/dist/scss/elements/_section.scss +12 -40
  80. package/dist/scss/pkt-docs.scss +3 -1
  81. package/package.json +3 -3
  82. package/dist/css/components/badge.css +0 -41
  83. package/dist/css/components/badge.min.css +0 -1
  84. package/dist/scss/components/_badge.scss +0 -60
@@ -44,7 +44,7 @@
44
44
  font-weight: 400;
45
45
  src: url("../fonts/OsloIcons.woff2") format("woff2"), url("../fonts/OsloIcons.woff") format("woff");
46
46
  }
47
- /*
47
+ /*
48
48
  * Colors
49
49
  * Brand
50
50
  * Light mode
@@ -77,8 +77,16 @@
77
77
  --pkt-color-brand-light-beige-1000: #f8f0dd;
78
78
  --pkt-color-brand-dark-beige-1000: #d0bfae;
79
79
  --pkt-color-brand-neutrals-white: #ffffff;
80
- --pkt-color-brand-neutrals-100: #f9f9f9;
81
- --pkt-color-brand-neutrals-200: #f2f2f2;
80
+ --pkt-color-brand-neutrals-50: #f9f9f9;
81
+ --pkt-color-brand-neutrals-100: #f2f2f2;
82
+ --pkt-color-brand-neutrals-200: #e6e6e6;
83
+ --pkt-color-brand-neutrals-300: #cccccc;
84
+ --pkt-color-brand-neutrals-400: #b3b3b3;
85
+ --pkt-color-brand-neutrals-500: #9a9a9a;
86
+ --pkt-color-brand-neutrals-600: #808080;
87
+ --pkt-color-brand-neutrals-700: #666666;
88
+ --pkt-color-brand-neutrals-800: #4d4d4d;
89
+ --pkt-color-brand-neutrals-900: #333333;
82
90
  --pkt-color-brand-neutrals-1000: #2c2c2c;
83
91
  --pkt-color-brand-neutrals-black: #000000;
84
92
  --pkt-color-brand-neutrals-transparent: transparent;
@@ -112,23 +120,25 @@
112
120
  --pkt-color-border-states-hover: #1f42aa;
113
121
  --pkt-color-surface-default-faded-green: #e5ffe6;
114
122
  --pkt-color-surface-default-faded-red: #ffdfdc;
115
- --pkt-color-surface-default-gray: #f9f9f9;
123
+ --pkt-color-surface-default-gray: #f2f2f2;
116
124
  --pkt-color-surface-default-light-beige: #f8f0dd;
117
- --pkt-color-surface-default-light-blue: #d1f9ff;
125
+ --pkt-color-surface-default-light-blue: #b3f5ff;
118
126
  --pkt-color-surface-default-light-green: #c7fde9;
127
+ --pkt-color-surface-default-pale-blue: #d1f9ff;
119
128
  --pkt-color-surface-default-red: #ffb4ac;
120
129
  --pkt-color-surface-default-yellow: #ffe7bc;
121
130
  --pkt-color-surface-strong-beige: #d0bfae;
122
131
  --pkt-color-surface-strong-blue: #6fe9ff;
123
132
  --pkt-color-surface-strong-dark-blue: #2a2859;
124
133
  --pkt-color-surface-strong-dark-green: #034b45;
125
- --pkt-color-surface-strong-gray: #f2f2f2;
134
+ --pkt-color-surface-strong-gray: #e6e6e6;
126
135
  --pkt-color-surface-strong-green: #43f8b6;
127
136
  --pkt-color-surface-strong-light-green: #c7f6c9;
128
137
  --pkt-color-surface-strong-red: #ff8274;
129
138
  --pkt-color-surface-strong-yellow: #f9c66b;
130
139
  --pkt-color-surface-subtle-light-blue: #e5fcff;
131
140
  --pkt-color-surface-subtle-light-red: #fff2f1;
141
+ --pkt-color-surface-subtle-gray: #f9f9f9;
132
142
  --pkt-color-surface-subtle-pale-blue: #f1fdff;
133
143
  --pkt-color-surface-subtle-white: #ffffff;
134
144
  --pkt-color-text-body-dark: #2a2859;
@@ -141,21 +151,60 @@
141
151
  --pkt-color-text-action-normal: #2a2859;
142
152
  --pkt-color-input-background-normal: #ffffff;
143
153
  --pkt-color-input-background-disabled: #f9f9f9;
154
+ --pkt-color-input-background-open: #1f42aa;
144
155
  --pkt-color-input-border-active: #1f42aa;
145
156
  --pkt-color-input-border-disabled: #b3b3b3;
146
157
  --pkt-color-input-border-error: #ff8274;
147
158
  --pkt-color-input-border-hover: #1f42aa;
148
159
  --pkt-color-input-border-normal: #2a2859;
149
160
  --pkt-color-input-text-active: #1f42aa;
150
- --pkt-color-input-text-disabled: #808080;
161
+ --pkt-color-input-text-disabled: #666666;
151
162
  --pkt-color-input-text-hover: #1f42aa;
152
163
  --pkt-color-input-text-normal: #2a2859;
153
164
  --pkt-color-input-text-error: #ff8274;
154
165
  --pkt-color-input-text-open: #ffffff;
166
+ --pkt-color-tag-text-normal: #2a2859;
167
+ --pkt-color-tag-text-hover: #1f42aa;
168
+ --pkt-color-tag-text-active: #1f42aa;
169
+ --pkt-color-tag-text-focus: #1f42aa;
155
170
  --pkt-color-input-check-background: #ffffff;
156
171
  --pkt-color-input-check-border: #2a2859;
157
172
  --pkt-color-input-check-text-active: #1f42aa;
158
173
  --pkt-color-input-check-text-hover: #1f42aa;
174
+ --pkt-color-button-primary-background-normal: #2a2859;
175
+ --pkt-color-button-primary-background-hover: #1f42aa;
176
+ --pkt-color-button-primary-background-focus: #1f42aa;
177
+ --pkt-color-button-primary-background-active: #1f42aa;
178
+ --pkt-color-button-primary-background-disabled: #f9f9f9;
179
+ --pkt-color-button-primary-background-success: #43f8b6;
180
+ --pkt-color-button-primary-background-danger: #ff8274;
181
+ --pkt-color-button-primary-border-focus: #1f42aa;
182
+ --pkt-color-button-primary-text-normal: #ffffff;
183
+ --pkt-color-button-primary-text-hover: #ffffff;
184
+ --pkt-color-button-primary-text-focus: #ffffff;
185
+ --pkt-color-button-primary-text-active: #ffffff;
186
+ --pkt-color-button-primary-text-disabled: #666666;
187
+ --pkt-color-button-secondary-background-hover: #1f42aa;
188
+ --pkt-color-button-secondary-background-active: #1f42aa;
189
+ --pkt-color-button-secondary-background-disabled: #f9f9f9;
190
+ --pkt-color-button-secondary-border-normal: #2a2859;
191
+ --pkt-color-button-secondary-border-yellow: #f9c66b;
192
+ --pkt-color-button-secondary-border-focus: #1f42aa;
193
+ --pkt-color-button-secondary-text-normal: #2a2859;
194
+ --pkt-color-button-secondary-text-hover: #ffffff;
195
+ --pkt-color-button-secondary-text-focus: #1f42aa;
196
+ --pkt-color-button-secondary-text-active: #ffffff;
197
+ --pkt-color-button-secondary-text-disabled: #666666;
198
+ --pkt-color-button-tertiary-background-hover: #f2f2f2;
199
+ --pkt-color-button-tertiary-background-focus: #f2f2f2;
200
+ --pkt-color-button-tertiary-background-active: #1f42aa;
201
+ --pkt-color-button-tertiary-background-disabled: #f9f9f9;
202
+ --pkt-color-button-tertiary-border-focus: #1f42aa;
203
+ --pkt-color-button-tertiary-text-normal: #2a2859;
204
+ --pkt-color-button-tertiary-text-hover: #1f42aa;
205
+ --pkt-color-button-tertiary-text-focus: #1f42aa;
206
+ --pkt-color-button-tertiary-text-active: #ffffff;
207
+ --pkt-color-button-tertiary-text-disabled: #666666;
159
208
  --color-blue: #6fe9ff;
160
209
  --color-blue-light: #b3f5ff;
161
210
  --color-blue-dark: #2a2859;
@@ -210,67 +259,63 @@
210
259
  }
211
260
  :root[data-mode=dark],
212
261
  :root [data-mode=dark] {
213
- --pkt-color-background-card: var(--pkt-color-grays-gray-700);
214
- --pkt-color-background-default: var(--pkt-color-grays-gray-1000);
215
- --pkt-color-background-subtle: var(--pkt-color-grays-gray-1000);
216
- --pkt-color-background-transparent: var(--pkt-color-brand-neutrals-transparent);
217
- --pkt-color-border-default: var(--pkt-color-brand-neutrals-white);
218
- --pkt-color-border-beige: var(--pkt-color-brand-dark-beige-1000);
219
- --pkt-color-border-blue: var(--pkt-color-brand-blue-1000);
220
- --pkt-color-border-green: var(--pkt-color-brand-green-1000);
221
- --pkt-color-border-light-beige: var(--pkt-color-brand-light-beige-1000);
222
- --pkt-color-border-red: var(--pkt-color-brand-red-1000);
223
- --pkt-color-border-subtle: var(--pkt-color-brand-dark-blue-700);
224
- --pkt-color-border-yellow: var(--pkt-color-brand-yellow-1000);
225
- --pkt-color-border-states-active: var(--pkt-color-brand-blue-500);
226
- --pkt-color-border-states-disabled: var(--pkt-color-grays-gray-500);
227
- --pkt-color-border-states-focus: var(--pkt-color-brand-purple-1000);
228
- --pkt-color-border-states-hover: var(--pkt-color-brand-blue-500);
229
- --pkt-color-surface-default-faded-green: var(--pkt-color-brand-light-green-400);
230
- --pkt-color-surface-default-faded-red: var(--pkt-color-brand-red-400);
231
- --pkt-color-surface-default-gray: var(--pkt-color-brand-neutrals-100);
232
- --pkt-color-surface-default-light-beige: var(--pkt-color-brand-light-beige-1000);
233
- --pkt-color-surface-default-light-blue: var(--pkt-color-brand-blue-300);
234
- --pkt-color-surface-default-light-green: var(--pkt-color-brand-green-400);
235
- --pkt-color-surface-default-red: var(--pkt-color-brand-red-600);
236
- --pkt-color-surface-default-yellow: var(--pkt-color-brand-yellow-500);
237
- --pkt-color-surface-strong-beige: var(--pkt-color-brand-dark-beige-1000);
238
- --pkt-color-surface-strong-blue: var(--pkt-color-brand-blue-1000);
239
- --pkt-color-surface-strong-dark-blue: var(--pkt-color-brand-dark-blue-1000);
240
- --pkt-color-surface-strong-dark-green: var(--pkt-color-brand-dark-green-1000);
241
- --pkt-color-surface-strong-gray: var(--pkt-color-brand-neutrals-200);
242
- --pkt-color-surface-strong-green: var(--pkt-color-brand-green-1000);
243
- --pkt-color-surface-strong-light-green: var(--pkt-color-brand-light-green-1000);
244
- --pkt-color-surface-strong-red: var(--pkt-color-brand-red-1000);
245
- --pkt-color-surface-strong-yellow: var(--pkt-color-brand-yellow-1000);
246
- --pkt-color-surface-subtle-light-blue: var(--pkt-color-brand-blue-200);
247
- --pkt-color-surface-subtle-light-red: var(--pkt-color-brand-red-100);
248
- --pkt-color-surface-subtle-pale-blue: var(--pkt-color-brand-blue-100);
249
- --pkt-color-surface-subtle-white: var(--pkt-color-brand-neutrals-white);
250
- --pkt-color-text-body-dark: var(--pkt-color-brand-dark-blue-1000);
251
- --pkt-color-text-body-default: var(--pkt-color-brand-neutrals-white);
252
- --pkt-color-text-body-light: var(--pkt-color-brand-neutrals-white);
253
- --pkt-color-text-placeholder: var(--pkt-color-grays-gray-300);
254
- --pkt-color-text-action-disabled: var(--pkt-color-grays-gray-200);
255
- --pkt-color-text-action-active: var(--pkt-color-brand-blue-500);
256
- --pkt-color-text-action-hover: var(--pkt-color-brand-blue-500);
257
- --pkt-color-text-action-normal: var(--pkt-color-brand-neutrals-white);
258
- --pkt-color-input-background-normal: var(--pkt-color-brand-neutrals-white);
259
- --pkt-color-input-border-active: var(--pkt-color-brand-blue-500);
260
- --pkt-color-input-border-disabled: var(--pkt-color-grays-gray-200);
261
- --pkt-color-input-border-error: var(--pkt-color-brand-red-1000);
262
- --pkt-color-input-border-hover: var(--pkt-color-brand-blue-500);
263
- --pkt-color-input-border-normal: var(--pkt-color-brand-neutrals-white);
264
- --pkt-color-input-text-active: var(--pkt-color-brand-warm-blue-1000);
265
- --pkt-color-input-text-disabled: var(--pkt-color-grays-gray-200);
266
- --pkt-color-input-text-hover: var(--pkt-color-brand-warm-blue-1000);
267
- --pkt-color-input-text-normal: var(--pkt-color-brand-dark-blue-1000);
268
- --pkt-color-input-text-error: var(--pkt-color-brand-red-1000);
269
- --pkt-color-input-text-open: var(--pkt-color-brand-dark-blue-1000);
270
- --pkt-color-input-check-background: var(--pkt-color-brand-dark-blue-1000);
271
- --pkt-color-input-check-border: var(--pkt-color-brand-neutrals-white);
272
- --pkt-color-input-check-text-active: var(--pkt-color-brand-blue-500);
273
- --pkt-color-input-check-text-hover: var(--pkt-color-brand-blue-500);
262
+ --pkt-color-background-card: #2c2c2c;
263
+ --pkt-color-background-default: #2c2c2c;
264
+ --pkt-color-background-subtle: #333333;
265
+ --pkt-color-border-default: #ffffff;
266
+ --pkt-color-border-subtle: #4d4d4d;
267
+ --pkt-color-border-states-active: #b3f5ff;
268
+ --pkt-color-border-states-disabled: #808080;
269
+ --pkt-color-border-states-hover: #b3f5ff;
270
+ --pkt-color-text-body-default: #ffffff;
271
+ --pkt-color-text-placeholder: #b3b3b3;
272
+ --pkt-color-text-action-disabled: #cccccc;
273
+ --pkt-color-text-action-active: #b3f5ff;
274
+ --pkt-color-text-action-hover: #b3f5ff;
275
+ --pkt-color-text-action-normal: #ffffff;
276
+ --pkt-color-input-background-open: #b3f5ff;
277
+ --pkt-color-input-border-active: #b3f5ff;
278
+ --pkt-color-input-border-disabled: #cccccc;
279
+ --pkt-color-input-border-hover: #b3f5ff;
280
+ --pkt-color-input-border-normal: #ffffff;
281
+ --pkt-color-input-text-open: #2a2859;
282
+ --pkt-color-tag-text-hover: #2a2859;
283
+ --pkt-color-tag-text-active: #2a2859;
284
+ --pkt-color-tag-text-focus: #2a2859;
285
+ --pkt-color-input-check-background: #2a2859;
286
+ --pkt-color-input-check-border: #ffffff;
287
+ --pkt-color-input-check-text-active: #b3f5ff;
288
+ --pkt-color-input-check-text-hover: #b3f5ff;
289
+ --pkt-color-button-primary-background-normal: #b3f5ff;
290
+ --pkt-color-button-primary-background-hover: #6fe9ff;
291
+ --pkt-color-button-primary-background-focus: #6fe9ff;
292
+ --pkt-color-button-primary-background-active: #6fe9ff;
293
+ --pkt-color-button-primary-background-disabled: #4d4d4d;
294
+ --pkt-color-button-primary-border-focus: #6fe9ff;
295
+ --pkt-color-button-primary-text-normal: #2a2859;
296
+ --pkt-color-button-primary-text-hover: #2a2859;
297
+ --pkt-color-button-primary-text-focus: #2a2859;
298
+ --pkt-color-button-primary-text-active: #2a2859;
299
+ --pkt-color-button-primary-text-disabled: #b3b3b3;
300
+ --pkt-color-button-secondary-background-hover: #b3f5ff;
301
+ --pkt-color-button-secondary-background-active: #b3f5ff;
302
+ --pkt-color-button-secondary-background-disabled: #4d4d4d;
303
+ --pkt-color-button-secondary-border-normal: #ffffff;
304
+ --pkt-color-button-secondary-border-focus: #b3f5ff;
305
+ --pkt-color-button-secondary-text-normal: #ffffff;
306
+ --pkt-color-button-secondary-text-hover: #2a2859;
307
+ --pkt-color-button-secondary-text-focus: #b3f5ff;
308
+ --pkt-color-button-secondary-text-active: #2a2859;
309
+ --pkt-color-button-secondary-text-disabled: #b3b3b3;
310
+ --pkt-color-button-tertiary-background-hover: #6a698b;
311
+ --pkt-color-button-tertiary-background-focus: #6a698b;
312
+ --pkt-color-button-tertiary-background-active: #6a698b;
313
+ --pkt-color-button-tertiary-background-disabled: #4d4d4d;
314
+ --pkt-color-button-tertiary-border-focus: transparent;
315
+ --pkt-color-button-tertiary-text-normal: #ffffff;
316
+ --pkt-color-button-tertiary-text-hover: #ffffff;
317
+ --pkt-color-button-tertiary-text-focus: #ffffff;
318
+ --pkt-color-button-tertiary-text-disabled: #b3b3b3;
274
319
  }
275
320
 
276
321
  /*
@@ -2878,7 +2923,7 @@ a:active, a.pkt-link--active,
2878
2923
  .pkt-link--external::after {
2879
2924
  display: inline-block;
2880
2925
  content: " ";
2881
- --svg: url(https://punkt-cdn.oslo.kommune.no/17.1/icons/new-window-small.svg);
2926
+ --svg: url(https://punkt-cdn.oslo.kommune.no/18.3/icons/new-window-small.svg);
2882
2927
  background-image: var(--svg);
2883
2928
  background-repeat: no-repeat;
2884
2929
  background-size: 18px 18px;
@@ -5407,30 +5452,126 @@ button.pkt-link {
5407
5452
  border-color: #ffffff !important;
5408
5453
  }
5409
5454
 
5410
- .pkt-color-bg-brand-neutrals-100 {
5455
+ .pkt-color-bg-brand-neutrals-50 {
5411
5456
  background-color: #f9f9f9 !important;
5412
5457
  }
5413
5458
 
5414
- .pkt-color-txt-brand-neutrals-100 {
5459
+ .pkt-color-txt-brand-neutrals-50 {
5415
5460
  color: #f9f9f9 !important;
5416
5461
  }
5417
5462
 
5418
- .pkt-color-border-brand-neutrals-100 {
5463
+ .pkt-color-border-brand-neutrals-50 {
5419
5464
  border-color: #f9f9f9 !important;
5420
5465
  }
5421
5466
 
5422
- .pkt-color-bg-brand-neutrals-200 {
5467
+ .pkt-color-bg-brand-neutrals-100 {
5423
5468
  background-color: #f2f2f2 !important;
5424
5469
  }
5425
5470
 
5426
- .pkt-color-txt-brand-neutrals-200 {
5471
+ .pkt-color-txt-brand-neutrals-100 {
5427
5472
  color: #f2f2f2 !important;
5428
5473
  }
5429
5474
 
5430
- .pkt-color-border-brand-neutrals-200 {
5475
+ .pkt-color-border-brand-neutrals-100 {
5431
5476
  border-color: #f2f2f2 !important;
5432
5477
  }
5433
5478
 
5479
+ .pkt-color-bg-brand-neutrals-200 {
5480
+ background-color: #e6e6e6 !important;
5481
+ }
5482
+
5483
+ .pkt-color-txt-brand-neutrals-200 {
5484
+ color: #e6e6e6 !important;
5485
+ }
5486
+
5487
+ .pkt-color-border-brand-neutrals-200 {
5488
+ border-color: #e6e6e6 !important;
5489
+ }
5490
+
5491
+ .pkt-color-bg-brand-neutrals-300 {
5492
+ background-color: #cccccc !important;
5493
+ }
5494
+
5495
+ .pkt-color-txt-brand-neutrals-300 {
5496
+ color: #cccccc !important;
5497
+ }
5498
+
5499
+ .pkt-color-border-brand-neutrals-300 {
5500
+ border-color: #cccccc !important;
5501
+ }
5502
+
5503
+ .pkt-color-bg-brand-neutrals-400 {
5504
+ background-color: #b3b3b3 !important;
5505
+ }
5506
+
5507
+ .pkt-color-txt-brand-neutrals-400 {
5508
+ color: #b3b3b3 !important;
5509
+ }
5510
+
5511
+ .pkt-color-border-brand-neutrals-400 {
5512
+ border-color: #b3b3b3 !important;
5513
+ }
5514
+
5515
+ .pkt-color-bg-brand-neutrals-500 {
5516
+ background-color: #9a9a9a !important;
5517
+ }
5518
+
5519
+ .pkt-color-txt-brand-neutrals-500 {
5520
+ color: #9a9a9a !important;
5521
+ }
5522
+
5523
+ .pkt-color-border-brand-neutrals-500 {
5524
+ border-color: #9a9a9a !important;
5525
+ }
5526
+
5527
+ .pkt-color-bg-brand-neutrals-600 {
5528
+ background-color: #808080 !important;
5529
+ }
5530
+
5531
+ .pkt-color-txt-brand-neutrals-600 {
5532
+ color: #808080 !important;
5533
+ }
5534
+
5535
+ .pkt-color-border-brand-neutrals-600 {
5536
+ border-color: #808080 !important;
5537
+ }
5538
+
5539
+ .pkt-color-bg-brand-neutrals-700 {
5540
+ background-color: #666666 !important;
5541
+ }
5542
+
5543
+ .pkt-color-txt-brand-neutrals-700 {
5544
+ color: #666666 !important;
5545
+ }
5546
+
5547
+ .pkt-color-border-brand-neutrals-700 {
5548
+ border-color: #666666 !important;
5549
+ }
5550
+
5551
+ .pkt-color-bg-brand-neutrals-800 {
5552
+ background-color: #4d4d4d !important;
5553
+ }
5554
+
5555
+ .pkt-color-txt-brand-neutrals-800 {
5556
+ color: #4d4d4d !important;
5557
+ }
5558
+
5559
+ .pkt-color-border-brand-neutrals-800 {
5560
+ border-color: #4d4d4d !important;
5561
+ }
5562
+
5563
+ .pkt-color-bg-brand-neutrals-900 {
5564
+ background-color: #333333 !important;
5565
+ }
5566
+
5567
+ .pkt-color-txt-brand-neutrals-900 {
5568
+ color: #333333 !important;
5569
+ }
5570
+
5571
+ .pkt-color-border-brand-neutrals-900 {
5572
+ border-color: #333333 !important;
5573
+ }
5574
+
5434
5575
  .pkt-color-bg-brand-neutrals-1000 {
5435
5576
  background-color: #2c2c2c !important;
5436
5577
  }
@@ -5875,6 +6016,18 @@ button.pkt-link {
5875
6016
  border-color: var(--pkt-color-surface-default-light-green) !important;
5876
6017
  }
5877
6018
 
6019
+ .pkt-color-bg-surface-default-pale-blue {
6020
+ background-color: var(--pkt-color-surface-default-pale-blue) !important;
6021
+ }
6022
+
6023
+ .pkt-color-txt-surface-default-pale-blue {
6024
+ color: var(--pkt-color-surface-default-pale-blue) !important;
6025
+ }
6026
+
6027
+ .pkt-color-border-surface-default-pale-blue {
6028
+ border-color: var(--pkt-color-surface-default-pale-blue) !important;
6029
+ }
6030
+
5878
6031
  .pkt-color-bg-surface-default-red {
5879
6032
  background-color: var(--pkt-color-surface-default-red) !important;
5880
6033
  }
@@ -6031,6 +6184,18 @@ button.pkt-link {
6031
6184
  border-color: var(--pkt-color-surface-subtle-light-red) !important;
6032
6185
  }
6033
6186
 
6187
+ .pkt-color-bg-surface-subtle-gray {
6188
+ background-color: var(--pkt-color-surface-subtle-gray) !important;
6189
+ }
6190
+
6191
+ .pkt-color-txt-surface-subtle-gray {
6192
+ color: var(--pkt-color-surface-subtle-gray) !important;
6193
+ }
6194
+
6195
+ .pkt-color-border-surface-subtle-gray {
6196
+ border-color: var(--pkt-color-surface-subtle-gray) !important;
6197
+ }
6198
+
6034
6199
  .pkt-color-bg-surface-subtle-pale-blue {
6035
6200
  background-color: var(--pkt-color-surface-subtle-pale-blue) !important;
6036
6201
  }
@@ -6175,6 +6340,18 @@ button.pkt-link {
6175
6340
  border-color: var(--pkt-color-input-background-disabled) !important;
6176
6341
  }
6177
6342
 
6343
+ .pkt-color-bg-input-background-open {
6344
+ background-color: var(--pkt-color-input-background-open) !important;
6345
+ }
6346
+
6347
+ .pkt-color-txt-input-background-open {
6348
+ color: var(--pkt-color-input-background-open) !important;
6349
+ }
6350
+
6351
+ .pkt-color-border-input-background-open {
6352
+ border-color: var(--pkt-color-input-background-open) !important;
6353
+ }
6354
+
6178
6355
  .pkt-color-bg-input-border-active {
6179
6356
  background-color: var(--pkt-color-input-border-active) !important;
6180
6357
  }
@@ -6307,6 +6484,54 @@ button.pkt-link {
6307
6484
  border-color: var(--pkt-color-input-text-open) !important;
6308
6485
  }
6309
6486
 
6487
+ .pkt-color-bg-tag-text-normal {
6488
+ background-color: var(--pkt-color-tag-text-normal) !important;
6489
+ }
6490
+
6491
+ .pkt-color-txt-tag-text-normal {
6492
+ color: var(--pkt-color-tag-text-normal) !important;
6493
+ }
6494
+
6495
+ .pkt-color-border-tag-text-normal {
6496
+ border-color: var(--pkt-color-tag-text-normal) !important;
6497
+ }
6498
+
6499
+ .pkt-color-bg-tag-text-hover {
6500
+ background-color: var(--pkt-color-tag-text-hover) !important;
6501
+ }
6502
+
6503
+ .pkt-color-txt-tag-text-hover {
6504
+ color: var(--pkt-color-tag-text-hover) !important;
6505
+ }
6506
+
6507
+ .pkt-color-border-tag-text-hover {
6508
+ border-color: var(--pkt-color-tag-text-hover) !important;
6509
+ }
6510
+
6511
+ .pkt-color-bg-tag-text-active {
6512
+ background-color: var(--pkt-color-tag-text-active) !important;
6513
+ }
6514
+
6515
+ .pkt-color-txt-tag-text-active {
6516
+ color: var(--pkt-color-tag-text-active) !important;
6517
+ }
6518
+
6519
+ .pkt-color-border-tag-text-active {
6520
+ border-color: var(--pkt-color-tag-text-active) !important;
6521
+ }
6522
+
6523
+ .pkt-color-bg-tag-text-focus {
6524
+ background-color: var(--pkt-color-tag-text-focus) !important;
6525
+ }
6526
+
6527
+ .pkt-color-txt-tag-text-focus {
6528
+ color: var(--pkt-color-tag-text-focus) !important;
6529
+ }
6530
+
6531
+ .pkt-color-border-tag-text-focus {
6532
+ border-color: var(--pkt-color-tag-text-focus) !important;
6533
+ }
6534
+
6310
6535
  .pkt-color-bg-input-check-background {
6311
6536
  background-color: var(--pkt-color-input-check-background) !important;
6312
6537
  }
@@ -6355,6 +6580,414 @@ button.pkt-link {
6355
6580
  border-color: var(--pkt-color-input-check-text-hover) !important;
6356
6581
  }
6357
6582
 
6583
+ .pkt-color-bg-button-primary-background-normal {
6584
+ background-color: var(--pkt-color-button-primary-background-normal) !important;
6585
+ }
6586
+
6587
+ .pkt-color-txt-button-primary-background-normal {
6588
+ color: var(--pkt-color-button-primary-background-normal) !important;
6589
+ }
6590
+
6591
+ .pkt-color-border-button-primary-background-normal {
6592
+ border-color: var(--pkt-color-button-primary-background-normal) !important;
6593
+ }
6594
+
6595
+ .pkt-color-bg-button-primary-background-hover {
6596
+ background-color: var(--pkt-color-button-primary-background-hover) !important;
6597
+ }
6598
+
6599
+ .pkt-color-txt-button-primary-background-hover {
6600
+ color: var(--pkt-color-button-primary-background-hover) !important;
6601
+ }
6602
+
6603
+ .pkt-color-border-button-primary-background-hover {
6604
+ border-color: var(--pkt-color-button-primary-background-hover) !important;
6605
+ }
6606
+
6607
+ .pkt-color-bg-button-primary-background-focus {
6608
+ background-color: var(--pkt-color-button-primary-background-focus) !important;
6609
+ }
6610
+
6611
+ .pkt-color-txt-button-primary-background-focus {
6612
+ color: var(--pkt-color-button-primary-background-focus) !important;
6613
+ }
6614
+
6615
+ .pkt-color-border-button-primary-background-focus {
6616
+ border-color: var(--pkt-color-button-primary-background-focus) !important;
6617
+ }
6618
+
6619
+ .pkt-color-bg-button-primary-background-active {
6620
+ background-color: var(--pkt-color-button-primary-background-active) !important;
6621
+ }
6622
+
6623
+ .pkt-color-txt-button-primary-background-active {
6624
+ color: var(--pkt-color-button-primary-background-active) !important;
6625
+ }
6626
+
6627
+ .pkt-color-border-button-primary-background-active {
6628
+ border-color: var(--pkt-color-button-primary-background-active) !important;
6629
+ }
6630
+
6631
+ .pkt-color-bg-button-primary-background-disabled {
6632
+ background-color: var(--pkt-color-button-primary-background-disabled) !important;
6633
+ }
6634
+
6635
+ .pkt-color-txt-button-primary-background-disabled {
6636
+ color: var(--pkt-color-button-primary-background-disabled) !important;
6637
+ }
6638
+
6639
+ .pkt-color-border-button-primary-background-disabled {
6640
+ border-color: var(--pkt-color-button-primary-background-disabled) !important;
6641
+ }
6642
+
6643
+ .pkt-color-bg-button-primary-background-success {
6644
+ background-color: var(--pkt-color-button-primary-background-success) !important;
6645
+ }
6646
+
6647
+ .pkt-color-txt-button-primary-background-success {
6648
+ color: var(--pkt-color-button-primary-background-success) !important;
6649
+ }
6650
+
6651
+ .pkt-color-border-button-primary-background-success {
6652
+ border-color: var(--pkt-color-button-primary-background-success) !important;
6653
+ }
6654
+
6655
+ .pkt-color-bg-button-primary-background-danger {
6656
+ background-color: var(--pkt-color-button-primary-background-danger) !important;
6657
+ }
6658
+
6659
+ .pkt-color-txt-button-primary-background-danger {
6660
+ color: var(--pkt-color-button-primary-background-danger) !important;
6661
+ }
6662
+
6663
+ .pkt-color-border-button-primary-background-danger {
6664
+ border-color: var(--pkt-color-button-primary-background-danger) !important;
6665
+ }
6666
+
6667
+ .pkt-color-bg-button-primary-border-focus {
6668
+ background-color: var(--pkt-color-button-primary-border-focus) !important;
6669
+ }
6670
+
6671
+ .pkt-color-txt-button-primary-border-focus {
6672
+ color: var(--pkt-color-button-primary-border-focus) !important;
6673
+ }
6674
+
6675
+ .pkt-color-border-button-primary-border-focus {
6676
+ border-color: var(--pkt-color-button-primary-border-focus) !important;
6677
+ }
6678
+
6679
+ .pkt-color-bg-button-primary-text-normal {
6680
+ background-color: var(--pkt-color-button-primary-text-normal) !important;
6681
+ }
6682
+
6683
+ .pkt-color-txt-button-primary-text-normal {
6684
+ color: var(--pkt-color-button-primary-text-normal) !important;
6685
+ }
6686
+
6687
+ .pkt-color-border-button-primary-text-normal {
6688
+ border-color: var(--pkt-color-button-primary-text-normal) !important;
6689
+ }
6690
+
6691
+ .pkt-color-bg-button-primary-text-hover {
6692
+ background-color: var(--pkt-color-button-primary-text-hover) !important;
6693
+ }
6694
+
6695
+ .pkt-color-txt-button-primary-text-hover {
6696
+ color: var(--pkt-color-button-primary-text-hover) !important;
6697
+ }
6698
+
6699
+ .pkt-color-border-button-primary-text-hover {
6700
+ border-color: var(--pkt-color-button-primary-text-hover) !important;
6701
+ }
6702
+
6703
+ .pkt-color-bg-button-primary-text-focus {
6704
+ background-color: var(--pkt-color-button-primary-text-focus) !important;
6705
+ }
6706
+
6707
+ .pkt-color-txt-button-primary-text-focus {
6708
+ color: var(--pkt-color-button-primary-text-focus) !important;
6709
+ }
6710
+
6711
+ .pkt-color-border-button-primary-text-focus {
6712
+ border-color: var(--pkt-color-button-primary-text-focus) !important;
6713
+ }
6714
+
6715
+ .pkt-color-bg-button-primary-text-active {
6716
+ background-color: var(--pkt-color-button-primary-text-active) !important;
6717
+ }
6718
+
6719
+ .pkt-color-txt-button-primary-text-active {
6720
+ color: var(--pkt-color-button-primary-text-active) !important;
6721
+ }
6722
+
6723
+ .pkt-color-border-button-primary-text-active {
6724
+ border-color: var(--pkt-color-button-primary-text-active) !important;
6725
+ }
6726
+
6727
+ .pkt-color-bg-button-primary-text-disabled {
6728
+ background-color: var(--pkt-color-button-primary-text-disabled) !important;
6729
+ }
6730
+
6731
+ .pkt-color-txt-button-primary-text-disabled {
6732
+ color: var(--pkt-color-button-primary-text-disabled) !important;
6733
+ }
6734
+
6735
+ .pkt-color-border-button-primary-text-disabled {
6736
+ border-color: var(--pkt-color-button-primary-text-disabled) !important;
6737
+ }
6738
+
6739
+ .pkt-color-bg-button-secondary-background-hover {
6740
+ background-color: var(--pkt-color-button-secondary-background-hover) !important;
6741
+ }
6742
+
6743
+ .pkt-color-txt-button-secondary-background-hover {
6744
+ color: var(--pkt-color-button-secondary-background-hover) !important;
6745
+ }
6746
+
6747
+ .pkt-color-border-button-secondary-background-hover {
6748
+ border-color: var(--pkt-color-button-secondary-background-hover) !important;
6749
+ }
6750
+
6751
+ .pkt-color-bg-button-secondary-background-active {
6752
+ background-color: var(--pkt-color-button-secondary-background-active) !important;
6753
+ }
6754
+
6755
+ .pkt-color-txt-button-secondary-background-active {
6756
+ color: var(--pkt-color-button-secondary-background-active) !important;
6757
+ }
6758
+
6759
+ .pkt-color-border-button-secondary-background-active {
6760
+ border-color: var(--pkt-color-button-secondary-background-active) !important;
6761
+ }
6762
+
6763
+ .pkt-color-bg-button-secondary-background-disabled {
6764
+ background-color: var(--pkt-color-button-secondary-background-disabled) !important;
6765
+ }
6766
+
6767
+ .pkt-color-txt-button-secondary-background-disabled {
6768
+ color: var(--pkt-color-button-secondary-background-disabled) !important;
6769
+ }
6770
+
6771
+ .pkt-color-border-button-secondary-background-disabled {
6772
+ border-color: var(--pkt-color-button-secondary-background-disabled) !important;
6773
+ }
6774
+
6775
+ .pkt-color-bg-button-secondary-border-normal {
6776
+ background-color: var(--pkt-color-button-secondary-border-normal) !important;
6777
+ }
6778
+
6779
+ .pkt-color-txt-button-secondary-border-normal {
6780
+ color: var(--pkt-color-button-secondary-border-normal) !important;
6781
+ }
6782
+
6783
+ .pkt-color-border-button-secondary-border-normal {
6784
+ border-color: var(--pkt-color-button-secondary-border-normal) !important;
6785
+ }
6786
+
6787
+ .pkt-color-bg-button-secondary-border-yellow {
6788
+ background-color: var(--pkt-color-button-secondary-border-yellow) !important;
6789
+ }
6790
+
6791
+ .pkt-color-txt-button-secondary-border-yellow {
6792
+ color: var(--pkt-color-button-secondary-border-yellow) !important;
6793
+ }
6794
+
6795
+ .pkt-color-border-button-secondary-border-yellow {
6796
+ border-color: var(--pkt-color-button-secondary-border-yellow) !important;
6797
+ }
6798
+
6799
+ .pkt-color-bg-button-secondary-border-focus {
6800
+ background-color: var(--pkt-color-button-secondary-border-focus) !important;
6801
+ }
6802
+
6803
+ .pkt-color-txt-button-secondary-border-focus {
6804
+ color: var(--pkt-color-button-secondary-border-focus) !important;
6805
+ }
6806
+
6807
+ .pkt-color-border-button-secondary-border-focus {
6808
+ border-color: var(--pkt-color-button-secondary-border-focus) !important;
6809
+ }
6810
+
6811
+ .pkt-color-bg-button-secondary-text-normal {
6812
+ background-color: var(--pkt-color-button-secondary-text-normal) !important;
6813
+ }
6814
+
6815
+ .pkt-color-txt-button-secondary-text-normal {
6816
+ color: var(--pkt-color-button-secondary-text-normal) !important;
6817
+ }
6818
+
6819
+ .pkt-color-border-button-secondary-text-normal {
6820
+ border-color: var(--pkt-color-button-secondary-text-normal) !important;
6821
+ }
6822
+
6823
+ .pkt-color-bg-button-secondary-text-hover {
6824
+ background-color: var(--pkt-color-button-secondary-text-hover) !important;
6825
+ }
6826
+
6827
+ .pkt-color-txt-button-secondary-text-hover {
6828
+ color: var(--pkt-color-button-secondary-text-hover) !important;
6829
+ }
6830
+
6831
+ .pkt-color-border-button-secondary-text-hover {
6832
+ border-color: var(--pkt-color-button-secondary-text-hover) !important;
6833
+ }
6834
+
6835
+ .pkt-color-bg-button-secondary-text-focus {
6836
+ background-color: var(--pkt-color-button-secondary-text-focus) !important;
6837
+ }
6838
+
6839
+ .pkt-color-txt-button-secondary-text-focus {
6840
+ color: var(--pkt-color-button-secondary-text-focus) !important;
6841
+ }
6842
+
6843
+ .pkt-color-border-button-secondary-text-focus {
6844
+ border-color: var(--pkt-color-button-secondary-text-focus) !important;
6845
+ }
6846
+
6847
+ .pkt-color-bg-button-secondary-text-active {
6848
+ background-color: var(--pkt-color-button-secondary-text-active) !important;
6849
+ }
6850
+
6851
+ .pkt-color-txt-button-secondary-text-active {
6852
+ color: var(--pkt-color-button-secondary-text-active) !important;
6853
+ }
6854
+
6855
+ .pkt-color-border-button-secondary-text-active {
6856
+ border-color: var(--pkt-color-button-secondary-text-active) !important;
6857
+ }
6858
+
6859
+ .pkt-color-bg-button-secondary-text-disabled {
6860
+ background-color: var(--pkt-color-button-secondary-text-disabled) !important;
6861
+ }
6862
+
6863
+ .pkt-color-txt-button-secondary-text-disabled {
6864
+ color: var(--pkt-color-button-secondary-text-disabled) !important;
6865
+ }
6866
+
6867
+ .pkt-color-border-button-secondary-text-disabled {
6868
+ border-color: var(--pkt-color-button-secondary-text-disabled) !important;
6869
+ }
6870
+
6871
+ .pkt-color-bg-button-tertiary-background-hover {
6872
+ background-color: var(--pkt-color-button-tertiary-background-hover) !important;
6873
+ }
6874
+
6875
+ .pkt-color-txt-button-tertiary-background-hover {
6876
+ color: var(--pkt-color-button-tertiary-background-hover) !important;
6877
+ }
6878
+
6879
+ .pkt-color-border-button-tertiary-background-hover {
6880
+ border-color: var(--pkt-color-button-tertiary-background-hover) !important;
6881
+ }
6882
+
6883
+ .pkt-color-bg-button-tertiary-background-focus {
6884
+ background-color: var(--pkt-color-button-tertiary-background-focus) !important;
6885
+ }
6886
+
6887
+ .pkt-color-txt-button-tertiary-background-focus {
6888
+ color: var(--pkt-color-button-tertiary-background-focus) !important;
6889
+ }
6890
+
6891
+ .pkt-color-border-button-tertiary-background-focus {
6892
+ border-color: var(--pkt-color-button-tertiary-background-focus) !important;
6893
+ }
6894
+
6895
+ .pkt-color-bg-button-tertiary-background-active {
6896
+ background-color: var(--pkt-color-button-tertiary-background-active) !important;
6897
+ }
6898
+
6899
+ .pkt-color-txt-button-tertiary-background-active {
6900
+ color: var(--pkt-color-button-tertiary-background-active) !important;
6901
+ }
6902
+
6903
+ .pkt-color-border-button-tertiary-background-active {
6904
+ border-color: var(--pkt-color-button-tertiary-background-active) !important;
6905
+ }
6906
+
6907
+ .pkt-color-bg-button-tertiary-background-disabled {
6908
+ background-color: var(--pkt-color-button-tertiary-background-disabled) !important;
6909
+ }
6910
+
6911
+ .pkt-color-txt-button-tertiary-background-disabled {
6912
+ color: var(--pkt-color-button-tertiary-background-disabled) !important;
6913
+ }
6914
+
6915
+ .pkt-color-border-button-tertiary-background-disabled {
6916
+ border-color: var(--pkt-color-button-tertiary-background-disabled) !important;
6917
+ }
6918
+
6919
+ .pkt-color-bg-button-tertiary-border-focus {
6920
+ background-color: var(--pkt-color-button-tertiary-border-focus) !important;
6921
+ }
6922
+
6923
+ .pkt-color-txt-button-tertiary-border-focus {
6924
+ color: var(--pkt-color-button-tertiary-border-focus) !important;
6925
+ }
6926
+
6927
+ .pkt-color-border-button-tertiary-border-focus {
6928
+ border-color: var(--pkt-color-button-tertiary-border-focus) !important;
6929
+ }
6930
+
6931
+ .pkt-color-bg-button-tertiary-text-normal {
6932
+ background-color: var(--pkt-color-button-tertiary-text-normal) !important;
6933
+ }
6934
+
6935
+ .pkt-color-txt-button-tertiary-text-normal {
6936
+ color: var(--pkt-color-button-tertiary-text-normal) !important;
6937
+ }
6938
+
6939
+ .pkt-color-border-button-tertiary-text-normal {
6940
+ border-color: var(--pkt-color-button-tertiary-text-normal) !important;
6941
+ }
6942
+
6943
+ .pkt-color-bg-button-tertiary-text-hover {
6944
+ background-color: var(--pkt-color-button-tertiary-text-hover) !important;
6945
+ }
6946
+
6947
+ .pkt-color-txt-button-tertiary-text-hover {
6948
+ color: var(--pkt-color-button-tertiary-text-hover) !important;
6949
+ }
6950
+
6951
+ .pkt-color-border-button-tertiary-text-hover {
6952
+ border-color: var(--pkt-color-button-tertiary-text-hover) !important;
6953
+ }
6954
+
6955
+ .pkt-color-bg-button-tertiary-text-focus {
6956
+ background-color: var(--pkt-color-button-tertiary-text-focus) !important;
6957
+ }
6958
+
6959
+ .pkt-color-txt-button-tertiary-text-focus {
6960
+ color: var(--pkt-color-button-tertiary-text-focus) !important;
6961
+ }
6962
+
6963
+ .pkt-color-border-button-tertiary-text-focus {
6964
+ border-color: var(--pkt-color-button-tertiary-text-focus) !important;
6965
+ }
6966
+
6967
+ .pkt-color-bg-button-tertiary-text-active {
6968
+ background-color: var(--pkt-color-button-tertiary-text-active) !important;
6969
+ }
6970
+
6971
+ .pkt-color-txt-button-tertiary-text-active {
6972
+ color: var(--pkt-color-button-tertiary-text-active) !important;
6973
+ }
6974
+
6975
+ .pkt-color-border-button-tertiary-text-active {
6976
+ border-color: var(--pkt-color-button-tertiary-text-active) !important;
6977
+ }
6978
+
6979
+ .pkt-color-bg-button-tertiary-text-disabled {
6980
+ background-color: var(--pkt-color-button-tertiary-text-disabled) !important;
6981
+ }
6982
+
6983
+ .pkt-color-txt-button-tertiary-text-disabled {
6984
+ color: var(--pkt-color-button-tertiary-text-disabled) !important;
6985
+ }
6986
+
6987
+ .pkt-color-border-button-tertiary-text-disabled {
6988
+ border-color: var(--pkt-color-button-tertiary-text-disabled) !important;
6989
+ }
6990
+
6358
6991
  .bg-color-blue {
6359
6992
  background-color: #6fe9ff !important;
6360
6993
  }