@oslokommune/punkt-css 18.0.0 → 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 +2 -2
  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
@@ -261,7 +261,7 @@
261
261
  font-weight: 400;
262
262
  src: url("../fonts/OsloIcons.woff2") format("woff2"), url("../fonts/OsloIcons.woff") format("woff");
263
263
  }
264
- /*
264
+ /*
265
265
  * Colors
266
266
  * Brand
267
267
  * Light mode
@@ -294,8 +294,16 @@
294
294
  --pkt-color-brand-light-beige-1000: #f8f0dd;
295
295
  --pkt-color-brand-dark-beige-1000: #d0bfae;
296
296
  --pkt-color-brand-neutrals-white: #ffffff;
297
- --pkt-color-brand-neutrals-100: #f9f9f9;
298
- --pkt-color-brand-neutrals-200: #f2f2f2;
297
+ --pkt-color-brand-neutrals-50: #f9f9f9;
298
+ --pkt-color-brand-neutrals-100: #f2f2f2;
299
+ --pkt-color-brand-neutrals-200: #e6e6e6;
300
+ --pkt-color-brand-neutrals-300: #cccccc;
301
+ --pkt-color-brand-neutrals-400: #b3b3b3;
302
+ --pkt-color-brand-neutrals-500: #9a9a9a;
303
+ --pkt-color-brand-neutrals-600: #808080;
304
+ --pkt-color-brand-neutrals-700: #666666;
305
+ --pkt-color-brand-neutrals-800: #4d4d4d;
306
+ --pkt-color-brand-neutrals-900: #333333;
299
307
  --pkt-color-brand-neutrals-1000: #2c2c2c;
300
308
  --pkt-color-brand-neutrals-black: #000000;
301
309
  --pkt-color-brand-neutrals-transparent: transparent;
@@ -329,23 +337,25 @@
329
337
  --pkt-color-border-states-hover: #1f42aa;
330
338
  --pkt-color-surface-default-faded-green: #e5ffe6;
331
339
  --pkt-color-surface-default-faded-red: #ffdfdc;
332
- --pkt-color-surface-default-gray: #f9f9f9;
340
+ --pkt-color-surface-default-gray: #f2f2f2;
333
341
  --pkt-color-surface-default-light-beige: #f8f0dd;
334
- --pkt-color-surface-default-light-blue: #d1f9ff;
342
+ --pkt-color-surface-default-light-blue: #b3f5ff;
335
343
  --pkt-color-surface-default-light-green: #c7fde9;
344
+ --pkt-color-surface-default-pale-blue: #d1f9ff;
336
345
  --pkt-color-surface-default-red: #ffb4ac;
337
346
  --pkt-color-surface-default-yellow: #ffe7bc;
338
347
  --pkt-color-surface-strong-beige: #d0bfae;
339
348
  --pkt-color-surface-strong-blue: #6fe9ff;
340
349
  --pkt-color-surface-strong-dark-blue: #2a2859;
341
350
  --pkt-color-surface-strong-dark-green: #034b45;
342
- --pkt-color-surface-strong-gray: #f2f2f2;
351
+ --pkt-color-surface-strong-gray: #e6e6e6;
343
352
  --pkt-color-surface-strong-green: #43f8b6;
344
353
  --pkt-color-surface-strong-light-green: #c7f6c9;
345
354
  --pkt-color-surface-strong-red: #ff8274;
346
355
  --pkt-color-surface-strong-yellow: #f9c66b;
347
356
  --pkt-color-surface-subtle-light-blue: #e5fcff;
348
357
  --pkt-color-surface-subtle-light-red: #fff2f1;
358
+ --pkt-color-surface-subtle-gray: #f9f9f9;
349
359
  --pkt-color-surface-subtle-pale-blue: #f1fdff;
350
360
  --pkt-color-surface-subtle-white: #ffffff;
351
361
  --pkt-color-text-body-dark: #2a2859;
@@ -358,21 +368,60 @@
358
368
  --pkt-color-text-action-normal: #2a2859;
359
369
  --pkt-color-input-background-normal: #ffffff;
360
370
  --pkt-color-input-background-disabled: #f9f9f9;
371
+ --pkt-color-input-background-open: #1f42aa;
361
372
  --pkt-color-input-border-active: #1f42aa;
362
373
  --pkt-color-input-border-disabled: #b3b3b3;
363
374
  --pkt-color-input-border-error: #ff8274;
364
375
  --pkt-color-input-border-hover: #1f42aa;
365
376
  --pkt-color-input-border-normal: #2a2859;
366
377
  --pkt-color-input-text-active: #1f42aa;
367
- --pkt-color-input-text-disabled: #808080;
378
+ --pkt-color-input-text-disabled: #666666;
368
379
  --pkt-color-input-text-hover: #1f42aa;
369
380
  --pkt-color-input-text-normal: #2a2859;
370
381
  --pkt-color-input-text-error: #ff8274;
371
382
  --pkt-color-input-text-open: #ffffff;
383
+ --pkt-color-tag-text-normal: #2a2859;
384
+ --pkt-color-tag-text-hover: #1f42aa;
385
+ --pkt-color-tag-text-active: #1f42aa;
386
+ --pkt-color-tag-text-focus: #1f42aa;
372
387
  --pkt-color-input-check-background: #ffffff;
373
388
  --pkt-color-input-check-border: #2a2859;
374
389
  --pkt-color-input-check-text-active: #1f42aa;
375
390
  --pkt-color-input-check-text-hover: #1f42aa;
391
+ --pkt-color-button-primary-background-normal: #2a2859;
392
+ --pkt-color-button-primary-background-hover: #1f42aa;
393
+ --pkt-color-button-primary-background-focus: #1f42aa;
394
+ --pkt-color-button-primary-background-active: #1f42aa;
395
+ --pkt-color-button-primary-background-disabled: #f9f9f9;
396
+ --pkt-color-button-primary-background-success: #43f8b6;
397
+ --pkt-color-button-primary-background-danger: #ff8274;
398
+ --pkt-color-button-primary-border-focus: #1f42aa;
399
+ --pkt-color-button-primary-text-normal: #ffffff;
400
+ --pkt-color-button-primary-text-hover: #ffffff;
401
+ --pkt-color-button-primary-text-focus: #ffffff;
402
+ --pkt-color-button-primary-text-active: #ffffff;
403
+ --pkt-color-button-primary-text-disabled: #666666;
404
+ --pkt-color-button-secondary-background-hover: #1f42aa;
405
+ --pkt-color-button-secondary-background-active: #1f42aa;
406
+ --pkt-color-button-secondary-background-disabled: #f9f9f9;
407
+ --pkt-color-button-secondary-border-normal: #2a2859;
408
+ --pkt-color-button-secondary-border-yellow: #f9c66b;
409
+ --pkt-color-button-secondary-border-focus: #1f42aa;
410
+ --pkt-color-button-secondary-text-normal: #2a2859;
411
+ --pkt-color-button-secondary-text-hover: #ffffff;
412
+ --pkt-color-button-secondary-text-focus: #1f42aa;
413
+ --pkt-color-button-secondary-text-active: #ffffff;
414
+ --pkt-color-button-secondary-text-disabled: #666666;
415
+ --pkt-color-button-tertiary-background-hover: #f2f2f2;
416
+ --pkt-color-button-tertiary-background-focus: #f2f2f2;
417
+ --pkt-color-button-tertiary-background-active: #1f42aa;
418
+ --pkt-color-button-tertiary-background-disabled: #f9f9f9;
419
+ --pkt-color-button-tertiary-border-focus: #1f42aa;
420
+ --pkt-color-button-tertiary-text-normal: #2a2859;
421
+ --pkt-color-button-tertiary-text-hover: #1f42aa;
422
+ --pkt-color-button-tertiary-text-focus: #1f42aa;
423
+ --pkt-color-button-tertiary-text-active: #ffffff;
424
+ --pkt-color-button-tertiary-text-disabled: #666666;
376
425
  --color-blue: #6fe9ff;
377
426
  --color-blue-light: #b3f5ff;
378
427
  --color-blue-dark: #2a2859;
@@ -427,67 +476,63 @@
427
476
  }
428
477
  :root[data-mode=dark],
429
478
  :root [data-mode=dark] {
430
- --pkt-color-background-card: var(--pkt-color-grays-gray-700);
431
- --pkt-color-background-default: var(--pkt-color-grays-gray-1000);
432
- --pkt-color-background-subtle: var(--pkt-color-grays-gray-1000);
433
- --pkt-color-background-transparent: var(--pkt-color-brand-neutrals-transparent);
434
- --pkt-color-border-default: var(--pkt-color-brand-neutrals-white);
435
- --pkt-color-border-beige: var(--pkt-color-brand-dark-beige-1000);
436
- --pkt-color-border-blue: var(--pkt-color-brand-blue-1000);
437
- --pkt-color-border-green: var(--pkt-color-brand-green-1000);
438
- --pkt-color-border-light-beige: var(--pkt-color-brand-light-beige-1000);
439
- --pkt-color-border-red: var(--pkt-color-brand-red-1000);
440
- --pkt-color-border-subtle: var(--pkt-color-brand-dark-blue-700);
441
- --pkt-color-border-yellow: var(--pkt-color-brand-yellow-1000);
442
- --pkt-color-border-states-active: var(--pkt-color-brand-blue-500);
443
- --pkt-color-border-states-disabled: var(--pkt-color-grays-gray-500);
444
- --pkt-color-border-states-focus: var(--pkt-color-brand-purple-1000);
445
- --pkt-color-border-states-hover: var(--pkt-color-brand-blue-500);
446
- --pkt-color-surface-default-faded-green: var(--pkt-color-brand-light-green-400);
447
- --pkt-color-surface-default-faded-red: var(--pkt-color-brand-red-400);
448
- --pkt-color-surface-default-gray: var(--pkt-color-brand-neutrals-100);
449
- --pkt-color-surface-default-light-beige: var(--pkt-color-brand-light-beige-1000);
450
- --pkt-color-surface-default-light-blue: var(--pkt-color-brand-blue-300);
451
- --pkt-color-surface-default-light-green: var(--pkt-color-brand-green-400);
452
- --pkt-color-surface-default-red: var(--pkt-color-brand-red-600);
453
- --pkt-color-surface-default-yellow: var(--pkt-color-brand-yellow-500);
454
- --pkt-color-surface-strong-beige: var(--pkt-color-brand-dark-beige-1000);
455
- --pkt-color-surface-strong-blue: var(--pkt-color-brand-blue-1000);
456
- --pkt-color-surface-strong-dark-blue: var(--pkt-color-brand-dark-blue-1000);
457
- --pkt-color-surface-strong-dark-green: var(--pkt-color-brand-dark-green-1000);
458
- --pkt-color-surface-strong-gray: var(--pkt-color-brand-neutrals-200);
459
- --pkt-color-surface-strong-green: var(--pkt-color-brand-green-1000);
460
- --pkt-color-surface-strong-light-green: var(--pkt-color-brand-light-green-1000);
461
- --pkt-color-surface-strong-red: var(--pkt-color-brand-red-1000);
462
- --pkt-color-surface-strong-yellow: var(--pkt-color-brand-yellow-1000);
463
- --pkt-color-surface-subtle-light-blue: var(--pkt-color-brand-blue-200);
464
- --pkt-color-surface-subtle-light-red: var(--pkt-color-brand-red-100);
465
- --pkt-color-surface-subtle-pale-blue: var(--pkt-color-brand-blue-100);
466
- --pkt-color-surface-subtle-white: var(--pkt-color-brand-neutrals-white);
467
- --pkt-color-text-body-dark: var(--pkt-color-brand-dark-blue-1000);
468
- --pkt-color-text-body-default: var(--pkt-color-brand-neutrals-white);
469
- --pkt-color-text-body-light: var(--pkt-color-brand-neutrals-white);
470
- --pkt-color-text-placeholder: var(--pkt-color-grays-gray-300);
471
- --pkt-color-text-action-disabled: var(--pkt-color-grays-gray-200);
472
- --pkt-color-text-action-active: var(--pkt-color-brand-blue-500);
473
- --pkt-color-text-action-hover: var(--pkt-color-brand-blue-500);
474
- --pkt-color-text-action-normal: var(--pkt-color-brand-neutrals-white);
475
- --pkt-color-input-background-normal: var(--pkt-color-brand-neutrals-white);
476
- --pkt-color-input-border-active: var(--pkt-color-brand-blue-500);
477
- --pkt-color-input-border-disabled: var(--pkt-color-grays-gray-200);
478
- --pkt-color-input-border-error: var(--pkt-color-brand-red-1000);
479
- --pkt-color-input-border-hover: var(--pkt-color-brand-blue-500);
480
- --pkt-color-input-border-normal: var(--pkt-color-brand-neutrals-white);
481
- --pkt-color-input-text-active: var(--pkt-color-brand-warm-blue-1000);
482
- --pkt-color-input-text-disabled: var(--pkt-color-grays-gray-200);
483
- --pkt-color-input-text-hover: var(--pkt-color-brand-warm-blue-1000);
484
- --pkt-color-input-text-normal: var(--pkt-color-brand-dark-blue-1000);
485
- --pkt-color-input-text-error: var(--pkt-color-brand-red-1000);
486
- --pkt-color-input-text-open: var(--pkt-color-brand-dark-blue-1000);
487
- --pkt-color-input-check-background: var(--pkt-color-brand-dark-blue-1000);
488
- --pkt-color-input-check-border: var(--pkt-color-brand-neutrals-white);
489
- --pkt-color-input-check-text-active: var(--pkt-color-brand-blue-500);
490
- --pkt-color-input-check-text-hover: var(--pkt-color-brand-blue-500);
479
+ --pkt-color-background-card: #2c2c2c;
480
+ --pkt-color-background-default: #2c2c2c;
481
+ --pkt-color-background-subtle: #333333;
482
+ --pkt-color-border-default: #ffffff;
483
+ --pkt-color-border-subtle: #4d4d4d;
484
+ --pkt-color-border-states-active: #b3f5ff;
485
+ --pkt-color-border-states-disabled: #808080;
486
+ --pkt-color-border-states-hover: #b3f5ff;
487
+ --pkt-color-text-body-default: #ffffff;
488
+ --pkt-color-text-placeholder: #b3b3b3;
489
+ --pkt-color-text-action-disabled: #cccccc;
490
+ --pkt-color-text-action-active: #b3f5ff;
491
+ --pkt-color-text-action-hover: #b3f5ff;
492
+ --pkt-color-text-action-normal: #ffffff;
493
+ --pkt-color-input-background-open: #b3f5ff;
494
+ --pkt-color-input-border-active: #b3f5ff;
495
+ --pkt-color-input-border-disabled: #cccccc;
496
+ --pkt-color-input-border-hover: #b3f5ff;
497
+ --pkt-color-input-border-normal: #ffffff;
498
+ --pkt-color-input-text-open: #2a2859;
499
+ --pkt-color-tag-text-hover: #2a2859;
500
+ --pkt-color-tag-text-active: #2a2859;
501
+ --pkt-color-tag-text-focus: #2a2859;
502
+ --pkt-color-input-check-background: #2a2859;
503
+ --pkt-color-input-check-border: #ffffff;
504
+ --pkt-color-input-check-text-active: #b3f5ff;
505
+ --pkt-color-input-check-text-hover: #b3f5ff;
506
+ --pkt-color-button-primary-background-normal: #b3f5ff;
507
+ --pkt-color-button-primary-background-hover: #6fe9ff;
508
+ --pkt-color-button-primary-background-focus: #6fe9ff;
509
+ --pkt-color-button-primary-background-active: #6fe9ff;
510
+ --pkt-color-button-primary-background-disabled: #4d4d4d;
511
+ --pkt-color-button-primary-border-focus: #6fe9ff;
512
+ --pkt-color-button-primary-text-normal: #2a2859;
513
+ --pkt-color-button-primary-text-hover: #2a2859;
514
+ --pkt-color-button-primary-text-focus: #2a2859;
515
+ --pkt-color-button-primary-text-active: #2a2859;
516
+ --pkt-color-button-primary-text-disabled: #b3b3b3;
517
+ --pkt-color-button-secondary-background-hover: #b3f5ff;
518
+ --pkt-color-button-secondary-background-active: #b3f5ff;
519
+ --pkt-color-button-secondary-background-disabled: #4d4d4d;
520
+ --pkt-color-button-secondary-border-normal: #ffffff;
521
+ --pkt-color-button-secondary-border-focus: #b3f5ff;
522
+ --pkt-color-button-secondary-text-normal: #ffffff;
523
+ --pkt-color-button-secondary-text-hover: #2a2859;
524
+ --pkt-color-button-secondary-text-focus: #b3f5ff;
525
+ --pkt-color-button-secondary-text-active: #2a2859;
526
+ --pkt-color-button-secondary-text-disabled: #b3b3b3;
527
+ --pkt-color-button-tertiary-background-hover: #6a698b;
528
+ --pkt-color-button-tertiary-background-focus: #6a698b;
529
+ --pkt-color-button-tertiary-background-active: #6a698b;
530
+ --pkt-color-button-tertiary-background-disabled: #4d4d4d;
531
+ --pkt-color-button-tertiary-border-focus: transparent;
532
+ --pkt-color-button-tertiary-text-normal: #ffffff;
533
+ --pkt-color-button-tertiary-text-hover: #ffffff;
534
+ --pkt-color-button-tertiary-text-focus: #ffffff;
535
+ --pkt-color-button-tertiary-text-disabled: #b3b3b3;
491
536
  }
492
537
  /*
493
538
  * Defaults for elementer
@@ -3019,7 +3064,7 @@
3019
3064
  .pkt-link--external::after {
3020
3065
  display: inline-block;
3021
3066
  content: " ";
3022
- --svg: url(https://punkt-cdn.oslo.kommune.no/18.0/icons/new-window-small.svg);
3067
+ --svg: url(https://punkt-cdn.oslo.kommune.no/18.3/icons/new-window-small.svg);
3023
3068
  background-image: var(--svg);
3024
3069
  background-repeat: no-repeat;
3025
3070
  background-size: 18px 18px;
@@ -5475,24 +5520,96 @@
5475
5520
  .pkt-color-border-brand-neutrals-white {
5476
5521
  border-color: #ffffff !important;
5477
5522
  }
5478
- .pkt-color-bg-brand-neutrals-100 {
5523
+ .pkt-color-bg-brand-neutrals-50 {
5479
5524
  background-color: #f9f9f9 !important;
5480
5525
  }
5481
- .pkt-color-txt-brand-neutrals-100 {
5526
+ .pkt-color-txt-brand-neutrals-50 {
5482
5527
  color: #f9f9f9 !important;
5483
5528
  }
5484
- .pkt-color-border-brand-neutrals-100 {
5529
+ .pkt-color-border-brand-neutrals-50 {
5485
5530
  border-color: #f9f9f9 !important;
5486
5531
  }
5487
- .pkt-color-bg-brand-neutrals-200 {
5532
+ .pkt-color-bg-brand-neutrals-100 {
5488
5533
  background-color: #f2f2f2 !important;
5489
5534
  }
5490
- .pkt-color-txt-brand-neutrals-200 {
5535
+ .pkt-color-txt-brand-neutrals-100 {
5491
5536
  color: #f2f2f2 !important;
5492
5537
  }
5493
- .pkt-color-border-brand-neutrals-200 {
5538
+ .pkt-color-border-brand-neutrals-100 {
5494
5539
  border-color: #f2f2f2 !important;
5495
5540
  }
5541
+ .pkt-color-bg-brand-neutrals-200 {
5542
+ background-color: #e6e6e6 !important;
5543
+ }
5544
+ .pkt-color-txt-brand-neutrals-200 {
5545
+ color: #e6e6e6 !important;
5546
+ }
5547
+ .pkt-color-border-brand-neutrals-200 {
5548
+ border-color: #e6e6e6 !important;
5549
+ }
5550
+ .pkt-color-bg-brand-neutrals-300 {
5551
+ background-color: #cccccc !important;
5552
+ }
5553
+ .pkt-color-txt-brand-neutrals-300 {
5554
+ color: #cccccc !important;
5555
+ }
5556
+ .pkt-color-border-brand-neutrals-300 {
5557
+ border-color: #cccccc !important;
5558
+ }
5559
+ .pkt-color-bg-brand-neutrals-400 {
5560
+ background-color: #b3b3b3 !important;
5561
+ }
5562
+ .pkt-color-txt-brand-neutrals-400 {
5563
+ color: #b3b3b3 !important;
5564
+ }
5565
+ .pkt-color-border-brand-neutrals-400 {
5566
+ border-color: #b3b3b3 !important;
5567
+ }
5568
+ .pkt-color-bg-brand-neutrals-500 {
5569
+ background-color: #9a9a9a !important;
5570
+ }
5571
+ .pkt-color-txt-brand-neutrals-500 {
5572
+ color: #9a9a9a !important;
5573
+ }
5574
+ .pkt-color-border-brand-neutrals-500 {
5575
+ border-color: #9a9a9a !important;
5576
+ }
5577
+ .pkt-color-bg-brand-neutrals-600 {
5578
+ background-color: #808080 !important;
5579
+ }
5580
+ .pkt-color-txt-brand-neutrals-600 {
5581
+ color: #808080 !important;
5582
+ }
5583
+ .pkt-color-border-brand-neutrals-600 {
5584
+ border-color: #808080 !important;
5585
+ }
5586
+ .pkt-color-bg-brand-neutrals-700 {
5587
+ background-color: #666666 !important;
5588
+ }
5589
+ .pkt-color-txt-brand-neutrals-700 {
5590
+ color: #666666 !important;
5591
+ }
5592
+ .pkt-color-border-brand-neutrals-700 {
5593
+ border-color: #666666 !important;
5594
+ }
5595
+ .pkt-color-bg-brand-neutrals-800 {
5596
+ background-color: #4d4d4d !important;
5597
+ }
5598
+ .pkt-color-txt-brand-neutrals-800 {
5599
+ color: #4d4d4d !important;
5600
+ }
5601
+ .pkt-color-border-brand-neutrals-800 {
5602
+ border-color: #4d4d4d !important;
5603
+ }
5604
+ .pkt-color-bg-brand-neutrals-900 {
5605
+ background-color: #333333 !important;
5606
+ }
5607
+ .pkt-color-txt-brand-neutrals-900 {
5608
+ color: #333333 !important;
5609
+ }
5610
+ .pkt-color-border-brand-neutrals-900 {
5611
+ border-color: #333333 !important;
5612
+ }
5496
5613
  .pkt-color-bg-brand-neutrals-1000 {
5497
5614
  background-color: #2c2c2c !important;
5498
5615
  }
@@ -5826,6 +5943,15 @@
5826
5943
  .pkt-color-border-surface-default-light-green {
5827
5944
  border-color: var(--pkt-color-surface-default-light-green) !important;
5828
5945
  }
5946
+ .pkt-color-bg-surface-default-pale-blue {
5947
+ background-color: var(--pkt-color-surface-default-pale-blue) !important;
5948
+ }
5949
+ .pkt-color-txt-surface-default-pale-blue {
5950
+ color: var(--pkt-color-surface-default-pale-blue) !important;
5951
+ }
5952
+ .pkt-color-border-surface-default-pale-blue {
5953
+ border-color: var(--pkt-color-surface-default-pale-blue) !important;
5954
+ }
5829
5955
  .pkt-color-bg-surface-default-red {
5830
5956
  background-color: var(--pkt-color-surface-default-red) !important;
5831
5957
  }
@@ -5943,6 +6069,15 @@
5943
6069
  .pkt-color-border-surface-subtle-light-red {
5944
6070
  border-color: var(--pkt-color-surface-subtle-light-red) !important;
5945
6071
  }
6072
+ .pkt-color-bg-surface-subtle-gray {
6073
+ background-color: var(--pkt-color-surface-subtle-gray) !important;
6074
+ }
6075
+ .pkt-color-txt-surface-subtle-gray {
6076
+ color: var(--pkt-color-surface-subtle-gray) !important;
6077
+ }
6078
+ .pkt-color-border-surface-subtle-gray {
6079
+ border-color: var(--pkt-color-surface-subtle-gray) !important;
6080
+ }
5946
6081
  .pkt-color-bg-surface-subtle-pale-blue {
5947
6082
  background-color: var(--pkt-color-surface-subtle-pale-blue) !important;
5948
6083
  }
@@ -6051,6 +6186,15 @@
6051
6186
  .pkt-color-border-input-background-disabled {
6052
6187
  border-color: var(--pkt-color-input-background-disabled) !important;
6053
6188
  }
6189
+ .pkt-color-bg-input-background-open {
6190
+ background-color: var(--pkt-color-input-background-open) !important;
6191
+ }
6192
+ .pkt-color-txt-input-background-open {
6193
+ color: var(--pkt-color-input-background-open) !important;
6194
+ }
6195
+ .pkt-color-border-input-background-open {
6196
+ border-color: var(--pkt-color-input-background-open) !important;
6197
+ }
6054
6198
  .pkt-color-bg-input-border-active {
6055
6199
  background-color: var(--pkt-color-input-border-active) !important;
6056
6200
  }
@@ -6150,6 +6294,42 @@
6150
6294
  .pkt-color-border-input-text-open {
6151
6295
  border-color: var(--pkt-color-input-text-open) !important;
6152
6296
  }
6297
+ .pkt-color-bg-tag-text-normal {
6298
+ background-color: var(--pkt-color-tag-text-normal) !important;
6299
+ }
6300
+ .pkt-color-txt-tag-text-normal {
6301
+ color: var(--pkt-color-tag-text-normal) !important;
6302
+ }
6303
+ .pkt-color-border-tag-text-normal {
6304
+ border-color: var(--pkt-color-tag-text-normal) !important;
6305
+ }
6306
+ .pkt-color-bg-tag-text-hover {
6307
+ background-color: var(--pkt-color-tag-text-hover) !important;
6308
+ }
6309
+ .pkt-color-txt-tag-text-hover {
6310
+ color: var(--pkt-color-tag-text-hover) !important;
6311
+ }
6312
+ .pkt-color-border-tag-text-hover {
6313
+ border-color: var(--pkt-color-tag-text-hover) !important;
6314
+ }
6315
+ .pkt-color-bg-tag-text-active {
6316
+ background-color: var(--pkt-color-tag-text-active) !important;
6317
+ }
6318
+ .pkt-color-txt-tag-text-active {
6319
+ color: var(--pkt-color-tag-text-active) !important;
6320
+ }
6321
+ .pkt-color-border-tag-text-active {
6322
+ border-color: var(--pkt-color-tag-text-active) !important;
6323
+ }
6324
+ .pkt-color-bg-tag-text-focus {
6325
+ background-color: var(--pkt-color-tag-text-focus) !important;
6326
+ }
6327
+ .pkt-color-txt-tag-text-focus {
6328
+ color: var(--pkt-color-tag-text-focus) !important;
6329
+ }
6330
+ .pkt-color-border-tag-text-focus {
6331
+ border-color: var(--pkt-color-tag-text-focus) !important;
6332
+ }
6153
6333
  .pkt-color-bg-input-check-background {
6154
6334
  background-color: var(--pkt-color-input-check-background) !important;
6155
6335
  }
@@ -6186,6 +6366,312 @@
6186
6366
  .pkt-color-border-input-check-text-hover {
6187
6367
  border-color: var(--pkt-color-input-check-text-hover) !important;
6188
6368
  }
6369
+ .pkt-color-bg-button-primary-background-normal {
6370
+ background-color: var(--pkt-color-button-primary-background-normal) !important;
6371
+ }
6372
+ .pkt-color-txt-button-primary-background-normal {
6373
+ color: var(--pkt-color-button-primary-background-normal) !important;
6374
+ }
6375
+ .pkt-color-border-button-primary-background-normal {
6376
+ border-color: var(--pkt-color-button-primary-background-normal) !important;
6377
+ }
6378
+ .pkt-color-bg-button-primary-background-hover {
6379
+ background-color: var(--pkt-color-button-primary-background-hover) !important;
6380
+ }
6381
+ .pkt-color-txt-button-primary-background-hover {
6382
+ color: var(--pkt-color-button-primary-background-hover) !important;
6383
+ }
6384
+ .pkt-color-border-button-primary-background-hover {
6385
+ border-color: var(--pkt-color-button-primary-background-hover) !important;
6386
+ }
6387
+ .pkt-color-bg-button-primary-background-focus {
6388
+ background-color: var(--pkt-color-button-primary-background-focus) !important;
6389
+ }
6390
+ .pkt-color-txt-button-primary-background-focus {
6391
+ color: var(--pkt-color-button-primary-background-focus) !important;
6392
+ }
6393
+ .pkt-color-border-button-primary-background-focus {
6394
+ border-color: var(--pkt-color-button-primary-background-focus) !important;
6395
+ }
6396
+ .pkt-color-bg-button-primary-background-active {
6397
+ background-color: var(--pkt-color-button-primary-background-active) !important;
6398
+ }
6399
+ .pkt-color-txt-button-primary-background-active {
6400
+ color: var(--pkt-color-button-primary-background-active) !important;
6401
+ }
6402
+ .pkt-color-border-button-primary-background-active {
6403
+ border-color: var(--pkt-color-button-primary-background-active) !important;
6404
+ }
6405
+ .pkt-color-bg-button-primary-background-disabled {
6406
+ background-color: var(--pkt-color-button-primary-background-disabled) !important;
6407
+ }
6408
+ .pkt-color-txt-button-primary-background-disabled {
6409
+ color: var(--pkt-color-button-primary-background-disabled) !important;
6410
+ }
6411
+ .pkt-color-border-button-primary-background-disabled {
6412
+ border-color: var(--pkt-color-button-primary-background-disabled) !important;
6413
+ }
6414
+ .pkt-color-bg-button-primary-background-success {
6415
+ background-color: var(--pkt-color-button-primary-background-success) !important;
6416
+ }
6417
+ .pkt-color-txt-button-primary-background-success {
6418
+ color: var(--pkt-color-button-primary-background-success) !important;
6419
+ }
6420
+ .pkt-color-border-button-primary-background-success {
6421
+ border-color: var(--pkt-color-button-primary-background-success) !important;
6422
+ }
6423
+ .pkt-color-bg-button-primary-background-danger {
6424
+ background-color: var(--pkt-color-button-primary-background-danger) !important;
6425
+ }
6426
+ .pkt-color-txt-button-primary-background-danger {
6427
+ color: var(--pkt-color-button-primary-background-danger) !important;
6428
+ }
6429
+ .pkt-color-border-button-primary-background-danger {
6430
+ border-color: var(--pkt-color-button-primary-background-danger) !important;
6431
+ }
6432
+ .pkt-color-bg-button-primary-border-focus {
6433
+ background-color: var(--pkt-color-button-primary-border-focus) !important;
6434
+ }
6435
+ .pkt-color-txt-button-primary-border-focus {
6436
+ color: var(--pkt-color-button-primary-border-focus) !important;
6437
+ }
6438
+ .pkt-color-border-button-primary-border-focus {
6439
+ border-color: var(--pkt-color-button-primary-border-focus) !important;
6440
+ }
6441
+ .pkt-color-bg-button-primary-text-normal {
6442
+ background-color: var(--pkt-color-button-primary-text-normal) !important;
6443
+ }
6444
+ .pkt-color-txt-button-primary-text-normal {
6445
+ color: var(--pkt-color-button-primary-text-normal) !important;
6446
+ }
6447
+ .pkt-color-border-button-primary-text-normal {
6448
+ border-color: var(--pkt-color-button-primary-text-normal) !important;
6449
+ }
6450
+ .pkt-color-bg-button-primary-text-hover {
6451
+ background-color: var(--pkt-color-button-primary-text-hover) !important;
6452
+ }
6453
+ .pkt-color-txt-button-primary-text-hover {
6454
+ color: var(--pkt-color-button-primary-text-hover) !important;
6455
+ }
6456
+ .pkt-color-border-button-primary-text-hover {
6457
+ border-color: var(--pkt-color-button-primary-text-hover) !important;
6458
+ }
6459
+ .pkt-color-bg-button-primary-text-focus {
6460
+ background-color: var(--pkt-color-button-primary-text-focus) !important;
6461
+ }
6462
+ .pkt-color-txt-button-primary-text-focus {
6463
+ color: var(--pkt-color-button-primary-text-focus) !important;
6464
+ }
6465
+ .pkt-color-border-button-primary-text-focus {
6466
+ border-color: var(--pkt-color-button-primary-text-focus) !important;
6467
+ }
6468
+ .pkt-color-bg-button-primary-text-active {
6469
+ background-color: var(--pkt-color-button-primary-text-active) !important;
6470
+ }
6471
+ .pkt-color-txt-button-primary-text-active {
6472
+ color: var(--pkt-color-button-primary-text-active) !important;
6473
+ }
6474
+ .pkt-color-border-button-primary-text-active {
6475
+ border-color: var(--pkt-color-button-primary-text-active) !important;
6476
+ }
6477
+ .pkt-color-bg-button-primary-text-disabled {
6478
+ background-color: var(--pkt-color-button-primary-text-disabled) !important;
6479
+ }
6480
+ .pkt-color-txt-button-primary-text-disabled {
6481
+ color: var(--pkt-color-button-primary-text-disabled) !important;
6482
+ }
6483
+ .pkt-color-border-button-primary-text-disabled {
6484
+ border-color: var(--pkt-color-button-primary-text-disabled) !important;
6485
+ }
6486
+ .pkt-color-bg-button-secondary-background-hover {
6487
+ background-color: var(--pkt-color-button-secondary-background-hover) !important;
6488
+ }
6489
+ .pkt-color-txt-button-secondary-background-hover {
6490
+ color: var(--pkt-color-button-secondary-background-hover) !important;
6491
+ }
6492
+ .pkt-color-border-button-secondary-background-hover {
6493
+ border-color: var(--pkt-color-button-secondary-background-hover) !important;
6494
+ }
6495
+ .pkt-color-bg-button-secondary-background-active {
6496
+ background-color: var(--pkt-color-button-secondary-background-active) !important;
6497
+ }
6498
+ .pkt-color-txt-button-secondary-background-active {
6499
+ color: var(--pkt-color-button-secondary-background-active) !important;
6500
+ }
6501
+ .pkt-color-border-button-secondary-background-active {
6502
+ border-color: var(--pkt-color-button-secondary-background-active) !important;
6503
+ }
6504
+ .pkt-color-bg-button-secondary-background-disabled {
6505
+ background-color: var(--pkt-color-button-secondary-background-disabled) !important;
6506
+ }
6507
+ .pkt-color-txt-button-secondary-background-disabled {
6508
+ color: var(--pkt-color-button-secondary-background-disabled) !important;
6509
+ }
6510
+ .pkt-color-border-button-secondary-background-disabled {
6511
+ border-color: var(--pkt-color-button-secondary-background-disabled) !important;
6512
+ }
6513
+ .pkt-color-bg-button-secondary-border-normal {
6514
+ background-color: var(--pkt-color-button-secondary-border-normal) !important;
6515
+ }
6516
+ .pkt-color-txt-button-secondary-border-normal {
6517
+ color: var(--pkt-color-button-secondary-border-normal) !important;
6518
+ }
6519
+ .pkt-color-border-button-secondary-border-normal {
6520
+ border-color: var(--pkt-color-button-secondary-border-normal) !important;
6521
+ }
6522
+ .pkt-color-bg-button-secondary-border-yellow {
6523
+ background-color: var(--pkt-color-button-secondary-border-yellow) !important;
6524
+ }
6525
+ .pkt-color-txt-button-secondary-border-yellow {
6526
+ color: var(--pkt-color-button-secondary-border-yellow) !important;
6527
+ }
6528
+ .pkt-color-border-button-secondary-border-yellow {
6529
+ border-color: var(--pkt-color-button-secondary-border-yellow) !important;
6530
+ }
6531
+ .pkt-color-bg-button-secondary-border-focus {
6532
+ background-color: var(--pkt-color-button-secondary-border-focus) !important;
6533
+ }
6534
+ .pkt-color-txt-button-secondary-border-focus {
6535
+ color: var(--pkt-color-button-secondary-border-focus) !important;
6536
+ }
6537
+ .pkt-color-border-button-secondary-border-focus {
6538
+ border-color: var(--pkt-color-button-secondary-border-focus) !important;
6539
+ }
6540
+ .pkt-color-bg-button-secondary-text-normal {
6541
+ background-color: var(--pkt-color-button-secondary-text-normal) !important;
6542
+ }
6543
+ .pkt-color-txt-button-secondary-text-normal {
6544
+ color: var(--pkt-color-button-secondary-text-normal) !important;
6545
+ }
6546
+ .pkt-color-border-button-secondary-text-normal {
6547
+ border-color: var(--pkt-color-button-secondary-text-normal) !important;
6548
+ }
6549
+ .pkt-color-bg-button-secondary-text-hover {
6550
+ background-color: var(--pkt-color-button-secondary-text-hover) !important;
6551
+ }
6552
+ .pkt-color-txt-button-secondary-text-hover {
6553
+ color: var(--pkt-color-button-secondary-text-hover) !important;
6554
+ }
6555
+ .pkt-color-border-button-secondary-text-hover {
6556
+ border-color: var(--pkt-color-button-secondary-text-hover) !important;
6557
+ }
6558
+ .pkt-color-bg-button-secondary-text-focus {
6559
+ background-color: var(--pkt-color-button-secondary-text-focus) !important;
6560
+ }
6561
+ .pkt-color-txt-button-secondary-text-focus {
6562
+ color: var(--pkt-color-button-secondary-text-focus) !important;
6563
+ }
6564
+ .pkt-color-border-button-secondary-text-focus {
6565
+ border-color: var(--pkt-color-button-secondary-text-focus) !important;
6566
+ }
6567
+ .pkt-color-bg-button-secondary-text-active {
6568
+ background-color: var(--pkt-color-button-secondary-text-active) !important;
6569
+ }
6570
+ .pkt-color-txt-button-secondary-text-active {
6571
+ color: var(--pkt-color-button-secondary-text-active) !important;
6572
+ }
6573
+ .pkt-color-border-button-secondary-text-active {
6574
+ border-color: var(--pkt-color-button-secondary-text-active) !important;
6575
+ }
6576
+ .pkt-color-bg-button-secondary-text-disabled {
6577
+ background-color: var(--pkt-color-button-secondary-text-disabled) !important;
6578
+ }
6579
+ .pkt-color-txt-button-secondary-text-disabled {
6580
+ color: var(--pkt-color-button-secondary-text-disabled) !important;
6581
+ }
6582
+ .pkt-color-border-button-secondary-text-disabled {
6583
+ border-color: var(--pkt-color-button-secondary-text-disabled) !important;
6584
+ }
6585
+ .pkt-color-bg-button-tertiary-background-hover {
6586
+ background-color: var(--pkt-color-button-tertiary-background-hover) !important;
6587
+ }
6588
+ .pkt-color-txt-button-tertiary-background-hover {
6589
+ color: var(--pkt-color-button-tertiary-background-hover) !important;
6590
+ }
6591
+ .pkt-color-border-button-tertiary-background-hover {
6592
+ border-color: var(--pkt-color-button-tertiary-background-hover) !important;
6593
+ }
6594
+ .pkt-color-bg-button-tertiary-background-focus {
6595
+ background-color: var(--pkt-color-button-tertiary-background-focus) !important;
6596
+ }
6597
+ .pkt-color-txt-button-tertiary-background-focus {
6598
+ color: var(--pkt-color-button-tertiary-background-focus) !important;
6599
+ }
6600
+ .pkt-color-border-button-tertiary-background-focus {
6601
+ border-color: var(--pkt-color-button-tertiary-background-focus) !important;
6602
+ }
6603
+ .pkt-color-bg-button-tertiary-background-active {
6604
+ background-color: var(--pkt-color-button-tertiary-background-active) !important;
6605
+ }
6606
+ .pkt-color-txt-button-tertiary-background-active {
6607
+ color: var(--pkt-color-button-tertiary-background-active) !important;
6608
+ }
6609
+ .pkt-color-border-button-tertiary-background-active {
6610
+ border-color: var(--pkt-color-button-tertiary-background-active) !important;
6611
+ }
6612
+ .pkt-color-bg-button-tertiary-background-disabled {
6613
+ background-color: var(--pkt-color-button-tertiary-background-disabled) !important;
6614
+ }
6615
+ .pkt-color-txt-button-tertiary-background-disabled {
6616
+ color: var(--pkt-color-button-tertiary-background-disabled) !important;
6617
+ }
6618
+ .pkt-color-border-button-tertiary-background-disabled {
6619
+ border-color: var(--pkt-color-button-tertiary-background-disabled) !important;
6620
+ }
6621
+ .pkt-color-bg-button-tertiary-border-focus {
6622
+ background-color: var(--pkt-color-button-tertiary-border-focus) !important;
6623
+ }
6624
+ .pkt-color-txt-button-tertiary-border-focus {
6625
+ color: var(--pkt-color-button-tertiary-border-focus) !important;
6626
+ }
6627
+ .pkt-color-border-button-tertiary-border-focus {
6628
+ border-color: var(--pkt-color-button-tertiary-border-focus) !important;
6629
+ }
6630
+ .pkt-color-bg-button-tertiary-text-normal {
6631
+ background-color: var(--pkt-color-button-tertiary-text-normal) !important;
6632
+ }
6633
+ .pkt-color-txt-button-tertiary-text-normal {
6634
+ color: var(--pkt-color-button-tertiary-text-normal) !important;
6635
+ }
6636
+ .pkt-color-border-button-tertiary-text-normal {
6637
+ border-color: var(--pkt-color-button-tertiary-text-normal) !important;
6638
+ }
6639
+ .pkt-color-bg-button-tertiary-text-hover {
6640
+ background-color: var(--pkt-color-button-tertiary-text-hover) !important;
6641
+ }
6642
+ .pkt-color-txt-button-tertiary-text-hover {
6643
+ color: var(--pkt-color-button-tertiary-text-hover) !important;
6644
+ }
6645
+ .pkt-color-border-button-tertiary-text-hover {
6646
+ border-color: var(--pkt-color-button-tertiary-text-hover) !important;
6647
+ }
6648
+ .pkt-color-bg-button-tertiary-text-focus {
6649
+ background-color: var(--pkt-color-button-tertiary-text-focus) !important;
6650
+ }
6651
+ .pkt-color-txt-button-tertiary-text-focus {
6652
+ color: var(--pkt-color-button-tertiary-text-focus) !important;
6653
+ }
6654
+ .pkt-color-border-button-tertiary-text-focus {
6655
+ border-color: var(--pkt-color-button-tertiary-text-focus) !important;
6656
+ }
6657
+ .pkt-color-bg-button-tertiary-text-active {
6658
+ background-color: var(--pkt-color-button-tertiary-text-active) !important;
6659
+ }
6660
+ .pkt-color-txt-button-tertiary-text-active {
6661
+ color: var(--pkt-color-button-tertiary-text-active) !important;
6662
+ }
6663
+ .pkt-color-border-button-tertiary-text-active {
6664
+ border-color: var(--pkt-color-button-tertiary-text-active) !important;
6665
+ }
6666
+ .pkt-color-bg-button-tertiary-text-disabled {
6667
+ background-color: var(--pkt-color-button-tertiary-text-disabled) !important;
6668
+ }
6669
+ .pkt-color-txt-button-tertiary-text-disabled {
6670
+ color: var(--pkt-color-button-tertiary-text-disabled) !important;
6671
+ }
6672
+ .pkt-color-border-button-tertiary-text-disabled {
6673
+ border-color: var(--pkt-color-button-tertiary-text-disabled) !important;
6674
+ }
6189
6675
  .bg-color-blue {
6190
6676
  background-color: #6fe9ff !important;
6191
6677
  }
@@ -15798,40 +16284,40 @@
15798
16284
  --spinner-color: var(--pkt-color-brand-dark-blue-1000);
15799
16285
  }
15800
16286
  .pkt-btn {
15801
- --pkt-color-button-background-normal: var(--pkt-color-brand-dark-blue-1000);
16287
+ --pkt-color-button-background-normal: var(--pkt-color-button-primary-background-normal);
15802
16288
  --pkt-color-button-border-normal: var(--pkt-color-brand-dark-blue-1000);
15803
- --pkt-color-button-text-normal: var(--pkt-color-brand-neutrals-white);
15804
- --pkt-color-button-background-focus: var(--pkt-color-brand-warm-blue-1000);
15805
- --pkt-color-button-border-focus: var(--pkt-color-brand-warm-blue-1000);
15806
- --pkt-color-button-text-focus: var(--pkt-color-brand-neutrals-white);
16289
+ --pkt-color-button-text-normal: var(--pkt-color-button-primary-text-normal);
16290
+ --pkt-color-button-background-focus: var(--pkt-color-button-primary-background-focus);
16291
+ --pkt-color-button-border-focus: var(--pkt-color-button-primary-border-focus);
16292
+ --pkt-color-button-text-focus: var(--pkt-color-button-primary-text-focus);
15807
16293
  --pkt-color-border-states-focus: var(--pkt-color-brand-purple-1000);
15808
- --pkt-color-button-background-hover: var(--pkt-color-brand-warm-blue-1000);
16294
+ --pkt-color-button-background-hover: var(--pkt-color-button-primary-background-hover);
15809
16295
  --pkt-color-button-border-hover: var(--pkt-color-brand-warm-blue-1000);
15810
- --pkt-color-button-text-hover: var(--pkt-color-brand-neutrals-white);
15811
- --pkt-color-button-background-active: var(--pkt-color-brand-warm-blue-1000);
16296
+ --pkt-color-button-text-hover: var(--pkt-color-button-primary-text-hover);
16297
+ --pkt-color-button-background-active: var(--pkt-color-button-primary-background-active);
15812
16298
  --pkt-color-button-border-active: var(--pkt-color-brand-warm-blue-1000);
15813
- --pkt-color-button-text-active: var(--pkt-color-brand-neutrals-white);
15814
- --pkt-color-button-background-disabled: var(--pkt-color-brand-neutrals-100);
15815
- --pkt-color-button-border-disabled: var(--pkt-color-brand-neutrals-100);
15816
- --pkt-color-button-text-disabled: var(--pkt-color-grays-gray-500);
16299
+ --pkt-color-button-text-active: var(--pkt-color-button-primary-text-active);
16300
+ --pkt-color-button-background-disabled: var(--pkt-color-button-primary-background-disabled);
16301
+ --pkt-color-button-border-disabled: var(--pkt-color-button-primary-background-disabled);
16302
+ --pkt-color-button-text-disabled: var(--pkt-color-button-primary-text-disabled);
15817
16303
  }
15818
16304
  [data-mode=dark] .pkt-btn {
15819
- --pkt-color-button-background-normal: var(--pkt-color-brand-blue-500);
16305
+ --pkt-color-button-background-normal: var(--pkt-color-button-primary-background-normal);
15820
16306
  --pkt-color-button-border-normal: var(--pkt-color-brand-blue-500);
15821
- --pkt-color-button-text-normal: var(--pkt-color-brand-dark-blue-1000);
15822
- --pkt-color-button-background-focus: var(--pkt-color-brand-blue-1000);
15823
- --pkt-color-button-border-focus: var(--pkt-color-brand-blue-1000);
15824
- --pkt-color-button-text-focus: var(--pkt-color-brand-dark-blue-1000);
16307
+ --pkt-color-button-text-normal: var(--pkt-color-button-primary-text-normal);
16308
+ --pkt-color-button-background-focus: var(--pkt-color-button-primary-background-focus);
16309
+ --pkt-color-button-border-focus: var(--pkt-color-button-primary-border-focus);
16310
+ --pkt-color-button-text-focus: var(--pkt-color-button-primary-text-focus);
15825
16311
  --pkt-color-border-states-focus: var(--pkt-color-brand-purple-1000);
15826
- --pkt-color-button-background-hover: var(--pkt-color-brand-blue-1000);
16312
+ --pkt-color-button-background-hover: var(--pkt-color-button-primary-background-hover);
15827
16313
  --pkt-color-button-border-hover: var(--pkt-color-brand-blue-1000);
15828
- --pkt-color-button-text-hover: var(--pkt-color-brand-dark-blue-1000);
15829
- --pkt-color-button-background-active: var(--pkt-color-brand-blue-1000);
16314
+ --pkt-color-button-text-hover: var(--pkt-color-button-primary-text-hover);
16315
+ --pkt-color-button-background-active: var(--pkt-color-button-primary-background-active);
15830
16316
  --pkt-color-button-border-active: var(--pkt-color-brand-blue-1000);
15831
- --pkt-color-button-text-active: var(--pkt-color-brand-dark-blue-1000);
15832
- --pkt-color-button-background-disabled: var(--pkt-color-brand-neutrals-100);
15833
- --pkt-color-button-border-disabled: var(--pkt-color-brand-neutrals-100);
15834
- --pkt-color-button-text-disabled: var(--pkt-color-grays-gray-600);
16317
+ --pkt-color-button-text-active: var(--pkt-color-button-primary-text-active);
16318
+ --pkt-color-button-background-disabled: var(--pkt-color-button-primary-background-disabled);
16319
+ --pkt-color-button-border-disabled: var(--pkt-color-button-primary-background-disabled);
16320
+ --pkt-color-button-text-disabled: var(--pkt-color-button-primary-text-disabled);
15835
16321
  }
15836
16322
  [data-mode=dark] .pkt-btn--green-dark {
15837
16323
  --pkt-color-button-background-normal: var(--pkt-color-brand-dark-green-1000);
@@ -15895,21 +16381,35 @@
15895
16381
  }
15896
16382
  .pkt-btn--secondary {
15897
16383
  --pkt-color-button-background-normal: var(--pkt-color-brand-neutrals-transparent);
15898
- --pkt-color-button-text-normal: var(--pkt-color-brand-dark-blue-1000);
15899
- --pkt-color-button-text-disabled: var(--pkt-color-grays-gray-600);
16384
+ --pkt-color-button-border-normal: var(--pkt-color-button-secondary-border-normal);
16385
+ --pkt-color-button-text-normal: var(--pkt-color-button-secondary-text-normal);
16386
+ --pkt-color-button-background-focus: var(--pkt-color-brand-warm-blue-1000);
16387
+ --pkt-color-button-border-focus: var(--pkt-color-button-secondary-border-focus);
16388
+ --pkt-color-button-text-focus: var(--pkt-color-brand-neutrals-white);
16389
+ --pkt-color-button-background-hover: var(--pkt-color-button-secondary-background-hover);
16390
+ --pkt-color-button-text-hover: var(--pkt-color-button-secondary-text-hover);
16391
+ --pkt-color-button-background-active: var(--pkt-color-button-secondary-background-active);
16392
+ --pkt-color-button-text-active: var(--pkt-color-button-secondary-text-active);
16393
+ --pkt-color-button-background-disabled: var(--pkt-color-button-secondary-background-disabled);
16394
+ --pkt-color-button-border-disabled: var(--pkt-color-button-secondary-background-disabled);
16395
+ --pkt-color-button-text-disabled: var(--pkt-color-button-secondary-text-disabled);
15900
16396
  }
15901
16397
  [data-mode=dark] .pkt-btn--secondary {
15902
16398
  --pkt-color-button-background-normal: var(--pkt-color-brand-neutrals-transparent);
15903
- --pkt-color-button-border-normal: var(--pkt-color-brand-neutrals-white);
15904
- --pkt-color-button-text-normal: var(--pkt-color-brand-neutrals-white);
16399
+ --pkt-color-button-border-normal: var(--pkt-color-button-secondary-border-normal);
16400
+ --pkt-color-button-text-normal: var(--pkt-color-button-secondary-text-normal);
15905
16401
  --pkt-color-button-background-focus: var(--pkt-color-brand-blue-500);
15906
- --pkt-color-button-border-focus: var(--pkt-color-brand-blue-500);
15907
- --pkt-color-button-background-hover: var(--pkt-color-brand-blue-500);
16402
+ --pkt-color-button-border-focus: var(--pkt-color-button-secondary-border-focus);
16403
+ --pkt-color-button-text-focus: var(--pkt-color-brand-dark-blue-1000);
16404
+ --pkt-color-button-background-hover: var(--pkt-color-button-secondary-background-hover);
15908
16405
  --pkt-color-button-border-hover: var(--pkt-color-brand-blue-500);
15909
- --pkt-color-button-background-active: var(--pkt-color-brand-blue-500);
16406
+ --pkt-color-button-text-hover: var(--pkt-color-button-secondary-text-hover);
16407
+ --pkt-color-button-background-active: var(--pkt-color-button-secondary-background-active);
15910
16408
  --pkt-color-button-border-active: var(--pkt-color-brand-blue-500);
15911
- --pkt-color-button-background-disabled: var(--pkt-color-grays-gray-100);
15912
- --pkt-color-button-border-disabled: var(--pkt-color-grays-gray-100);
16409
+ --pkt-color-button-text-active: var(--pkt-color-button-secondary-text-active);
16410
+ --pkt-color-button-background-disabled: var(--pkt-color-button-secondary-background-disabled);
16411
+ --pkt-color-button-border-disabled: var(--pkt-color-button-secondary-background-disabled);
16412
+ --pkt-color-button-text-disabled: var(--pkt-color-button-secondary-text-disabled);
15913
16413
  }
15914
16414
  [data-mode=dark] .pkt-btn--secondary--green-dark {
15915
16415
  --pkt-color-button-background-normal: var(--pkt-color-brand-dark-green-1000);
@@ -15974,27 +16474,35 @@
15974
16474
  .pkt-btn--tertiary {
15975
16475
  --pkt-color-button-background-normal: var(--pkt-color-brand-neutrals-transparent);
15976
16476
  --pkt-color-button-border-normal: var(--pkt-color-brand-neutrals-transparent);
15977
- --pkt-color-button-text-normal: var(--pkt-color-brand-dark-blue-1000);
15978
- --pkt-color-button-background-focus: var(--pkt-color-brand-neutrals-200);
15979
- --pkt-color-button-text-focus: var(--pkt-color-brand-warm-blue-1000);
15980
- --pkt-color-button-background-hover: var(--pkt-color-brand-neutrals-200);
15981
- --pkt-color-button-border-hover: var(--pkt-color-brand-neutrals-200);
15982
- --pkt-color-button-text-hover: var(--pkt-color-brand-warm-blue-1000);
15983
- --pkt-color-button-text-disabled: var(--pkt-color-grays-gray-600);
16477
+ --pkt-color-button-text-normal: var(--pkt-color-button-tertiary-text-normal);
16478
+ --pkt-color-button-background-focus: var(--pkt-color-button-tertiary-background-focus);
16479
+ --pkt-color-button-border-focus: var(--pkt-color-button-tertiary-border-focus);
16480
+ --pkt-color-button-text-focus: var(--pkt-color-button-tertiary-text-focus);
16481
+ --pkt-color-button-background-hover: var(--pkt-color-button-tertiary-background-hover);
16482
+ --pkt-color-button-border-hover: var(--pkt-color-brand-neutrals-100);
16483
+ --pkt-color-button-text-hover: var(--pkt-color-button-tertiary-text-hover);
16484
+ --pkt-color-button-background-active: var(--pkt-color-button-tertiary-background-active);
16485
+ --pkt-color-button-text-active: var(--pkt-color-button-tertiary-text-active);
16486
+ --pkt-color-button-background-disabled: var(--pkt-color-button-tertiary-background-disabled);
16487
+ --pkt-color-button-border-disabled: var(--pkt-color-button-tertiary-background-disabled);
16488
+ --pkt-color-button-text-disabled: var(--pkt-color-button-tertiary-text-disabled);
15984
16489
  }
15985
16490
  [data-mode=dark] .pkt-btn--tertiary {
15986
16491
  --pkt-color-button-background-normal: var(--pkt-color-brand-neutrals-transparent);
15987
16492
  --pkt-color-button-border-normal: var(--pkt-color-brand-neutrals-transparent);
15988
- --pkt-color-button-text-normal: var(--pkt-color-brand-neutrals-white);
15989
- --pkt-color-button-background-focus: var(--pkt-color-brand-dark-blue-700);
15990
- --pkt-color-button-border-focus: var(--pkt-color-brand-dark-blue-700);
15991
- --pkt-color-button-text-focus: var(--pkt-color-brand-neutrals-white);
15992
- --pkt-color-button-background-hover: var(--pkt-color-brand-dark-blue-700);
16493
+ --pkt-color-button-text-normal: var(--pkt-color-button-tertiary-text-normal);
16494
+ --pkt-color-button-background-focus: var(--pkt-color-button-tertiary-background-focus);
16495
+ --pkt-color-button-border-focus: var(--pkt-color-button-tertiary-border-focus);
16496
+ --pkt-color-button-text-focus: var(--pkt-color-button-tertiary-text-focus);
16497
+ --pkt-color-button-background-hover: var(--pkt-color-button-tertiary-background-hover);
15993
16498
  --pkt-color-button-border-hover: var(--pkt-color-brand-dark-blue-700);
15994
- --pkt-color-button-text-hover: var(--pkt-color-brand-neutrals-white);
15995
- --pkt-color-button-background-active: var(--pkt-color-brand-dark-blue-700);
16499
+ --pkt-color-button-text-hover: var(--pkt-color-button-tertiary-text-hover);
16500
+ --pkt-color-button-background-active: var(--pkt-color-button-tertiary-background-active);
15996
16501
  --pkt-color-button-border-active: var(--pkt-color-brand-dark-blue-700);
15997
- --pkt-color-button-text-active: var(--pkt-color-brand-neutrals-white);
16502
+ --pkt-color-button-text-active: var(--pkt-color-button-tertiary-text-active);
16503
+ --pkt-color-button-background-disabled: var(--pkt-color-button-tertiary-background-disabled);
16504
+ --pkt-color-button-border-disabled: var(--pkt-color-button-tertiary-background-disabled);
16505
+ --pkt-color-button-text-disabled: var(--pkt-color-button-tertiary-text-disabled);
15998
16506
  }
15999
16507
  [data-mode=dark] .pkt-btn--tertiary--green-dark {
16000
16508
  --pkt-color-button-background-normal: var(--pkt-color-brand-dark-green-1000);
@@ -16378,7 +16886,7 @@
16378
16886
  */
16379
16887
  }
16380
16888
  .pkt-form-input::placeholder, .pkt-form-textarea::placeholder {
16381
- color: var(--pkt-color-grays-gray-300);
16889
+ color: var(--pkt-color-brand-neutrals-400);
16382
16890
  opacity: 1;
16383
16891
  /* 1 */
16384
16892
  }
@@ -16392,9 +16900,9 @@
16392
16900
  display: inherit;
16393
16901
  }
16394
16902
  .pkt-form-input:disabled, .pkt-form-input[readonly], .pkt-form-textarea:disabled, .pkt-form-textarea[readonly] {
16395
- background-color: var(--pkt-color-brand-neutrals-200);
16396
- border-color: var(--pkt-color-grays-gray-300);
16397
- color: var(--pkt-color-grays-gray-300);
16903
+ background-color: var(--pkt-color-brand-neutrals-100);
16904
+ border-color: var(--pkt-color-brand-neutrals-400);
16905
+ color: var(--pkt-color-brand-neutrals-400);
16398
16906
  cursor: inherit;
16399
16907
  }
16400
16908
  /*
@@ -16496,7 +17004,7 @@
16496
17004
  box-shadow: 0px 0px 0px 0.125rem var(--pkt-color-input-border-active), 0px 0px 0px 0.375rem var(--pkt-color-border-states-focus);
16497
17005
  }
16498
17006
  .pkt-input-check__input-checkbox:indeterminate[type=checkbox]:not([role=switch]) {
16499
- --svg: url(https://punkt-cdn.oslo.kommune.no/18.0/icons/minus-sign.svg);
17007
+ --svg: url(https://punkt-cdn.oslo.kommune.no/18.3/icons/minus-sign.svg);
16500
17008
  position: relative;
16501
17009
  background-color: var(--pkt-color-input-border-normal);
16502
17010
  }
@@ -16522,7 +17030,7 @@
16522
17030
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(105%) contrast(101%);
16523
17031
  }
16524
17032
  .pkt-input-check__input-checkbox:checked[type=checkbox] {
16525
- --svg: url(https://punkt-cdn.oslo.kommune.no/18.0/icons/check-medium.svg);
17033
+ --svg: url(https://punkt-cdn.oslo.kommune.no/18.3/icons/check-medium.svg);
16526
17034
  position: relative;
16527
17035
  background-color: var(--pkt-color-input-border-normal);
16528
17036
  }
@@ -16580,7 +17088,7 @@
16580
17088
  cursor: not-allowed;
16581
17089
  }
16582
17090
  .pkt-input-check__input-checkbox:disabled[type=checkbox][role=switch]:checked:after {
16583
- --svg: url(https://punkt-cdn.oslo.kommune.no/18.0/icons/check-medium.svg);
17091
+ --svg: url(https://punkt-cdn.oslo.kommune.no/18.3/icons/check-medium.svg);
16584
17092
  --pkt-color-input-check-border: var(--pkt-color-input-border-normal);
16585
17093
  filter: grayscale(100%) brightness(400%);
16586
17094
  }
@@ -16699,7 +17207,7 @@
16699
17207
  .pkt-hr {
16700
17208
  border: 0;
16701
17209
  width: 100%;
16702
- border-top: 1px solid var(--pkt-color-grays-gray-200);
17210
+ border-top: 1px solid var(--pkt-color-brand-neutrals-300);
16703
17211
  }
16704
17212
  /*
16705
17213
  * Image elements
@@ -16832,7 +17340,7 @@
16832
17340
  padding-right: 3rem;
16833
17341
  }
16834
17342
  .pkt-input:is(select):not([multiple]) {
16835
- --svg: url(https://punkt-cdn.oslo.kommune.no/18.0/icons/chevron-thin-down.svg);
17343
+ --svg: url(https://punkt-cdn.oslo.kommune.no/18.3/icons/chevron-thin-down.svg);
16836
17344
  background-image: var(--svg);
16837
17345
  background-repeat: no-repeat;
16838
17346
  background-position: right 0.7rem top 50%;
@@ -17165,7 +17673,7 @@
17165
17673
  padding-inline-end: 0;
17166
17674
  }
17167
17675
  .pkt-list-horizontal.bordered li + li {
17168
- border-left: 1px solid var(--pkt-color-grays-gray-600);
17676
+ border-left: 1px solid var(--pkt-color-brand-neutrals-700);
17169
17677
  }
17170
17678
  .pkt-dl,
17171
17679
  .pkt-dl--narrow {
@@ -17231,10 +17739,10 @@
17231
17739
  margin: 1rem 0;
17232
17740
  }
17233
17741
  .pkt-section--dark {
17234
- color: white;
17742
+ color: var(--pkt-color-text-body-light, #ffffff);
17235
17743
  margin: 1rem 0;
17236
17744
  padding: 0.75rem;
17237
- background-color: #2a2859;
17745
+ background-color: var(--pkt-color-surface-strong-dark-blue, #2a2859);
17238
17746
  }
17239
17747
  @media screen and (min-width: 36rem) {
17240
17748
  .pkt-section--dark {
@@ -17246,26 +17754,11 @@
17246
17754
  padding: 1.5rem;
17247
17755
  }
17248
17756
  }
17249
- .pkt-section--dark {
17250
- /*
17251
- @if luminance($backgroundColor) < 0.4 {
17252
- color: white;
17253
-
17254
- a:not([class^='ok-btn']) {
17255
- color: white;
17256
- text-decoration: underline;
17257
- }
17258
- }
17259
- */
17260
- }
17261
- .pkt-section--dark a.pkt-btn--ter {
17262
- color: white;
17263
- }
17264
17757
  .pkt-section--danger {
17265
- color: black;
17758
+ color: var(--pkt-color-text-body-dark, #2a2859);
17266
17759
  margin: 1rem 0;
17267
17760
  padding: 0.75rem;
17268
- background-color: #ff8274;
17761
+ background-color: var(--pkt-color-surface-strong-red, #ff8274);
17269
17762
  }
17270
17763
  @media screen and (min-width: 36rem) {
17271
17764
  .pkt-section--danger {
@@ -17277,26 +17770,11 @@
17277
17770
  padding: 1.5rem;
17278
17771
  }
17279
17772
  }
17280
- .pkt-section--danger {
17281
- /*
17282
- @if luminance($backgroundColor) < 0.4 {
17283
- color: white;
17284
-
17285
- a:not([class^='ok-btn']) {
17286
- color: white;
17287
- text-decoration: underline;
17288
- }
17289
- }
17290
- */
17291
- }
17292
- .pkt-section--danger a.pkt-btn--ter {
17293
- color: black;
17294
- }
17295
17773
  .pkt-section--gray,
17296
17774
  .pkt-section--grey {
17297
17775
  margin: 1rem 0;
17298
17776
  padding: 0.75rem;
17299
- background-color: #f2f2f2;
17777
+ background-color: var(--pkt-color-surface-default-gray, #f2f2f2);
17300
17778
  }
17301
17779
  @media screen and (min-width: 36rem) {
17302
17780
  .pkt-section--gray,
@@ -17310,24 +17788,11 @@
17310
17788
  padding: 1.5rem;
17311
17789
  }
17312
17790
  }
17313
- .pkt-section--gray,
17314
- .pkt-section--grey {
17315
- /*
17316
- @if luminance($backgroundColor) < 0.4 {
17317
- color: white;
17318
-
17319
- a:not([class^='ok-btn']) {
17320
- color: white;
17321
- text-decoration: underline;
17322
- }
17323
- }
17324
- */
17325
- }
17326
17791
  .pkt-section--success {
17327
- color: black;
17792
+ color: var(--pkt-color-text-body-dark, #2a2859);
17328
17793
  margin: 1rem 0;
17329
17794
  padding: 0.75rem;
17330
- background-color: #43f8b6;
17795
+ background-color: var(--pkt-color-surface-strong-green, #43f8b6);
17331
17796
  }
17332
17797
  @media screen and (min-width: 36rem) {
17333
17798
  .pkt-section--success {
@@ -17339,25 +17804,10 @@
17339
17804
  padding: 1.5rem;
17340
17805
  }
17341
17806
  }
17342
- .pkt-section--success {
17343
- /*
17344
- @if luminance($backgroundColor) < 0.4 {
17345
- color: white;
17346
-
17347
- a:not([class^='ok-btn']) {
17348
- color: white;
17349
- text-decoration: underline;
17350
- }
17351
- }
17352
- */
17353
- }
17354
- .pkt-section--success a.pkt-btn--ter {
17355
- color: black;
17356
- }
17357
17807
  .pkt-section--warning {
17358
17808
  margin: 1rem 0;
17359
17809
  padding: 0.75rem;
17360
- background-color: #f9c66b;
17810
+ background-color: var(--pkt-color-surface-strong-yellow, #f9c66b);
17361
17811
  }
17362
17812
  @media screen and (min-width: 36rem) {
17363
17813
  .pkt-section--warning {
@@ -17369,22 +17819,10 @@
17369
17819
  padding: 1.5rem;
17370
17820
  }
17371
17821
  }
17372
- .pkt-section--warning {
17373
- /*
17374
- @if luminance($backgroundColor) < 0.4 {
17375
- color: white;
17376
-
17377
- a:not([class^='ok-btn']) {
17378
- color: white;
17379
- text-decoration: underline;
17380
- }
17381
- }
17382
- */
17383
- }
17384
17822
  .pkt-section--info {
17385
17823
  margin: 1rem 0;
17386
17824
  padding: 0.75rem;
17387
- background-color: #b3f5ff;
17825
+ background-color: var(--pkt-color-surface-default-light-blue, #b3f5ff);
17388
17826
  }
17389
17827
  @media screen and (min-width: 36rem) {
17390
17828
  .pkt-section--info {
@@ -17396,26 +17834,11 @@
17396
17834
  padding: 1.5rem;
17397
17835
  }
17398
17836
  }
17399
- .pkt-section--info {
17400
- /*
17401
- @if luminance($backgroundColor) < 0.4 {
17402
- color: white;
17403
-
17404
- a:not([class^='ok-btn']) {
17405
- color: white;
17406
- text-decoration: underline;
17407
- }
17408
- }
17409
- */
17410
- }
17411
- .pkt-section--info a.pkt-btn--ter {
17412
- color: black;
17413
- }
17414
17837
  .pkt-section--frame {
17415
- border: 1px solid #2c2c2c;
17838
+ border: 1px solid var(--pkt-color-brand-neutrals-1000, #2c2c2c);
17416
17839
  margin: 1rem 0;
17417
17840
  padding: 0.75rem;
17418
- background-color: white;
17841
+ background-color: var(--pkt-color-surface-subtle-white, #ffffff);
17419
17842
  }
17420
17843
  @media screen and (min-width: 36rem) {
17421
17844
  .pkt-section--frame {
@@ -17427,18 +17850,6 @@
17427
17850
  padding: 1.5rem;
17428
17851
  }
17429
17852
  }
17430
- .pkt-section--frame {
17431
- /*
17432
- @if luminance($backgroundColor) < 0.4 {
17433
- color: white;
17434
-
17435
- a:not([class^='ok-btn']) {
17436
- color: white;
17437
- text-decoration: underline;
17438
- }
17439
- }
17440
- */
17441
- }
17442
17853
  [class*=ok-section-] > [class^=ok-title-] {
17443
17854
  margin-block-start: 0;
17444
17855
  }
@@ -18018,43 +18429,6 @@
18018
18429
  line-height: 1.375rem;
18019
18430
  line-height: unset;
18020
18431
  }
18021
- /*
18022
- * Badge element
18023
- * DEPRECATED - use tag instead
18024
- */
18025
- .pkt-badge {
18026
- display: inline-flex;
18027
- height: 1.5em;
18028
- margin-inline-start: 0.4em;
18029
- padding: 0.25em 0.4em;
18030
- color: black;
18031
- font-weight: 500;
18032
- font-size: 0.75em;
18033
- line-height: 1em;
18034
- border-radius: 1px;
18035
- }
18036
- .pkt-badge.pkt-badge--small,
18037
- .pkt-h1 > .pkt-badge,
18038
- .pkt-h2 > .pkt-badge,
18039
- .pkt-h3 > .pkt-badge {
18040
- font-size: 0.5em;
18041
- transform: translateY(-0.25em);
18042
- }
18043
- .pkt-btn:not(.pkt-btn--ter) > .pkt-badge {
18044
- color: inherit;
18045
- background: transparent;
18046
- border: 1px solid;
18047
- border-radius: 4px;
18048
- }
18049
- .pkt-btn--pri:not(.pkt-btn--neg) > .pkt-badge,
18050
- .pkt-btn--neg.pkt-btn--ter > .pkt-badge,
18051
- .pkt-btn--neg.pkt-btn--ghost > .pkt-badge {
18052
- border-color: white;
18053
- }
18054
- .pkt-btn--small > .pkt-badge {
18055
- padding-block-start: 0.28em;
18056
- transform: translateY(-0.1em);
18057
- }
18058
18432
  .pkt-bodytext--large {
18059
18433
  letter-spacing: -0.2px;
18060
18434
  font-weight: 300;
@@ -18346,7 +18720,7 @@
18346
18720
  pkt-calendar .pkt-cal-other,
18347
18721
  pkt-calendar .pkt-cal-days [data-disabled] {
18348
18722
  cursor: not-allowed;
18349
- color: var(--pkt-color-grays-gray-200);
18723
+ color: var(--pkt-color-brand-neutrals-300);
18350
18724
  background: transparent;
18351
18725
  border: none;
18352
18726
  }
@@ -18403,7 +18777,7 @@
18403
18777
  }
18404
18778
  .pkt-calendar .pkt-cal-excluded,
18405
18779
  pkt-calendar .pkt-cal-excluded {
18406
- background-color: var(--pkt-color-brand-neutrals-100);
18780
+ background-color: var(--pkt-color-brand-neutrals-50);
18407
18781
  }
18408
18782
  .pkt-calendar .pkt-cal-excluded :before,
18409
18783
  .pkt-calendar .pkt-cal-excluded :after,
@@ -18583,7 +18957,7 @@
18583
18957
  background-color: transparent;
18584
18958
  }
18585
18959
  .pkt-card.pkt-card--padding-none.pkt-card--horizontal.pkt-card--gray {
18586
- background-color: var(--pkt-color-brand-neutrals-100);
18960
+ background-color: var(--pkt-color-brand-neutrals-50);
18587
18961
  }
18588
18962
  .pkt-card.pkt-card--padding-none.pkt-card--horizontal.pkt-card--blue {
18589
18963
  background-color: var(--pkt-color-brand-blue-200);
@@ -18599,13 +18973,13 @@
18599
18973
  outline-offset: -2px;
18600
18974
  }
18601
18975
  .pkt-card--outlined {
18602
- outline: 2px solid var(--pkt-color-grays-gray-100);
18976
+ outline: 2px solid var(--pkt-color-brand-neutrals-200);
18603
18977
  }
18604
18978
  .pkt-card--outlined-beige {
18605
18979
  outline: 2px solid var(--pkt-color-brand-light-beige-1000);
18606
18980
  }
18607
18981
  .pkt-card--gray {
18608
- background-color: var(--pkt-color-brand-neutrals-100);
18982
+ background-color: var(--pkt-color-brand-neutrals-50);
18609
18983
  }
18610
18984
  .pkt-card--blue {
18611
18985
  background-color: var(--pkt-color-brand-blue-200);
@@ -19112,7 +19486,7 @@
19112
19486
  width: 100%;
19113
19487
  }
19114
19488
  .pkt-fileupload--error .pkt-fileupload__drop-zone {
19115
- border-color: var(--pkt-color-brand-red-700);
19489
+ border-color: var(--pkt-color-input-border-error, #ff8274);
19116
19490
  }
19117
19491
  .pkt-fileupload--error .pkt-alert--error.pkt-fileupload__error-alert {
19118
19492
  margin-block-end: 1rem;
@@ -19301,7 +19675,7 @@
19301
19675
  grid-row: 1;
19302
19676
  align-self: center;
19303
19677
  justify-self: center;
19304
- color: var(--pkt-color-text-subtle);
19678
+ color: var(--pkt-color-text-placeholder, #666666);
19305
19679
  }
19306
19680
  .pkt-fileupload__queue-display__item__title {
19307
19681
  letter-spacing: -0.2px;
@@ -19468,7 +19842,7 @@
19468
19842
  line-height: 1.25rem;
19469
19843
  display: block;
19470
19844
  margin-block-start: 0.25rem;
19471
- color: var(--pkt-color-text-subtle);
19845
+ color: var(--pkt-color-text-placeholder, #666666);
19472
19846
  }
19473
19847
  .pkt-fileupload__queue-display__item__comment__actions {
19474
19848
  display: flex;
@@ -19483,7 +19857,7 @@
19483
19857
  border: none;
19484
19858
  padding: 0;
19485
19859
  cursor: pointer;
19486
- color: var(--pkt-color-text-subtle);
19860
+ color: var(--pkt-color-text-placeholder, #666666);
19487
19861
  display: flex;
19488
19862
  align-items: center;
19489
19863
  justify-content: center;
@@ -19604,7 +19978,7 @@
19604
19978
  line-height: 1.25rem;
19605
19979
  grid-column: 2;
19606
19980
  grid-row: 2;
19607
- color: var(--pkt-color-text-default);
19981
+ color: var(--pkt-color-text-body-default, #2a2859);
19608
19982
  }
19609
19983
  .pkt-fileupload__queue-display__item--in-progress .pkt-progressbar__bar-wrapper, .pkt-fileupload__queue-display__item--error .pkt-progressbar__bar-wrapper {
19610
19984
  height: 0.25rem;
@@ -19767,7 +20141,7 @@
19767
20141
  .pkt-modal.pkt-fileupload__image-preview-modal .pkt-modal__content,
19768
20142
  pkt-modal.pkt-fileupload__image-preview-modal .pkt-modal .pkt-modal__content {
19769
20143
  padding: 0 1rem 1rem;
19770
- background: var(--pkt-color-surface-default);
20144
+ background: var(--pkt-color-background-default, #ffffff);
19771
20145
  background-image: none;
19772
20146
  box-shadow: none;
19773
20147
  min-height: 0;
@@ -19800,7 +20174,7 @@
19800
20174
  }
19801
20175
  .pkt-fileupload__image-preview {
19802
20176
  position: relative;
19803
- background-color: var(--pkt-color-surface-default);
20177
+ background-color: var(--pkt-color-background-default, #ffffff);
19804
20178
  display: grid;
19805
20179
  grid-template-columns: auto 1fr auto;
19806
20180
  grid-template-rows: minmax(0, 1fr) auto;
@@ -19919,7 +20293,7 @@
19919
20293
  }
19920
20294
  .pkt-footer__band--global {
19921
20295
  --pkt-footer-bg: var(--pkt-color-surface-strong-dark-blue, #2a2859);
19922
- --pkt-footer-fg: var(--pkt-color-text-body-light, #fff);
20296
+ --pkt-footer-fg: var(--pkt-color-text-body-light, #ffffff);
19923
20297
  --pkt-footer-link-hover: var(--pkt-color-brand-blue-1000, #6fe9ff);
19924
20298
  }
19925
20299
  .pkt-footer__band a {
@@ -20391,7 +20765,7 @@
20391
20765
  margin: 0;
20392
20766
  }
20393
20767
  .pkt-user-menu__label {
20394
- color: var(--pkt-color-grays-gray-600);
20768
+ color: var(--pkt-color-brand-neutrals-700);
20395
20769
  letter-spacing: -0.2px;
20396
20770
  font-weight: 500;
20397
20771
  font-size: 0.875rem;
@@ -22308,7 +22682,7 @@
22308
22682
  line-height: 1.375rem;
22309
22683
  }
22310
22684
  [data-mode=dark] .pkt-inputwrapper {
22311
- color: white;
22685
+ color: var(--pkt-color-text-body-light, #ffffff);
22312
22686
  }
22313
22687
  /*
22314
22688
  * Linkcard component
@@ -22527,7 +22901,7 @@
22527
22901
  }
22528
22902
  .pkt-listbox .pkt-listbox__option[data-disabled] {
22529
22903
  cursor: not-allowed;
22530
- color: var(--pkt-color-grays-gray-500);
22904
+ color: var(--pkt-color-brand-neutrals-600);
22531
22905
  }
22532
22906
  .pkt-listbox .pkt-listbox__option {
22533
22907
  margin-block-end: 0.125rem;
@@ -22543,7 +22917,7 @@
22543
22917
  }
22544
22918
  .pkt-listbox .pkt-listbox__empty {
22545
22919
  padding: 0.75rem;
22546
- color: var(--pkt-color-text-body-muted);
22920
+ color: var(--pkt-color-text-placeholder, #666666);
22547
22921
  list-style: none;
22548
22922
  }
22549
22923
  .pkt-listbox .pkt-listbox__banners {
@@ -22693,7 +23067,7 @@
22693
23067
  width: 5em;
22694
23068
  height: 6.5em;
22695
23069
  left: 0em;
22696
- background: repeating-linear-gradient(#ff8274, #ff8274 1em, #f9c66b 1em, #f9c66b 2em);
23070
+ background: repeating-linear-gradient(var(--pkt-color-surface-strong-red, #ff8274), var(--pkt-color-surface-strong-red, #ff8274) 1em, var(--pkt-color-surface-strong-yellow, #f9c66b) 1em, var(--pkt-color-surface-strong-yellow, #f9c66b) 2em);
22697
23071
  border-radius: 50% 50% 50% 50%/55% 55% 45% 45%;
22698
23072
  transform: translate3d(0, 0, 0);
22699
23073
  animation-name: eggroll;
@@ -22704,15 +23078,15 @@
22704
23078
  opacity: 0;
22705
23079
  }
22706
23080
  .pkt-loader .egg.two {
22707
- background: repeating-linear-gradient(#6fe9ff, #6fe9ff 1em, #ff8274 1em, #ff8274 2em);
23081
+ background: repeating-linear-gradient(var(--pkt-color-surface-strong-blue, #6fe9ff), var(--pkt-color-surface-strong-blue, #6fe9ff) 1em, var(--pkt-color-surface-strong-red, #ff8274) 1em, var(--pkt-color-surface-strong-red, #ff8274) 2em);
22708
23082
  animation-delay: 0.5s;
22709
23083
  }
22710
23084
  .pkt-loader .egg.three {
22711
- background: repeating-linear-gradient(#43f8b6, #43f8b6 1em, #f9c66b 1em, #f9c66b 2em);
23085
+ background: repeating-linear-gradient(var(--pkt-color-surface-strong-green, #43f8b6), var(--pkt-color-surface-strong-green, #43f8b6) 1em, var(--pkt-color-surface-strong-yellow, #f9c66b) 1em, var(--pkt-color-surface-strong-yellow, #f9c66b) 2em);
22712
23086
  animation-delay: 1s;
22713
23087
  }
22714
23088
  .pkt-loader .egg.four {
22715
- background: repeating-linear-gradient(#43f8b6, #43f8b6 1em, #ff8274 1em, #ff8274 2em);
23089
+ background: repeating-linear-gradient(var(--pkt-color-surface-strong-green, #43f8b6), var(--pkt-color-surface-strong-green, #43f8b6) 1em, var(--pkt-color-surface-strong-red, #ff8274) 1em, var(--pkt-color-surface-strong-red, #ff8274) 2em);
22716
23090
  animation-delay: 1.5s;
22717
23091
  }
22718
23092
  @keyframes eggroll {
@@ -22954,7 +23328,7 @@
22954
23328
  padding-block-start: 0;
22955
23329
  position: relative;
22956
23330
  color: var(--pkt-color-text-body-default);
22957
- background: linear-gradient(var(--pkt-color-white) 30%, transparent) top, linear-gradient(transparent, var(--pkt-color-border-subtle) 60%) bottom, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.3), transparent) top, radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.3), transparent) bottom;
23331
+ background: linear-gradient(var(--pkt-color-background-card, #ffffff) 30%, transparent) top, linear-gradient(transparent, var(--pkt-color-border-subtle) 60%) bottom, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.3), transparent) top, radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.3), transparent) bottom;
22958
23332
  background-attachment: local, local, scroll, scroll;
22959
23333
  background-repeat: no-repeat;
22960
23334
  background-size: 100% 40px, 100% 50px, 100% 16px, 100% 16px;
@@ -23154,7 +23528,7 @@
23154
23528
  text-align: center;
23155
23529
  }
23156
23530
  .pkt-progressbar__bar-wrapper {
23157
- background-color: var(--pkt-color-grays-gray-100);
23531
+ background-color: var(--pkt-color-brand-neutrals-200);
23158
23532
  height: 8px;
23159
23533
  overflow: hidden;
23160
23534
  }
@@ -23531,17 +23905,17 @@
23531
23905
  display: none;
23532
23906
  }
23533
23907
  .pkt-step--incomplete .pkt-step__line {
23534
- background-color: var(--pkt-color-grays-gray-200);
23908
+ background-color: var(--pkt-color-brand-neutrals-300);
23535
23909
  }
23536
23910
  .pkt-step--incomplete .pkt-step__title,
23537
23911
  .pkt-step--incomplete .pkt-step__content {
23538
- color: var(--pkt-color-grays-gray-600);
23912
+ color: var(--pkt-color-brand-neutrals-700);
23539
23913
  }
23540
23914
  .pkt-step--current + .pkt-step--incomplete .pkt-step__line--1 {
23541
23915
  background-color: var(--pkt-color-brand-dark-blue-1000);
23542
23916
  }
23543
23917
  .pkt-step--current + .pkt-step--incomplete .pkt-step__line--2 {
23544
- background-color: var(--pkt-color-grays-gray-200);
23918
+ background-color: var(--pkt-color-brand-neutrals-300);
23545
23919
  }
23546
23920
  .pkt-step:last-of-type .pkt-step__line--3,
23547
23921
  .pkt-step:last-of-type .pkt-step__line--2 {
@@ -23552,10 +23926,10 @@
23552
23926
  }
23553
23927
  .pkt-step--current .pkt-step__line--2,
23554
23928
  .pkt-step--current .pkt-step__line--3 {
23555
- background-color: var(--pkt-color-grays-gray-200);
23929
+ background-color: var(--pkt-color-brand-neutrals-300);
23556
23930
  }
23557
23931
  .pkt-step--current + .pkt-step--incomplete .pkt-step__line--1 {
23558
- background-color: var(--pkt-color-grays-gray-200);
23932
+ background-color: var(--pkt-color-brand-neutrals-300);
23559
23933
  }
23560
23934
  .pkt-step--hideContent:not(.pkt-step--current) .pkt-step__content {
23561
23935
  display: none;
@@ -23701,18 +24075,6 @@
23701
24075
  /*
23702
24076
  * Tag element
23703
24077
  */
23704
- .pkt-tag {
23705
- --pkt-color-tag-text-active: var(--pkt-color-brand-warm-blue-1000);
23706
- --pkt-color-tag-text-focus: var(--pkt-color-brand-warm-blue-1000);
23707
- --pkt-color-tag-text-hover: var(--pkt-color-brand-warm-blue-1000);
23708
- --pkt-color-tag-text-normal: var(--pkt-color-brand-dark-blue-1000);
23709
- }
23710
- [data-mode=dark] .pkt-tag {
23711
- --pkt-color-tag-text-active: var(--pkt-color-brand-dark-blue-1000);
23712
- --pkt-color-tag-text-focus: var(--pkt-color-brand-dark-blue-1000);
23713
- --pkt-color-tag-text-hover: var(--pkt-color-brand-dark-blue-1000);
23714
- --pkt-color-tag-text-normal: var(--pkt-color-brand-dark-blue-1000);
23715
- }
23716
24078
  pkt-tag {
23717
24079
  display: inline-block;
23718
24080
  vertical-align: middle;
@@ -23935,12 +24297,12 @@
23935
24297
  }
23936
24298
  .pkt-tag.pkt-tag--blue-dark {
23937
24299
  background: var(--pkt-color-brand-dark-blue-1000);
23938
- color: var(--pkt-color-brand-neutrals-200);
23939
- --fg-color: var(--pkt-color-brand-neutrals-200);
24300
+ color: var(--pkt-color-brand-neutrals-100);
24301
+ --fg-color: var(--pkt-color-brand-neutrals-100);
23940
24302
  }
23941
24303
  .pkt-tag.pkt-tag--blue-dark.pkt-btn:hover, .pkt-tag.pkt-tag--blue-dark:is(button):hover, .pkt-tag.pkt-tag--blue-dark.pkt-btn:focus, .pkt-tag.pkt-tag--blue-dark:is(button):focus, .pkt-tag.pkt-tag--blue-dark.pkt-tag--hover {
23942
24304
  background-color: var(--pkt-color-brand-warm-blue-1000) !important;
23943
- color: var(--pkt-color-brand-neutrals-200) !important;
24305
+ color: var(--pkt-color-brand-neutrals-100) !important;
23944
24306
  }
23945
24307
  .pkt-tag.pkt-tag--blue-dark.pkt-btn:hover,
23946
24308
  .pkt-tag.pkt-tag--blue-dark.pkt-btn:hover svg, .pkt-tag.pkt-tag--blue-dark:is(button):hover,
@@ -23948,7 +24310,7 @@
23948
24310
  .pkt-tag.pkt-tag--blue-dark.pkt-btn:focus svg, .pkt-tag.pkt-tag--blue-dark:is(button):focus,
23949
24311
  .pkt-tag.pkt-tag--blue-dark:is(button):focus svg, .pkt-tag.pkt-tag--blue-dark.pkt-tag--hover,
23950
24312
  .pkt-tag.pkt-tag--blue-dark.pkt-tag--hover svg {
23951
- --fg-color: var(--pkt-color-brand-neutrals-200) !important;
24313
+ --fg-color: var(--pkt-color-brand-neutrals-100) !important;
23952
24314
  }
23953
24315
  .pkt-tag.pkt-tag--small {
23954
24316
  padding: 0 0.25rem;