ropav 0.1.4 → 0.1.6

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 (138) hide show
  1. package/README.md +20 -0
  2. package/dist/accordion.js +11 -8
  3. package/dist/alert.css +18 -18
  4. package/dist/alert.js +27 -21
  5. package/dist/avatar.css +19 -19
  6. package/dist/avatar.js +16 -11
  7. package/dist/badge.css +16 -16
  8. package/dist/badge.js +14 -9
  9. package/dist/base.css +214 -69
  10. package/dist/button-group.js +1 -1
  11. package/dist/button-link.js +16 -14
  12. package/dist/button.css +37 -28
  13. package/dist/button.js +16 -14
  14. package/dist/{useButtonColor.js → button.scss_vue_type_style_index_0_src_true_lang.js} +8 -4
  15. package/dist/card.js +1 -1
  16. package/dist/checkbox.css +32 -32
  17. package/dist/checkbox.js +19 -11
  18. package/dist/chevron-right.js +12 -0
  19. package/dist/collapse.css +6 -6
  20. package/dist/collapse.js +4 -4
  21. package/dist/collectionNavigation.js +120 -0
  22. package/dist/color-input.css +19 -19
  23. package/dist/color-input.js +6 -5
  24. package/dist/color-picker.css +7 -7
  25. package/dist/color-picker.js +4 -5
  26. package/dist/color-swatch.js +1 -1
  27. package/dist/componentColors.js +135 -23
  28. package/dist/components/alert/types.d.ts +1 -0
  29. package/dist/components/alert/useAlertColor.d.ts +1 -1
  30. package/dist/components/avatar/types.d.ts +1 -0
  31. package/dist/components/avatar/useAvatarColor.d.ts +1 -1
  32. package/dist/components/badge/types.d.ts +1 -0
  33. package/dist/components/badge/useBadgeColor.d.ts +1 -1
  34. package/dist/components/button/types.d.ts +1 -0
  35. package/dist/components/button/useButtonColor.d.ts +1 -1
  36. package/dist/components/button-link/types.d.ts +1 -0
  37. package/dist/components/checkbox/types.d.ts +1 -0
  38. package/dist/components/checkbox/useCheckbox.d.ts +1 -1
  39. package/dist/components/color-input/color-input.d.ts +2 -2
  40. package/dist/components/color-input/useColorInput.d.ts +1 -1
  41. package/dist/components/dialog/dialog-core.d.ts +1 -1
  42. package/dist/components/dropdown-menu/dropdown-menu-content.d.ts +2 -2
  43. package/dist/components/dropdown-menu/dropdown-menu-primitive-core.d.ts +2 -1
  44. package/dist/components/dropdown-menu/dropdown-menu-sub-content.d.ts +2 -2
  45. package/dist/components/dropdown-menu/dropdown-menu-utils.d.ts +0 -2
  46. package/dist/components/dropdown-menu/dropdown-menu.d.ts +3 -3
  47. package/dist/components/dropdown-menu/index.d.ts +1 -0
  48. package/dist/components/dropdown-menu/types.d.ts +4 -0
  49. package/dist/components/dropdown-menu/useDropdownMenuDisclosure.d.ts +3 -4
  50. package/dist/components/dropdown-menu/useDropdownMenuInteractions.d.ts +2 -1
  51. package/dist/components/dropdown-menu/useDropdownMenuNavigation.d.ts +1 -0
  52. package/dist/components/icon-button/types.d.ts +1 -0
  53. package/dist/components/input/useInput.d.ts +1 -1
  54. package/dist/components/number-input/useNumberInput.d.ts +1 -1
  55. package/dist/components/pagination/index.d.ts +4 -0
  56. package/dist/components/pagination/index.js +2 -0
  57. package/dist/components/pagination/pagination.d.ts +49 -0
  58. package/dist/components/pagination/types.d.ts +54 -0
  59. package/dist/components/pagination/usePagination.d.ts +19 -0
  60. package/dist/components/progress/useProgress.d.ts +1 -1
  61. package/dist/components/radio/types.d.ts +3 -0
  62. package/dist/components/radio/useRadio.d.ts +2 -2
  63. package/dist/components/scroll-area/scrollAreaCore.d.ts +5 -0
  64. package/dist/components/scroll-area/types.d.ts +4 -0
  65. package/dist/components/scroll-area/useScrollArea.d.ts +1 -0
  66. package/dist/components/scroll-area/useScrollAreaMetrics.d.ts +3 -0
  67. package/dist/components/scroll-area/useScrollAreaPresentation.d.ts +3 -0
  68. package/dist/components/select/useSelect.d.ts +3 -2
  69. package/dist/components/select/useSelectNativeValue.d.ts +1 -7
  70. package/dist/components/slider/range-slider-tooltip.d.ts +2 -0
  71. package/dist/components/slider/sliderCore.d.ts +2 -1
  72. package/dist/components/slider/types.d.ts +1 -1
  73. package/dist/components/slider/useRangeSlider.d.ts +3 -1
  74. package/dist/components/slider/useSlider.d.ts +3 -1
  75. package/dist/components/switch/useSwitch.d.ts +1 -1
  76. package/dist/components/textarea/useTextarea.d.ts +1 -1
  77. package/dist/components/toast/types.d.ts +2 -0
  78. package/dist/components/toast/useToastColor.d.ts +1 -1
  79. package/dist/components/tooltip/types.d.ts +1 -0
  80. package/dist/components/tooltip/useTooltip.d.ts +1 -1
  81. package/dist/composables/index.d.ts +2 -0
  82. package/dist/composables/index.js +2 -0
  83. package/dist/composables/useControllableValue.d.ts +14 -0
  84. package/dist/dialog.js +8 -5
  85. package/dist/dropdown-menu.js +98 -59
  86. package/dist/field.js +1 -1
  87. package/dist/floating.js +19 -7
  88. package/dist/icon-button.css +12 -169
  89. package/dist/icon-button.js +11 -7
  90. package/dist/index.d.ts +6 -4
  91. package/dist/index.js +8 -5
  92. package/dist/input.css +24 -24
  93. package/dist/input.js +6 -5
  94. package/dist/modal.js +11 -7
  95. package/dist/number-input.css +18 -18
  96. package/dist/number-input.js +8 -7
  97. package/dist/overlay.js +1 -1
  98. package/dist/pagination.css +140 -0
  99. package/dist/pagination.js +442 -0
  100. package/dist/popover.js +9 -6
  101. package/dist/progress.css +29 -21
  102. package/dist/progress.js +17 -10
  103. package/dist/radio.js +17 -7
  104. package/dist/scroll-area.css +10 -1
  105. package/dist/scroll-area.js +82 -25
  106. package/dist/select.css +45 -45
  107. package/dist/select.js +111 -70
  108. package/dist/slider.css +191 -191
  109. package/dist/slider.js +58 -46
  110. package/dist/switch.css +17 -17
  111. package/dist/switch.js +7 -6
  112. package/dist/tabs.css +3 -3
  113. package/dist/tabs.js +25 -15
  114. package/dist/textarea.css +26 -26
  115. package/dist/textarea.js +5 -4
  116. package/dist/toast.css +26 -26
  117. package/dist/toast.js +35 -23
  118. package/dist/tooltip.css +12 -12
  119. package/dist/tooltip.js +24 -16
  120. package/dist/unplugin-icons.js +38 -25
  121. package/dist/useCollapse.js +12 -7
  122. package/dist/useControlState.js +1 -1
  123. package/dist/useControllableValue.js +33 -0
  124. package/dist/useFloatingPosition.js +4 -1140
  125. package/dist/useFormControl.js +5 -29
  126. package/dist/useOverlayZIndex.js +1 -1
  127. package/dist/useRequiredInject.js +1 -1
  128. package/dist/utils/componentColors.d.ts +14 -1
  129. package/docs/public-composables-api.md +52 -0
  130. package/docs/public-styles-api.md +1 -1
  131. package/docs/public-tokens.md +648 -508
  132. package/package.json +49 -36
  133. package/src/styles/_mixins.scss +4 -0
  134. package/src/styles/_tokens.scss +460 -320
  135. package/src/styles/_variables.scss +1 -1
  136. package/src/styles/styles-manifest.json +1122 -2
  137. package/dist/button-link.css +0 -163
  138. /package/dist/{composables → internal/composables}/useOverlayLayer.d.ts +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "contractVersion": 1,
3
+ "contractVersion": 2,
4
4
  "baseline": "5102a40",
5
5
  "tokens": [
6
6
  {
@@ -35,6 +35,14 @@
35
35
  "description": "Public Ropav color token for color.blue.0.",
36
36
  "themeApplicability": "all-themes"
37
37
  },
38
+ {
39
+ "name": "--rp-color-blue-0-active-contrast",
40
+ "sourcePath": "derived.color.blue.0.active.contrast",
41
+ "type": "color",
42
+ "category": "color",
43
+ "description": "Derived public Ropav color token --rp-color-blue-0-active-contrast.",
44
+ "themeApplicability": "light-and-dark"
45
+ },
38
46
  {
39
47
  "name": "--rp-color-blue-0-contrast",
40
48
  "sourcePath": "derived.color.blue.0.contrast",
@@ -51,6 +59,14 @@
51
59
  "description": "Public Ropav color token for color.blue.1.",
52
60
  "themeApplicability": "all-themes"
53
61
  },
62
+ {
63
+ "name": "--rp-color-blue-1-active-contrast",
64
+ "sourcePath": "derived.color.blue.1.active.contrast",
65
+ "type": "color",
66
+ "category": "color",
67
+ "description": "Derived public Ropav color token --rp-color-blue-1-active-contrast.",
68
+ "themeApplicability": "light-and-dark"
69
+ },
54
70
  {
55
71
  "name": "--rp-color-blue-1-contrast",
56
72
  "sourcePath": "derived.color.blue.1.contrast",
@@ -67,6 +83,14 @@
67
83
  "description": "Public Ropav color token for color.blue.2.",
68
84
  "themeApplicability": "all-themes"
69
85
  },
86
+ {
87
+ "name": "--rp-color-blue-2-active-contrast",
88
+ "sourcePath": "derived.color.blue.2.active.contrast",
89
+ "type": "color",
90
+ "category": "color",
91
+ "description": "Derived public Ropav color token --rp-color-blue-2-active-contrast.",
92
+ "themeApplicability": "light-and-dark"
93
+ },
70
94
  {
71
95
  "name": "--rp-color-blue-2-contrast",
72
96
  "sourcePath": "derived.color.blue.2.contrast",
@@ -83,6 +107,14 @@
83
107
  "description": "Public Ropav color token for color.blue.3.",
84
108
  "themeApplicability": "all-themes"
85
109
  },
110
+ {
111
+ "name": "--rp-color-blue-3-active-contrast",
112
+ "sourcePath": "derived.color.blue.3.active.contrast",
113
+ "type": "color",
114
+ "category": "color",
115
+ "description": "Derived public Ropav color token --rp-color-blue-3-active-contrast.",
116
+ "themeApplicability": "light-and-dark"
117
+ },
86
118
  {
87
119
  "name": "--rp-color-blue-3-contrast",
88
120
  "sourcePath": "derived.color.blue.3.contrast",
@@ -99,6 +131,14 @@
99
131
  "description": "Public Ropav color token for color.blue.4.",
100
132
  "themeApplicability": "all-themes"
101
133
  },
134
+ {
135
+ "name": "--rp-color-blue-4-active-contrast",
136
+ "sourcePath": "derived.color.blue.4.active.contrast",
137
+ "type": "color",
138
+ "category": "color",
139
+ "description": "Derived public Ropav color token --rp-color-blue-4-active-contrast.",
140
+ "themeApplicability": "light-and-dark"
141
+ },
102
142
  {
103
143
  "name": "--rp-color-blue-4-contrast",
104
144
  "sourcePath": "derived.color.blue.4.contrast",
@@ -115,6 +155,14 @@
115
155
  "description": "Public Ropav color token for color.blue.5.",
116
156
  "themeApplicability": "all-themes"
117
157
  },
158
+ {
159
+ "name": "--rp-color-blue-5-active-contrast",
160
+ "sourcePath": "derived.color.blue.5.active.contrast",
161
+ "type": "color",
162
+ "category": "color",
163
+ "description": "Derived public Ropav color token --rp-color-blue-5-active-contrast.",
164
+ "themeApplicability": "light-and-dark"
165
+ },
118
166
  {
119
167
  "name": "--rp-color-blue-5-contrast",
120
168
  "sourcePath": "derived.color.blue.5.contrast",
@@ -131,6 +179,14 @@
131
179
  "description": "Public Ropav color token for color.blue.6.",
132
180
  "themeApplicability": "all-themes"
133
181
  },
182
+ {
183
+ "name": "--rp-color-blue-6-active-contrast",
184
+ "sourcePath": "derived.color.blue.6.active.contrast",
185
+ "type": "color",
186
+ "category": "color",
187
+ "description": "Derived public Ropav color token --rp-color-blue-6-active-contrast.",
188
+ "themeApplicability": "light-and-dark"
189
+ },
134
190
  {
135
191
  "name": "--rp-color-blue-6-contrast",
136
192
  "sourcePath": "derived.color.blue.6.contrast",
@@ -147,6 +203,14 @@
147
203
  "description": "Public Ropav color token for color.blue.7.",
148
204
  "themeApplicability": "all-themes"
149
205
  },
206
+ {
207
+ "name": "--rp-color-blue-7-active-contrast",
208
+ "sourcePath": "derived.color.blue.7.active.contrast",
209
+ "type": "color",
210
+ "category": "color",
211
+ "description": "Derived public Ropav color token --rp-color-blue-7-active-contrast.",
212
+ "themeApplicability": "light-and-dark"
213
+ },
150
214
  {
151
215
  "name": "--rp-color-blue-7-contrast",
152
216
  "sourcePath": "derived.color.blue.7.contrast",
@@ -163,6 +227,14 @@
163
227
  "description": "Public Ropav color token for color.blue.8.",
164
228
  "themeApplicability": "all-themes"
165
229
  },
230
+ {
231
+ "name": "--rp-color-blue-8-active-contrast",
232
+ "sourcePath": "derived.color.blue.8.active.contrast",
233
+ "type": "color",
234
+ "category": "color",
235
+ "description": "Derived public Ropav color token --rp-color-blue-8-active-contrast.",
236
+ "themeApplicability": "light-and-dark"
237
+ },
166
238
  {
167
239
  "name": "--rp-color-blue-8-contrast",
168
240
  "sourcePath": "derived.color.blue.8.contrast",
@@ -179,6 +251,14 @@
179
251
  "description": "Public Ropav color token for color.blue.9.",
180
252
  "themeApplicability": "all-themes"
181
253
  },
254
+ {
255
+ "name": "--rp-color-blue-9-active-contrast",
256
+ "sourcePath": "derived.color.blue.9.active.contrast",
257
+ "type": "color",
258
+ "category": "color",
259
+ "description": "Derived public Ropav color token --rp-color-blue-9-active-contrast.",
260
+ "themeApplicability": "light-and-dark"
261
+ },
182
262
  {
183
263
  "name": "--rp-color-blue-9-contrast",
184
264
  "sourcePath": "derived.color.blue.9.contrast",
@@ -371,6 +451,14 @@
371
451
  "description": "Public Ropav color token for color.cyan.0.",
372
452
  "themeApplicability": "all-themes"
373
453
  },
454
+ {
455
+ "name": "--rp-color-cyan-0-active-contrast",
456
+ "sourcePath": "derived.color.cyan.0.active.contrast",
457
+ "type": "color",
458
+ "category": "color",
459
+ "description": "Derived public Ropav color token --rp-color-cyan-0-active-contrast.",
460
+ "themeApplicability": "light-and-dark"
461
+ },
374
462
  {
375
463
  "name": "--rp-color-cyan-0-contrast",
376
464
  "sourcePath": "derived.color.cyan.0.contrast",
@@ -387,6 +475,14 @@
387
475
  "description": "Public Ropav color token for color.cyan.1.",
388
476
  "themeApplicability": "all-themes"
389
477
  },
478
+ {
479
+ "name": "--rp-color-cyan-1-active-contrast",
480
+ "sourcePath": "derived.color.cyan.1.active.contrast",
481
+ "type": "color",
482
+ "category": "color",
483
+ "description": "Derived public Ropav color token --rp-color-cyan-1-active-contrast.",
484
+ "themeApplicability": "light-and-dark"
485
+ },
390
486
  {
391
487
  "name": "--rp-color-cyan-1-contrast",
392
488
  "sourcePath": "derived.color.cyan.1.contrast",
@@ -403,6 +499,14 @@
403
499
  "description": "Public Ropav color token for color.cyan.2.",
404
500
  "themeApplicability": "all-themes"
405
501
  },
502
+ {
503
+ "name": "--rp-color-cyan-2-active-contrast",
504
+ "sourcePath": "derived.color.cyan.2.active.contrast",
505
+ "type": "color",
506
+ "category": "color",
507
+ "description": "Derived public Ropav color token --rp-color-cyan-2-active-contrast.",
508
+ "themeApplicability": "light-and-dark"
509
+ },
406
510
  {
407
511
  "name": "--rp-color-cyan-2-contrast",
408
512
  "sourcePath": "derived.color.cyan.2.contrast",
@@ -419,6 +523,14 @@
419
523
  "description": "Public Ropav color token for color.cyan.3.",
420
524
  "themeApplicability": "all-themes"
421
525
  },
526
+ {
527
+ "name": "--rp-color-cyan-3-active-contrast",
528
+ "sourcePath": "derived.color.cyan.3.active.contrast",
529
+ "type": "color",
530
+ "category": "color",
531
+ "description": "Derived public Ropav color token --rp-color-cyan-3-active-contrast.",
532
+ "themeApplicability": "light-and-dark"
533
+ },
422
534
  {
423
535
  "name": "--rp-color-cyan-3-contrast",
424
536
  "sourcePath": "derived.color.cyan.3.contrast",
@@ -435,6 +547,14 @@
435
547
  "description": "Public Ropav color token for color.cyan.4.",
436
548
  "themeApplicability": "all-themes"
437
549
  },
550
+ {
551
+ "name": "--rp-color-cyan-4-active-contrast",
552
+ "sourcePath": "derived.color.cyan.4.active.contrast",
553
+ "type": "color",
554
+ "category": "color",
555
+ "description": "Derived public Ropav color token --rp-color-cyan-4-active-contrast.",
556
+ "themeApplicability": "light-and-dark"
557
+ },
438
558
  {
439
559
  "name": "--rp-color-cyan-4-contrast",
440
560
  "sourcePath": "derived.color.cyan.4.contrast",
@@ -451,6 +571,14 @@
451
571
  "description": "Public Ropav color token for color.cyan.5.",
452
572
  "themeApplicability": "all-themes"
453
573
  },
574
+ {
575
+ "name": "--rp-color-cyan-5-active-contrast",
576
+ "sourcePath": "derived.color.cyan.5.active.contrast",
577
+ "type": "color",
578
+ "category": "color",
579
+ "description": "Derived public Ropav color token --rp-color-cyan-5-active-contrast.",
580
+ "themeApplicability": "light-and-dark"
581
+ },
454
582
  {
455
583
  "name": "--rp-color-cyan-5-contrast",
456
584
  "sourcePath": "derived.color.cyan.5.contrast",
@@ -467,6 +595,14 @@
467
595
  "description": "Public Ropav color token for color.cyan.6.",
468
596
  "themeApplicability": "all-themes"
469
597
  },
598
+ {
599
+ "name": "--rp-color-cyan-6-active-contrast",
600
+ "sourcePath": "derived.color.cyan.6.active.contrast",
601
+ "type": "color",
602
+ "category": "color",
603
+ "description": "Derived public Ropav color token --rp-color-cyan-6-active-contrast.",
604
+ "themeApplicability": "light-and-dark"
605
+ },
470
606
  {
471
607
  "name": "--rp-color-cyan-6-contrast",
472
608
  "sourcePath": "derived.color.cyan.6.contrast",
@@ -483,6 +619,14 @@
483
619
  "description": "Public Ropav color token for color.cyan.7.",
484
620
  "themeApplicability": "all-themes"
485
621
  },
622
+ {
623
+ "name": "--rp-color-cyan-7-active-contrast",
624
+ "sourcePath": "derived.color.cyan.7.active.contrast",
625
+ "type": "color",
626
+ "category": "color",
627
+ "description": "Derived public Ropav color token --rp-color-cyan-7-active-contrast.",
628
+ "themeApplicability": "light-and-dark"
629
+ },
486
630
  {
487
631
  "name": "--rp-color-cyan-7-contrast",
488
632
  "sourcePath": "derived.color.cyan.7.contrast",
@@ -499,6 +643,14 @@
499
643
  "description": "Public Ropav color token for color.cyan.8.",
500
644
  "themeApplicability": "all-themes"
501
645
  },
646
+ {
647
+ "name": "--rp-color-cyan-8-active-contrast",
648
+ "sourcePath": "derived.color.cyan.8.active.contrast",
649
+ "type": "color",
650
+ "category": "color",
651
+ "description": "Derived public Ropav color token --rp-color-cyan-8-active-contrast.",
652
+ "themeApplicability": "light-and-dark"
653
+ },
502
654
  {
503
655
  "name": "--rp-color-cyan-8-contrast",
504
656
  "sourcePath": "derived.color.cyan.8.contrast",
@@ -515,6 +667,14 @@
515
667
  "description": "Public Ropav color token for color.cyan.9.",
516
668
  "themeApplicability": "all-themes"
517
669
  },
670
+ {
671
+ "name": "--rp-color-cyan-9-active-contrast",
672
+ "sourcePath": "derived.color.cyan.9.active.contrast",
673
+ "type": "color",
674
+ "category": "color",
675
+ "description": "Derived public Ropav color token --rp-color-cyan-9-active-contrast.",
676
+ "themeApplicability": "light-and-dark"
677
+ },
518
678
  {
519
679
  "name": "--rp-color-cyan-9-contrast",
520
680
  "sourcePath": "derived.color.cyan.9.contrast",
@@ -595,6 +755,14 @@
595
755
  "description": "Public Ropav color token for color.dark.0.",
596
756
  "themeApplicability": "all-themes"
597
757
  },
758
+ {
759
+ "name": "--rp-color-dark-0-active-contrast",
760
+ "sourcePath": "derived.color.dark.0.active.contrast",
761
+ "type": "color",
762
+ "category": "color",
763
+ "description": "Derived public Ropav color token --rp-color-dark-0-active-contrast.",
764
+ "themeApplicability": "light-and-dark"
765
+ },
598
766
  {
599
767
  "name": "--rp-color-dark-0-contrast",
600
768
  "sourcePath": "derived.color.dark.0.contrast",
@@ -611,6 +779,14 @@
611
779
  "description": "Public Ropav color token for color.dark.1.",
612
780
  "themeApplicability": "all-themes"
613
781
  },
782
+ {
783
+ "name": "--rp-color-dark-1-active-contrast",
784
+ "sourcePath": "derived.color.dark.1.active.contrast",
785
+ "type": "color",
786
+ "category": "color",
787
+ "description": "Derived public Ropav color token --rp-color-dark-1-active-contrast.",
788
+ "themeApplicability": "light-and-dark"
789
+ },
614
790
  {
615
791
  "name": "--rp-color-dark-1-contrast",
616
792
  "sourcePath": "derived.color.dark.1.contrast",
@@ -627,6 +803,14 @@
627
803
  "description": "Public Ropav color token for color.dark.2.",
628
804
  "themeApplicability": "all-themes"
629
805
  },
806
+ {
807
+ "name": "--rp-color-dark-2-active-contrast",
808
+ "sourcePath": "derived.color.dark.2.active.contrast",
809
+ "type": "color",
810
+ "category": "color",
811
+ "description": "Derived public Ropav color token --rp-color-dark-2-active-contrast.",
812
+ "themeApplicability": "light-and-dark"
813
+ },
630
814
  {
631
815
  "name": "--rp-color-dark-2-contrast",
632
816
  "sourcePath": "derived.color.dark.2.contrast",
@@ -643,6 +827,14 @@
643
827
  "description": "Public Ropav color token for color.dark.3.",
644
828
  "themeApplicability": "all-themes"
645
829
  },
830
+ {
831
+ "name": "--rp-color-dark-3-active-contrast",
832
+ "sourcePath": "derived.color.dark.3.active.contrast",
833
+ "type": "color",
834
+ "category": "color",
835
+ "description": "Derived public Ropav color token --rp-color-dark-3-active-contrast.",
836
+ "themeApplicability": "light-and-dark"
837
+ },
646
838
  {
647
839
  "name": "--rp-color-dark-3-contrast",
648
840
  "sourcePath": "derived.color.dark.3.contrast",
@@ -659,6 +851,14 @@
659
851
  "description": "Public Ropav color token for color.dark.4.",
660
852
  "themeApplicability": "all-themes"
661
853
  },
854
+ {
855
+ "name": "--rp-color-dark-4-active-contrast",
856
+ "sourcePath": "derived.color.dark.4.active.contrast",
857
+ "type": "color",
858
+ "category": "color",
859
+ "description": "Derived public Ropav color token --rp-color-dark-4-active-contrast.",
860
+ "themeApplicability": "light-and-dark"
861
+ },
662
862
  {
663
863
  "name": "--rp-color-dark-4-contrast",
664
864
  "sourcePath": "derived.color.dark.4.contrast",
@@ -675,6 +875,14 @@
675
875
  "description": "Public Ropav color token for color.dark.5.",
676
876
  "themeApplicability": "all-themes"
677
877
  },
878
+ {
879
+ "name": "--rp-color-dark-5-active-contrast",
880
+ "sourcePath": "derived.color.dark.5.active.contrast",
881
+ "type": "color",
882
+ "category": "color",
883
+ "description": "Derived public Ropav color token --rp-color-dark-5-active-contrast.",
884
+ "themeApplicability": "light-and-dark"
885
+ },
678
886
  {
679
887
  "name": "--rp-color-dark-5-contrast",
680
888
  "sourcePath": "derived.color.dark.5.contrast",
@@ -691,6 +899,14 @@
691
899
  "description": "Public Ropav color token for color.dark.6.",
692
900
  "themeApplicability": "all-themes"
693
901
  },
902
+ {
903
+ "name": "--rp-color-dark-6-active-contrast",
904
+ "sourcePath": "derived.color.dark.6.active.contrast",
905
+ "type": "color",
906
+ "category": "color",
907
+ "description": "Derived public Ropav color token --rp-color-dark-6-active-contrast.",
908
+ "themeApplicability": "light-and-dark"
909
+ },
694
910
  {
695
911
  "name": "--rp-color-dark-6-contrast",
696
912
  "sourcePath": "derived.color.dark.6.contrast",
@@ -707,6 +923,14 @@
707
923
  "description": "Public Ropav color token for color.dark.7.",
708
924
  "themeApplicability": "all-themes"
709
925
  },
926
+ {
927
+ "name": "--rp-color-dark-7-active-contrast",
928
+ "sourcePath": "derived.color.dark.7.active.contrast",
929
+ "type": "color",
930
+ "category": "color",
931
+ "description": "Derived public Ropav color token --rp-color-dark-7-active-contrast.",
932
+ "themeApplicability": "light-and-dark"
933
+ },
710
934
  {
711
935
  "name": "--rp-color-dark-7-contrast",
712
936
  "sourcePath": "derived.color.dark.7.contrast",
@@ -723,6 +947,14 @@
723
947
  "description": "Public Ropav color token for color.dark.8.",
724
948
  "themeApplicability": "all-themes"
725
949
  },
950
+ {
951
+ "name": "--rp-color-dark-8-active-contrast",
952
+ "sourcePath": "derived.color.dark.8.active.contrast",
953
+ "type": "color",
954
+ "category": "color",
955
+ "description": "Derived public Ropav color token --rp-color-dark-8-active-contrast.",
956
+ "themeApplicability": "light-and-dark"
957
+ },
726
958
  {
727
959
  "name": "--rp-color-dark-8-contrast",
728
960
  "sourcePath": "derived.color.dark.8.contrast",
@@ -739,6 +971,14 @@
739
971
  "description": "Public Ropav color token for color.dark.9.",
740
972
  "themeApplicability": "all-themes"
741
973
  },
974
+ {
975
+ "name": "--rp-color-dark-9-active-contrast",
976
+ "sourcePath": "derived.color.dark.9.active.contrast",
977
+ "type": "color",
978
+ "category": "color",
979
+ "description": "Derived public Ropav color token --rp-color-dark-9-active-contrast.",
980
+ "themeApplicability": "light-and-dark"
981
+ },
742
982
  {
743
983
  "name": "--rp-color-dark-9-contrast",
744
984
  "sourcePath": "derived.color.dark.9.contrast",
@@ -899,6 +1139,14 @@
899
1139
  "description": "Public Ropav color token for color.grape.0.",
900
1140
  "themeApplicability": "all-themes"
901
1141
  },
1142
+ {
1143
+ "name": "--rp-color-grape-0-active-contrast",
1144
+ "sourcePath": "derived.color.grape.0.active.contrast",
1145
+ "type": "color",
1146
+ "category": "color",
1147
+ "description": "Derived public Ropav color token --rp-color-grape-0-active-contrast.",
1148
+ "themeApplicability": "light-and-dark"
1149
+ },
902
1150
  {
903
1151
  "name": "--rp-color-grape-0-contrast",
904
1152
  "sourcePath": "derived.color.grape.0.contrast",
@@ -915,6 +1163,14 @@
915
1163
  "description": "Public Ropav color token for color.grape.1.",
916
1164
  "themeApplicability": "all-themes"
917
1165
  },
1166
+ {
1167
+ "name": "--rp-color-grape-1-active-contrast",
1168
+ "sourcePath": "derived.color.grape.1.active.contrast",
1169
+ "type": "color",
1170
+ "category": "color",
1171
+ "description": "Derived public Ropav color token --rp-color-grape-1-active-contrast.",
1172
+ "themeApplicability": "light-and-dark"
1173
+ },
918
1174
  {
919
1175
  "name": "--rp-color-grape-1-contrast",
920
1176
  "sourcePath": "derived.color.grape.1.contrast",
@@ -931,6 +1187,14 @@
931
1187
  "description": "Public Ropav color token for color.grape.2.",
932
1188
  "themeApplicability": "all-themes"
933
1189
  },
1190
+ {
1191
+ "name": "--rp-color-grape-2-active-contrast",
1192
+ "sourcePath": "derived.color.grape.2.active.contrast",
1193
+ "type": "color",
1194
+ "category": "color",
1195
+ "description": "Derived public Ropav color token --rp-color-grape-2-active-contrast.",
1196
+ "themeApplicability": "light-and-dark"
1197
+ },
934
1198
  {
935
1199
  "name": "--rp-color-grape-2-contrast",
936
1200
  "sourcePath": "derived.color.grape.2.contrast",
@@ -947,6 +1211,14 @@
947
1211
  "description": "Public Ropav color token for color.grape.3.",
948
1212
  "themeApplicability": "all-themes"
949
1213
  },
1214
+ {
1215
+ "name": "--rp-color-grape-3-active-contrast",
1216
+ "sourcePath": "derived.color.grape.3.active.contrast",
1217
+ "type": "color",
1218
+ "category": "color",
1219
+ "description": "Derived public Ropav color token --rp-color-grape-3-active-contrast.",
1220
+ "themeApplicability": "light-and-dark"
1221
+ },
950
1222
  {
951
1223
  "name": "--rp-color-grape-3-contrast",
952
1224
  "sourcePath": "derived.color.grape.3.contrast",
@@ -963,6 +1235,14 @@
963
1235
  "description": "Public Ropav color token for color.grape.4.",
964
1236
  "themeApplicability": "all-themes"
965
1237
  },
1238
+ {
1239
+ "name": "--rp-color-grape-4-active-contrast",
1240
+ "sourcePath": "derived.color.grape.4.active.contrast",
1241
+ "type": "color",
1242
+ "category": "color",
1243
+ "description": "Derived public Ropav color token --rp-color-grape-4-active-contrast.",
1244
+ "themeApplicability": "light-and-dark"
1245
+ },
966
1246
  {
967
1247
  "name": "--rp-color-grape-4-contrast",
968
1248
  "sourcePath": "derived.color.grape.4.contrast",
@@ -979,6 +1259,14 @@
979
1259
  "description": "Public Ropav color token for color.grape.5.",
980
1260
  "themeApplicability": "all-themes"
981
1261
  },
1262
+ {
1263
+ "name": "--rp-color-grape-5-active-contrast",
1264
+ "sourcePath": "derived.color.grape.5.active.contrast",
1265
+ "type": "color",
1266
+ "category": "color",
1267
+ "description": "Derived public Ropav color token --rp-color-grape-5-active-contrast.",
1268
+ "themeApplicability": "light-and-dark"
1269
+ },
982
1270
  {
983
1271
  "name": "--rp-color-grape-5-contrast",
984
1272
  "sourcePath": "derived.color.grape.5.contrast",
@@ -995,6 +1283,14 @@
995
1283
  "description": "Public Ropav color token for color.grape.6.",
996
1284
  "themeApplicability": "all-themes"
997
1285
  },
1286
+ {
1287
+ "name": "--rp-color-grape-6-active-contrast",
1288
+ "sourcePath": "derived.color.grape.6.active.contrast",
1289
+ "type": "color",
1290
+ "category": "color",
1291
+ "description": "Derived public Ropav color token --rp-color-grape-6-active-contrast.",
1292
+ "themeApplicability": "light-and-dark"
1293
+ },
998
1294
  {
999
1295
  "name": "--rp-color-grape-6-contrast",
1000
1296
  "sourcePath": "derived.color.grape.6.contrast",
@@ -1011,6 +1307,14 @@
1011
1307
  "description": "Public Ropav color token for color.grape.7.",
1012
1308
  "themeApplicability": "all-themes"
1013
1309
  },
1310
+ {
1311
+ "name": "--rp-color-grape-7-active-contrast",
1312
+ "sourcePath": "derived.color.grape.7.active.contrast",
1313
+ "type": "color",
1314
+ "category": "color",
1315
+ "description": "Derived public Ropav color token --rp-color-grape-7-active-contrast.",
1316
+ "themeApplicability": "light-and-dark"
1317
+ },
1014
1318
  {
1015
1319
  "name": "--rp-color-grape-7-contrast",
1016
1320
  "sourcePath": "derived.color.grape.7.contrast",
@@ -1027,6 +1331,14 @@
1027
1331
  "description": "Public Ropav color token for color.grape.8.",
1028
1332
  "themeApplicability": "all-themes"
1029
1333
  },
1334
+ {
1335
+ "name": "--rp-color-grape-8-active-contrast",
1336
+ "sourcePath": "derived.color.grape.8.active.contrast",
1337
+ "type": "color",
1338
+ "category": "color",
1339
+ "description": "Derived public Ropav color token --rp-color-grape-8-active-contrast.",
1340
+ "themeApplicability": "light-and-dark"
1341
+ },
1030
1342
  {
1031
1343
  "name": "--rp-color-grape-8-contrast",
1032
1344
  "sourcePath": "derived.color.grape.8.contrast",
@@ -1043,6 +1355,14 @@
1043
1355
  "description": "Public Ropav color token for color.grape.9.",
1044
1356
  "themeApplicability": "all-themes"
1045
1357
  },
1358
+ {
1359
+ "name": "--rp-color-grape-9-active-contrast",
1360
+ "sourcePath": "derived.color.grape.9.active.contrast",
1361
+ "type": "color",
1362
+ "category": "color",
1363
+ "description": "Derived public Ropav color token --rp-color-grape-9-active-contrast.",
1364
+ "themeApplicability": "light-and-dark"
1365
+ },
1046
1366
  {
1047
1367
  "name": "--rp-color-grape-9-contrast",
1048
1368
  "sourcePath": "derived.color.grape.9.contrast",
@@ -1123,6 +1443,14 @@
1123
1443
  "description": "Public Ropav color token for color.gray.0.",
1124
1444
  "themeApplicability": "all-themes"
1125
1445
  },
1446
+ {
1447
+ "name": "--rp-color-gray-0-active-contrast",
1448
+ "sourcePath": "derived.color.gray.0.active.contrast",
1449
+ "type": "color",
1450
+ "category": "color",
1451
+ "description": "Derived public Ropav color token --rp-color-gray-0-active-contrast.",
1452
+ "themeApplicability": "light-and-dark"
1453
+ },
1126
1454
  {
1127
1455
  "name": "--rp-color-gray-0-contrast",
1128
1456
  "sourcePath": "derived.color.gray.0.contrast",
@@ -1139,6 +1467,14 @@
1139
1467
  "description": "Public Ropav color token for color.gray.1.",
1140
1468
  "themeApplicability": "all-themes"
1141
1469
  },
1470
+ {
1471
+ "name": "--rp-color-gray-1-active-contrast",
1472
+ "sourcePath": "derived.color.gray.1.active.contrast",
1473
+ "type": "color",
1474
+ "category": "color",
1475
+ "description": "Derived public Ropav color token --rp-color-gray-1-active-contrast.",
1476
+ "themeApplicability": "light-and-dark"
1477
+ },
1142
1478
  {
1143
1479
  "name": "--rp-color-gray-1-contrast",
1144
1480
  "sourcePath": "derived.color.gray.1.contrast",
@@ -1155,6 +1491,14 @@
1155
1491
  "description": "Public Ropav color token for color.gray.2.",
1156
1492
  "themeApplicability": "all-themes"
1157
1493
  },
1494
+ {
1495
+ "name": "--rp-color-gray-2-active-contrast",
1496
+ "sourcePath": "derived.color.gray.2.active.contrast",
1497
+ "type": "color",
1498
+ "category": "color",
1499
+ "description": "Derived public Ropav color token --rp-color-gray-2-active-contrast.",
1500
+ "themeApplicability": "light-and-dark"
1501
+ },
1158
1502
  {
1159
1503
  "name": "--rp-color-gray-2-contrast",
1160
1504
  "sourcePath": "derived.color.gray.2.contrast",
@@ -1171,6 +1515,14 @@
1171
1515
  "description": "Public Ropav color token for color.gray.3.",
1172
1516
  "themeApplicability": "all-themes"
1173
1517
  },
1518
+ {
1519
+ "name": "--rp-color-gray-3-active-contrast",
1520
+ "sourcePath": "derived.color.gray.3.active.contrast",
1521
+ "type": "color",
1522
+ "category": "color",
1523
+ "description": "Derived public Ropav color token --rp-color-gray-3-active-contrast.",
1524
+ "themeApplicability": "light-and-dark"
1525
+ },
1174
1526
  {
1175
1527
  "name": "--rp-color-gray-3-contrast",
1176
1528
  "sourcePath": "derived.color.gray.3.contrast",
@@ -1187,6 +1539,14 @@
1187
1539
  "description": "Public Ropav color token for color.gray.4.",
1188
1540
  "themeApplicability": "all-themes"
1189
1541
  },
1542
+ {
1543
+ "name": "--rp-color-gray-4-active-contrast",
1544
+ "sourcePath": "derived.color.gray.4.active.contrast",
1545
+ "type": "color",
1546
+ "category": "color",
1547
+ "description": "Derived public Ropav color token --rp-color-gray-4-active-contrast.",
1548
+ "themeApplicability": "light-and-dark"
1549
+ },
1190
1550
  {
1191
1551
  "name": "--rp-color-gray-4-contrast",
1192
1552
  "sourcePath": "derived.color.gray.4.contrast",
@@ -1203,6 +1563,14 @@
1203
1563
  "description": "Public Ropav color token for color.gray.5.",
1204
1564
  "themeApplicability": "all-themes"
1205
1565
  },
1566
+ {
1567
+ "name": "--rp-color-gray-5-active-contrast",
1568
+ "sourcePath": "derived.color.gray.5.active.contrast",
1569
+ "type": "color",
1570
+ "category": "color",
1571
+ "description": "Derived public Ropav color token --rp-color-gray-5-active-contrast.",
1572
+ "themeApplicability": "light-and-dark"
1573
+ },
1206
1574
  {
1207
1575
  "name": "--rp-color-gray-5-contrast",
1208
1576
  "sourcePath": "derived.color.gray.5.contrast",
@@ -1219,6 +1587,14 @@
1219
1587
  "description": "Public Ropav color token for color.gray.6.",
1220
1588
  "themeApplicability": "all-themes"
1221
1589
  },
1590
+ {
1591
+ "name": "--rp-color-gray-6-active-contrast",
1592
+ "sourcePath": "derived.color.gray.6.active.contrast",
1593
+ "type": "color",
1594
+ "category": "color",
1595
+ "description": "Derived public Ropav color token --rp-color-gray-6-active-contrast.",
1596
+ "themeApplicability": "light-and-dark"
1597
+ },
1222
1598
  {
1223
1599
  "name": "--rp-color-gray-6-contrast",
1224
1600
  "sourcePath": "derived.color.gray.6.contrast",
@@ -1235,6 +1611,14 @@
1235
1611
  "description": "Public Ropav color token for color.gray.7.",
1236
1612
  "themeApplicability": "all-themes"
1237
1613
  },
1614
+ {
1615
+ "name": "--rp-color-gray-7-active-contrast",
1616
+ "sourcePath": "derived.color.gray.7.active.contrast",
1617
+ "type": "color",
1618
+ "category": "color",
1619
+ "description": "Derived public Ropav color token --rp-color-gray-7-active-contrast.",
1620
+ "themeApplicability": "light-and-dark"
1621
+ },
1238
1622
  {
1239
1623
  "name": "--rp-color-gray-7-contrast",
1240
1624
  "sourcePath": "derived.color.gray.7.contrast",
@@ -1251,6 +1635,14 @@
1251
1635
  "description": "Public Ropav color token for color.gray.8.",
1252
1636
  "themeApplicability": "all-themes"
1253
1637
  },
1638
+ {
1639
+ "name": "--rp-color-gray-8-active-contrast",
1640
+ "sourcePath": "derived.color.gray.8.active.contrast",
1641
+ "type": "color",
1642
+ "category": "color",
1643
+ "description": "Derived public Ropav color token --rp-color-gray-8-active-contrast.",
1644
+ "themeApplicability": "light-and-dark"
1645
+ },
1254
1646
  {
1255
1647
  "name": "--rp-color-gray-8-contrast",
1256
1648
  "sourcePath": "derived.color.gray.8.contrast",
@@ -1267,6 +1659,14 @@
1267
1659
  "description": "Public Ropav color token for color.gray.9.",
1268
1660
  "themeApplicability": "all-themes"
1269
1661
  },
1662
+ {
1663
+ "name": "--rp-color-gray-9-active-contrast",
1664
+ "sourcePath": "derived.color.gray.9.active.contrast",
1665
+ "type": "color",
1666
+ "category": "color",
1667
+ "description": "Derived public Ropav color token --rp-color-gray-9-active-contrast.",
1668
+ "themeApplicability": "light-and-dark"
1669
+ },
1270
1670
  {
1271
1671
  "name": "--rp-color-gray-9-contrast",
1272
1672
  "sourcePath": "derived.color.gray.9.contrast",
@@ -1347,6 +1747,14 @@
1347
1747
  "description": "Public Ropav color token for color.green.0.",
1348
1748
  "themeApplicability": "all-themes"
1349
1749
  },
1750
+ {
1751
+ "name": "--rp-color-green-0-active-contrast",
1752
+ "sourcePath": "derived.color.green.0.active.contrast",
1753
+ "type": "color",
1754
+ "category": "color",
1755
+ "description": "Derived public Ropav color token --rp-color-green-0-active-contrast.",
1756
+ "themeApplicability": "light-and-dark"
1757
+ },
1350
1758
  {
1351
1759
  "name": "--rp-color-green-0-contrast",
1352
1760
  "sourcePath": "derived.color.green.0.contrast",
@@ -1364,7 +1772,15 @@
1364
1772
  "themeApplicability": "all-themes"
1365
1773
  },
1366
1774
  {
1367
- "name": "--rp-color-green-1-contrast",
1775
+ "name": "--rp-color-green-1-active-contrast",
1776
+ "sourcePath": "derived.color.green.1.active.contrast",
1777
+ "type": "color",
1778
+ "category": "color",
1779
+ "description": "Derived public Ropav color token --rp-color-green-1-active-contrast.",
1780
+ "themeApplicability": "light-and-dark"
1781
+ },
1782
+ {
1783
+ "name": "--rp-color-green-1-contrast",
1368
1784
  "sourcePath": "derived.color.green.1.contrast",
1369
1785
  "type": "color",
1370
1786
  "category": "color",
@@ -1379,6 +1795,14 @@
1379
1795
  "description": "Public Ropav color token for color.green.2.",
1380
1796
  "themeApplicability": "all-themes"
1381
1797
  },
1798
+ {
1799
+ "name": "--rp-color-green-2-active-contrast",
1800
+ "sourcePath": "derived.color.green.2.active.contrast",
1801
+ "type": "color",
1802
+ "category": "color",
1803
+ "description": "Derived public Ropav color token --rp-color-green-2-active-contrast.",
1804
+ "themeApplicability": "light-and-dark"
1805
+ },
1382
1806
  {
1383
1807
  "name": "--rp-color-green-2-contrast",
1384
1808
  "sourcePath": "derived.color.green.2.contrast",
@@ -1395,6 +1819,14 @@
1395
1819
  "description": "Public Ropav color token for color.green.3.",
1396
1820
  "themeApplicability": "all-themes"
1397
1821
  },
1822
+ {
1823
+ "name": "--rp-color-green-3-active-contrast",
1824
+ "sourcePath": "derived.color.green.3.active.contrast",
1825
+ "type": "color",
1826
+ "category": "color",
1827
+ "description": "Derived public Ropav color token --rp-color-green-3-active-contrast.",
1828
+ "themeApplicability": "light-and-dark"
1829
+ },
1398
1830
  {
1399
1831
  "name": "--rp-color-green-3-contrast",
1400
1832
  "sourcePath": "derived.color.green.3.contrast",
@@ -1411,6 +1843,14 @@
1411
1843
  "description": "Public Ropav color token for color.green.4.",
1412
1844
  "themeApplicability": "all-themes"
1413
1845
  },
1846
+ {
1847
+ "name": "--rp-color-green-4-active-contrast",
1848
+ "sourcePath": "derived.color.green.4.active.contrast",
1849
+ "type": "color",
1850
+ "category": "color",
1851
+ "description": "Derived public Ropav color token --rp-color-green-4-active-contrast.",
1852
+ "themeApplicability": "light-and-dark"
1853
+ },
1414
1854
  {
1415
1855
  "name": "--rp-color-green-4-contrast",
1416
1856
  "sourcePath": "derived.color.green.4.contrast",
@@ -1427,6 +1867,14 @@
1427
1867
  "description": "Public Ropav color token for color.green.5.",
1428
1868
  "themeApplicability": "all-themes"
1429
1869
  },
1870
+ {
1871
+ "name": "--rp-color-green-5-active-contrast",
1872
+ "sourcePath": "derived.color.green.5.active.contrast",
1873
+ "type": "color",
1874
+ "category": "color",
1875
+ "description": "Derived public Ropav color token --rp-color-green-5-active-contrast.",
1876
+ "themeApplicability": "light-and-dark"
1877
+ },
1430
1878
  {
1431
1879
  "name": "--rp-color-green-5-contrast",
1432
1880
  "sourcePath": "derived.color.green.5.contrast",
@@ -1443,6 +1891,14 @@
1443
1891
  "description": "Public Ropav color token for color.green.6.",
1444
1892
  "themeApplicability": "all-themes"
1445
1893
  },
1894
+ {
1895
+ "name": "--rp-color-green-6-active-contrast",
1896
+ "sourcePath": "derived.color.green.6.active.contrast",
1897
+ "type": "color",
1898
+ "category": "color",
1899
+ "description": "Derived public Ropav color token --rp-color-green-6-active-contrast.",
1900
+ "themeApplicability": "light-and-dark"
1901
+ },
1446
1902
  {
1447
1903
  "name": "--rp-color-green-6-contrast",
1448
1904
  "sourcePath": "derived.color.green.6.contrast",
@@ -1459,6 +1915,14 @@
1459
1915
  "description": "Public Ropav color token for color.green.7.",
1460
1916
  "themeApplicability": "all-themes"
1461
1917
  },
1918
+ {
1919
+ "name": "--rp-color-green-7-active-contrast",
1920
+ "sourcePath": "derived.color.green.7.active.contrast",
1921
+ "type": "color",
1922
+ "category": "color",
1923
+ "description": "Derived public Ropav color token --rp-color-green-7-active-contrast.",
1924
+ "themeApplicability": "light-and-dark"
1925
+ },
1462
1926
  {
1463
1927
  "name": "--rp-color-green-7-contrast",
1464
1928
  "sourcePath": "derived.color.green.7.contrast",
@@ -1475,6 +1939,14 @@
1475
1939
  "description": "Public Ropav color token for color.green.8.",
1476
1940
  "themeApplicability": "all-themes"
1477
1941
  },
1942
+ {
1943
+ "name": "--rp-color-green-8-active-contrast",
1944
+ "sourcePath": "derived.color.green.8.active.contrast",
1945
+ "type": "color",
1946
+ "category": "color",
1947
+ "description": "Derived public Ropav color token --rp-color-green-8-active-contrast.",
1948
+ "themeApplicability": "light-and-dark"
1949
+ },
1478
1950
  {
1479
1951
  "name": "--rp-color-green-8-contrast",
1480
1952
  "sourcePath": "derived.color.green.8.contrast",
@@ -1491,6 +1963,14 @@
1491
1963
  "description": "Public Ropav color token for color.green.9.",
1492
1964
  "themeApplicability": "all-themes"
1493
1965
  },
1966
+ {
1967
+ "name": "--rp-color-green-9-active-contrast",
1968
+ "sourcePath": "derived.color.green.9.active.contrast",
1969
+ "type": "color",
1970
+ "category": "color",
1971
+ "description": "Derived public Ropav color token --rp-color-green-9-active-contrast.",
1972
+ "themeApplicability": "light-and-dark"
1973
+ },
1494
1974
  {
1495
1975
  "name": "--rp-color-green-9-contrast",
1496
1976
  "sourcePath": "derived.color.green.9.contrast",
@@ -1571,6 +2051,14 @@
1571
2051
  "description": "Public Ropav color token for color.indigo.0.",
1572
2052
  "themeApplicability": "all-themes"
1573
2053
  },
2054
+ {
2055
+ "name": "--rp-color-indigo-0-active-contrast",
2056
+ "sourcePath": "derived.color.indigo.0.active.contrast",
2057
+ "type": "color",
2058
+ "category": "color",
2059
+ "description": "Derived public Ropav color token --rp-color-indigo-0-active-contrast.",
2060
+ "themeApplicability": "light-and-dark"
2061
+ },
1574
2062
  {
1575
2063
  "name": "--rp-color-indigo-0-contrast",
1576
2064
  "sourcePath": "derived.color.indigo.0.contrast",
@@ -1587,6 +2075,14 @@
1587
2075
  "description": "Public Ropav color token for color.indigo.1.",
1588
2076
  "themeApplicability": "all-themes"
1589
2077
  },
2078
+ {
2079
+ "name": "--rp-color-indigo-1-active-contrast",
2080
+ "sourcePath": "derived.color.indigo.1.active.contrast",
2081
+ "type": "color",
2082
+ "category": "color",
2083
+ "description": "Derived public Ropav color token --rp-color-indigo-1-active-contrast.",
2084
+ "themeApplicability": "light-and-dark"
2085
+ },
1590
2086
  {
1591
2087
  "name": "--rp-color-indigo-1-contrast",
1592
2088
  "sourcePath": "derived.color.indigo.1.contrast",
@@ -1603,6 +2099,14 @@
1603
2099
  "description": "Public Ropav color token for color.indigo.2.",
1604
2100
  "themeApplicability": "all-themes"
1605
2101
  },
2102
+ {
2103
+ "name": "--rp-color-indigo-2-active-contrast",
2104
+ "sourcePath": "derived.color.indigo.2.active.contrast",
2105
+ "type": "color",
2106
+ "category": "color",
2107
+ "description": "Derived public Ropav color token --rp-color-indigo-2-active-contrast.",
2108
+ "themeApplicability": "light-and-dark"
2109
+ },
1606
2110
  {
1607
2111
  "name": "--rp-color-indigo-2-contrast",
1608
2112
  "sourcePath": "derived.color.indigo.2.contrast",
@@ -1619,6 +2123,14 @@
1619
2123
  "description": "Public Ropav color token for color.indigo.3.",
1620
2124
  "themeApplicability": "all-themes"
1621
2125
  },
2126
+ {
2127
+ "name": "--rp-color-indigo-3-active-contrast",
2128
+ "sourcePath": "derived.color.indigo.3.active.contrast",
2129
+ "type": "color",
2130
+ "category": "color",
2131
+ "description": "Derived public Ropav color token --rp-color-indigo-3-active-contrast.",
2132
+ "themeApplicability": "light-and-dark"
2133
+ },
1622
2134
  {
1623
2135
  "name": "--rp-color-indigo-3-contrast",
1624
2136
  "sourcePath": "derived.color.indigo.3.contrast",
@@ -1635,6 +2147,14 @@
1635
2147
  "description": "Public Ropav color token for color.indigo.4.",
1636
2148
  "themeApplicability": "all-themes"
1637
2149
  },
2150
+ {
2151
+ "name": "--rp-color-indigo-4-active-contrast",
2152
+ "sourcePath": "derived.color.indigo.4.active.contrast",
2153
+ "type": "color",
2154
+ "category": "color",
2155
+ "description": "Derived public Ropav color token --rp-color-indigo-4-active-contrast.",
2156
+ "themeApplicability": "light-and-dark"
2157
+ },
1638
2158
  {
1639
2159
  "name": "--rp-color-indigo-4-contrast",
1640
2160
  "sourcePath": "derived.color.indigo.4.contrast",
@@ -1651,6 +2171,14 @@
1651
2171
  "description": "Public Ropav color token for color.indigo.5.",
1652
2172
  "themeApplicability": "all-themes"
1653
2173
  },
2174
+ {
2175
+ "name": "--rp-color-indigo-5-active-contrast",
2176
+ "sourcePath": "derived.color.indigo.5.active.contrast",
2177
+ "type": "color",
2178
+ "category": "color",
2179
+ "description": "Derived public Ropav color token --rp-color-indigo-5-active-contrast.",
2180
+ "themeApplicability": "light-and-dark"
2181
+ },
1654
2182
  {
1655
2183
  "name": "--rp-color-indigo-5-contrast",
1656
2184
  "sourcePath": "derived.color.indigo.5.contrast",
@@ -1667,6 +2195,14 @@
1667
2195
  "description": "Public Ropav color token for color.indigo.6.",
1668
2196
  "themeApplicability": "all-themes"
1669
2197
  },
2198
+ {
2199
+ "name": "--rp-color-indigo-6-active-contrast",
2200
+ "sourcePath": "derived.color.indigo.6.active.contrast",
2201
+ "type": "color",
2202
+ "category": "color",
2203
+ "description": "Derived public Ropav color token --rp-color-indigo-6-active-contrast.",
2204
+ "themeApplicability": "light-and-dark"
2205
+ },
1670
2206
  {
1671
2207
  "name": "--rp-color-indigo-6-contrast",
1672
2208
  "sourcePath": "derived.color.indigo.6.contrast",
@@ -1683,6 +2219,14 @@
1683
2219
  "description": "Public Ropav color token for color.indigo.7.",
1684
2220
  "themeApplicability": "all-themes"
1685
2221
  },
2222
+ {
2223
+ "name": "--rp-color-indigo-7-active-contrast",
2224
+ "sourcePath": "derived.color.indigo.7.active.contrast",
2225
+ "type": "color",
2226
+ "category": "color",
2227
+ "description": "Derived public Ropav color token --rp-color-indigo-7-active-contrast.",
2228
+ "themeApplicability": "light-and-dark"
2229
+ },
1686
2230
  {
1687
2231
  "name": "--rp-color-indigo-7-contrast",
1688
2232
  "sourcePath": "derived.color.indigo.7.contrast",
@@ -1699,6 +2243,14 @@
1699
2243
  "description": "Public Ropav color token for color.indigo.8.",
1700
2244
  "themeApplicability": "all-themes"
1701
2245
  },
2246
+ {
2247
+ "name": "--rp-color-indigo-8-active-contrast",
2248
+ "sourcePath": "derived.color.indigo.8.active.contrast",
2249
+ "type": "color",
2250
+ "category": "color",
2251
+ "description": "Derived public Ropav color token --rp-color-indigo-8-active-contrast.",
2252
+ "themeApplicability": "light-and-dark"
2253
+ },
1702
2254
  {
1703
2255
  "name": "--rp-color-indigo-8-contrast",
1704
2256
  "sourcePath": "derived.color.indigo.8.contrast",
@@ -1715,6 +2267,14 @@
1715
2267
  "description": "Public Ropav color token for color.indigo.9.",
1716
2268
  "themeApplicability": "all-themes"
1717
2269
  },
2270
+ {
2271
+ "name": "--rp-color-indigo-9-active-contrast",
2272
+ "sourcePath": "derived.color.indigo.9.active.contrast",
2273
+ "type": "color",
2274
+ "category": "color",
2275
+ "description": "Derived public Ropav color token --rp-color-indigo-9-active-contrast.",
2276
+ "themeApplicability": "light-and-dark"
2277
+ },
1718
2278
  {
1719
2279
  "name": "--rp-color-indigo-9-contrast",
1720
2280
  "sourcePath": "derived.color.indigo.9.contrast",
@@ -1795,6 +2355,14 @@
1795
2355
  "description": "Public Ropav color token for color.lime.0.",
1796
2356
  "themeApplicability": "all-themes"
1797
2357
  },
2358
+ {
2359
+ "name": "--rp-color-lime-0-active-contrast",
2360
+ "sourcePath": "derived.color.lime.0.active.contrast",
2361
+ "type": "color",
2362
+ "category": "color",
2363
+ "description": "Derived public Ropav color token --rp-color-lime-0-active-contrast.",
2364
+ "themeApplicability": "light-and-dark"
2365
+ },
1798
2366
  {
1799
2367
  "name": "--rp-color-lime-0-contrast",
1800
2368
  "sourcePath": "derived.color.lime.0.contrast",
@@ -1811,6 +2379,14 @@
1811
2379
  "description": "Public Ropav color token for color.lime.1.",
1812
2380
  "themeApplicability": "all-themes"
1813
2381
  },
2382
+ {
2383
+ "name": "--rp-color-lime-1-active-contrast",
2384
+ "sourcePath": "derived.color.lime.1.active.contrast",
2385
+ "type": "color",
2386
+ "category": "color",
2387
+ "description": "Derived public Ropav color token --rp-color-lime-1-active-contrast.",
2388
+ "themeApplicability": "light-and-dark"
2389
+ },
1814
2390
  {
1815
2391
  "name": "--rp-color-lime-1-contrast",
1816
2392
  "sourcePath": "derived.color.lime.1.contrast",
@@ -1827,6 +2403,14 @@
1827
2403
  "description": "Public Ropav color token for color.lime.2.",
1828
2404
  "themeApplicability": "all-themes"
1829
2405
  },
2406
+ {
2407
+ "name": "--rp-color-lime-2-active-contrast",
2408
+ "sourcePath": "derived.color.lime.2.active.contrast",
2409
+ "type": "color",
2410
+ "category": "color",
2411
+ "description": "Derived public Ropav color token --rp-color-lime-2-active-contrast.",
2412
+ "themeApplicability": "light-and-dark"
2413
+ },
1830
2414
  {
1831
2415
  "name": "--rp-color-lime-2-contrast",
1832
2416
  "sourcePath": "derived.color.lime.2.contrast",
@@ -1843,6 +2427,14 @@
1843
2427
  "description": "Public Ropav color token for color.lime.3.",
1844
2428
  "themeApplicability": "all-themes"
1845
2429
  },
2430
+ {
2431
+ "name": "--rp-color-lime-3-active-contrast",
2432
+ "sourcePath": "derived.color.lime.3.active.contrast",
2433
+ "type": "color",
2434
+ "category": "color",
2435
+ "description": "Derived public Ropav color token --rp-color-lime-3-active-contrast.",
2436
+ "themeApplicability": "light-and-dark"
2437
+ },
1846
2438
  {
1847
2439
  "name": "--rp-color-lime-3-contrast",
1848
2440
  "sourcePath": "derived.color.lime.3.contrast",
@@ -1859,6 +2451,14 @@
1859
2451
  "description": "Public Ropav color token for color.lime.4.",
1860
2452
  "themeApplicability": "all-themes"
1861
2453
  },
2454
+ {
2455
+ "name": "--rp-color-lime-4-active-contrast",
2456
+ "sourcePath": "derived.color.lime.4.active.contrast",
2457
+ "type": "color",
2458
+ "category": "color",
2459
+ "description": "Derived public Ropav color token --rp-color-lime-4-active-contrast.",
2460
+ "themeApplicability": "light-and-dark"
2461
+ },
1862
2462
  {
1863
2463
  "name": "--rp-color-lime-4-contrast",
1864
2464
  "sourcePath": "derived.color.lime.4.contrast",
@@ -1875,6 +2475,14 @@
1875
2475
  "description": "Public Ropav color token for color.lime.5.",
1876
2476
  "themeApplicability": "all-themes"
1877
2477
  },
2478
+ {
2479
+ "name": "--rp-color-lime-5-active-contrast",
2480
+ "sourcePath": "derived.color.lime.5.active.contrast",
2481
+ "type": "color",
2482
+ "category": "color",
2483
+ "description": "Derived public Ropav color token --rp-color-lime-5-active-contrast.",
2484
+ "themeApplicability": "light-and-dark"
2485
+ },
1878
2486
  {
1879
2487
  "name": "--rp-color-lime-5-contrast",
1880
2488
  "sourcePath": "derived.color.lime.5.contrast",
@@ -1891,6 +2499,14 @@
1891
2499
  "description": "Public Ropav color token for color.lime.6.",
1892
2500
  "themeApplicability": "all-themes"
1893
2501
  },
2502
+ {
2503
+ "name": "--rp-color-lime-6-active-contrast",
2504
+ "sourcePath": "derived.color.lime.6.active.contrast",
2505
+ "type": "color",
2506
+ "category": "color",
2507
+ "description": "Derived public Ropav color token --rp-color-lime-6-active-contrast.",
2508
+ "themeApplicability": "light-and-dark"
2509
+ },
1894
2510
  {
1895
2511
  "name": "--rp-color-lime-6-contrast",
1896
2512
  "sourcePath": "derived.color.lime.6.contrast",
@@ -1907,6 +2523,14 @@
1907
2523
  "description": "Public Ropav color token for color.lime.7.",
1908
2524
  "themeApplicability": "all-themes"
1909
2525
  },
2526
+ {
2527
+ "name": "--rp-color-lime-7-active-contrast",
2528
+ "sourcePath": "derived.color.lime.7.active.contrast",
2529
+ "type": "color",
2530
+ "category": "color",
2531
+ "description": "Derived public Ropav color token --rp-color-lime-7-active-contrast.",
2532
+ "themeApplicability": "light-and-dark"
2533
+ },
1910
2534
  {
1911
2535
  "name": "--rp-color-lime-7-contrast",
1912
2536
  "sourcePath": "derived.color.lime.7.contrast",
@@ -1923,6 +2547,14 @@
1923
2547
  "description": "Public Ropav color token for color.lime.8.",
1924
2548
  "themeApplicability": "all-themes"
1925
2549
  },
2550
+ {
2551
+ "name": "--rp-color-lime-8-active-contrast",
2552
+ "sourcePath": "derived.color.lime.8.active.contrast",
2553
+ "type": "color",
2554
+ "category": "color",
2555
+ "description": "Derived public Ropav color token --rp-color-lime-8-active-contrast.",
2556
+ "themeApplicability": "light-and-dark"
2557
+ },
1926
2558
  {
1927
2559
  "name": "--rp-color-lime-8-contrast",
1928
2560
  "sourcePath": "derived.color.lime.8.contrast",
@@ -1939,6 +2571,14 @@
1939
2571
  "description": "Public Ropav color token for color.lime.9.",
1940
2572
  "themeApplicability": "all-themes"
1941
2573
  },
2574
+ {
2575
+ "name": "--rp-color-lime-9-active-contrast",
2576
+ "sourcePath": "derived.color.lime.9.active.contrast",
2577
+ "type": "color",
2578
+ "category": "color",
2579
+ "description": "Derived public Ropav color token --rp-color-lime-9-active-contrast.",
2580
+ "themeApplicability": "light-and-dark"
2581
+ },
1942
2582
  {
1943
2583
  "name": "--rp-color-lime-9-contrast",
1944
2584
  "sourcePath": "derived.color.lime.9.contrast",
@@ -2019,6 +2659,14 @@
2019
2659
  "description": "Public Ropav color token for color.orange.0.",
2020
2660
  "themeApplicability": "all-themes"
2021
2661
  },
2662
+ {
2663
+ "name": "--rp-color-orange-0-active-contrast",
2664
+ "sourcePath": "derived.color.orange.0.active.contrast",
2665
+ "type": "color",
2666
+ "category": "color",
2667
+ "description": "Derived public Ropav color token --rp-color-orange-0-active-contrast.",
2668
+ "themeApplicability": "light-and-dark"
2669
+ },
2022
2670
  {
2023
2671
  "name": "--rp-color-orange-0-contrast",
2024
2672
  "sourcePath": "derived.color.orange.0.contrast",
@@ -2035,6 +2683,14 @@
2035
2683
  "description": "Public Ropav color token for color.orange.1.",
2036
2684
  "themeApplicability": "all-themes"
2037
2685
  },
2686
+ {
2687
+ "name": "--rp-color-orange-1-active-contrast",
2688
+ "sourcePath": "derived.color.orange.1.active.contrast",
2689
+ "type": "color",
2690
+ "category": "color",
2691
+ "description": "Derived public Ropav color token --rp-color-orange-1-active-contrast.",
2692
+ "themeApplicability": "light-and-dark"
2693
+ },
2038
2694
  {
2039
2695
  "name": "--rp-color-orange-1-contrast",
2040
2696
  "sourcePath": "derived.color.orange.1.contrast",
@@ -2051,6 +2707,14 @@
2051
2707
  "description": "Public Ropav color token for color.orange.2.",
2052
2708
  "themeApplicability": "all-themes"
2053
2709
  },
2710
+ {
2711
+ "name": "--rp-color-orange-2-active-contrast",
2712
+ "sourcePath": "derived.color.orange.2.active.contrast",
2713
+ "type": "color",
2714
+ "category": "color",
2715
+ "description": "Derived public Ropav color token --rp-color-orange-2-active-contrast.",
2716
+ "themeApplicability": "light-and-dark"
2717
+ },
2054
2718
  {
2055
2719
  "name": "--rp-color-orange-2-contrast",
2056
2720
  "sourcePath": "derived.color.orange.2.contrast",
@@ -2067,6 +2731,14 @@
2067
2731
  "description": "Public Ropav color token for color.orange.3.",
2068
2732
  "themeApplicability": "all-themes"
2069
2733
  },
2734
+ {
2735
+ "name": "--rp-color-orange-3-active-contrast",
2736
+ "sourcePath": "derived.color.orange.3.active.contrast",
2737
+ "type": "color",
2738
+ "category": "color",
2739
+ "description": "Derived public Ropav color token --rp-color-orange-3-active-contrast.",
2740
+ "themeApplicability": "light-and-dark"
2741
+ },
2070
2742
  {
2071
2743
  "name": "--rp-color-orange-3-contrast",
2072
2744
  "sourcePath": "derived.color.orange.3.contrast",
@@ -2083,6 +2755,14 @@
2083
2755
  "description": "Public Ropav color token for color.orange.4.",
2084
2756
  "themeApplicability": "all-themes"
2085
2757
  },
2758
+ {
2759
+ "name": "--rp-color-orange-4-active-contrast",
2760
+ "sourcePath": "derived.color.orange.4.active.contrast",
2761
+ "type": "color",
2762
+ "category": "color",
2763
+ "description": "Derived public Ropav color token --rp-color-orange-4-active-contrast.",
2764
+ "themeApplicability": "light-and-dark"
2765
+ },
2086
2766
  {
2087
2767
  "name": "--rp-color-orange-4-contrast",
2088
2768
  "sourcePath": "derived.color.orange.4.contrast",
@@ -2099,6 +2779,14 @@
2099
2779
  "description": "Public Ropav color token for color.orange.5.",
2100
2780
  "themeApplicability": "all-themes"
2101
2781
  },
2782
+ {
2783
+ "name": "--rp-color-orange-5-active-contrast",
2784
+ "sourcePath": "derived.color.orange.5.active.contrast",
2785
+ "type": "color",
2786
+ "category": "color",
2787
+ "description": "Derived public Ropav color token --rp-color-orange-5-active-contrast.",
2788
+ "themeApplicability": "light-and-dark"
2789
+ },
2102
2790
  {
2103
2791
  "name": "--rp-color-orange-5-contrast",
2104
2792
  "sourcePath": "derived.color.orange.5.contrast",
@@ -2115,6 +2803,14 @@
2115
2803
  "description": "Public Ropav color token for color.orange.6.",
2116
2804
  "themeApplicability": "all-themes"
2117
2805
  },
2806
+ {
2807
+ "name": "--rp-color-orange-6-active-contrast",
2808
+ "sourcePath": "derived.color.orange.6.active.contrast",
2809
+ "type": "color",
2810
+ "category": "color",
2811
+ "description": "Derived public Ropav color token --rp-color-orange-6-active-contrast.",
2812
+ "themeApplicability": "light-and-dark"
2813
+ },
2118
2814
  {
2119
2815
  "name": "--rp-color-orange-6-contrast",
2120
2816
  "sourcePath": "derived.color.orange.6.contrast",
@@ -2131,6 +2827,14 @@
2131
2827
  "description": "Public Ropav color token for color.orange.7.",
2132
2828
  "themeApplicability": "all-themes"
2133
2829
  },
2830
+ {
2831
+ "name": "--rp-color-orange-7-active-contrast",
2832
+ "sourcePath": "derived.color.orange.7.active.contrast",
2833
+ "type": "color",
2834
+ "category": "color",
2835
+ "description": "Derived public Ropav color token --rp-color-orange-7-active-contrast.",
2836
+ "themeApplicability": "light-and-dark"
2837
+ },
2134
2838
  {
2135
2839
  "name": "--rp-color-orange-7-contrast",
2136
2840
  "sourcePath": "derived.color.orange.7.contrast",
@@ -2147,6 +2851,14 @@
2147
2851
  "description": "Public Ropav color token for color.orange.8.",
2148
2852
  "themeApplicability": "all-themes"
2149
2853
  },
2854
+ {
2855
+ "name": "--rp-color-orange-8-active-contrast",
2856
+ "sourcePath": "derived.color.orange.8.active.contrast",
2857
+ "type": "color",
2858
+ "category": "color",
2859
+ "description": "Derived public Ropav color token --rp-color-orange-8-active-contrast.",
2860
+ "themeApplicability": "light-and-dark"
2861
+ },
2150
2862
  {
2151
2863
  "name": "--rp-color-orange-8-contrast",
2152
2864
  "sourcePath": "derived.color.orange.8.contrast",
@@ -2163,6 +2875,14 @@
2163
2875
  "description": "Public Ropav color token for color.orange.9.",
2164
2876
  "themeApplicability": "all-themes"
2165
2877
  },
2878
+ {
2879
+ "name": "--rp-color-orange-9-active-contrast",
2880
+ "sourcePath": "derived.color.orange.9.active.contrast",
2881
+ "type": "color",
2882
+ "category": "color",
2883
+ "description": "Derived public Ropav color token --rp-color-orange-9-active-contrast.",
2884
+ "themeApplicability": "light-and-dark"
2885
+ },
2166
2886
  {
2167
2887
  "name": "--rp-color-orange-9-contrast",
2168
2888
  "sourcePath": "derived.color.orange.9.contrast",
@@ -2243,6 +2963,14 @@
2243
2963
  "description": "Public Ropav color token for color.pink.0.",
2244
2964
  "themeApplicability": "all-themes"
2245
2965
  },
2966
+ {
2967
+ "name": "--rp-color-pink-0-active-contrast",
2968
+ "sourcePath": "derived.color.pink.0.active.contrast",
2969
+ "type": "color",
2970
+ "category": "color",
2971
+ "description": "Derived public Ropav color token --rp-color-pink-0-active-contrast.",
2972
+ "themeApplicability": "light-and-dark"
2973
+ },
2246
2974
  {
2247
2975
  "name": "--rp-color-pink-0-contrast",
2248
2976
  "sourcePath": "derived.color.pink.0.contrast",
@@ -2259,6 +2987,14 @@
2259
2987
  "description": "Public Ropav color token for color.pink.1.",
2260
2988
  "themeApplicability": "all-themes"
2261
2989
  },
2990
+ {
2991
+ "name": "--rp-color-pink-1-active-contrast",
2992
+ "sourcePath": "derived.color.pink.1.active.contrast",
2993
+ "type": "color",
2994
+ "category": "color",
2995
+ "description": "Derived public Ropav color token --rp-color-pink-1-active-contrast.",
2996
+ "themeApplicability": "light-and-dark"
2997
+ },
2262
2998
  {
2263
2999
  "name": "--rp-color-pink-1-contrast",
2264
3000
  "sourcePath": "derived.color.pink.1.contrast",
@@ -2275,6 +3011,14 @@
2275
3011
  "description": "Public Ropav color token for color.pink.2.",
2276
3012
  "themeApplicability": "all-themes"
2277
3013
  },
3014
+ {
3015
+ "name": "--rp-color-pink-2-active-contrast",
3016
+ "sourcePath": "derived.color.pink.2.active.contrast",
3017
+ "type": "color",
3018
+ "category": "color",
3019
+ "description": "Derived public Ropav color token --rp-color-pink-2-active-contrast.",
3020
+ "themeApplicability": "light-and-dark"
3021
+ },
2278
3022
  {
2279
3023
  "name": "--rp-color-pink-2-contrast",
2280
3024
  "sourcePath": "derived.color.pink.2.contrast",
@@ -2291,6 +3035,14 @@
2291
3035
  "description": "Public Ropav color token for color.pink.3.",
2292
3036
  "themeApplicability": "all-themes"
2293
3037
  },
3038
+ {
3039
+ "name": "--rp-color-pink-3-active-contrast",
3040
+ "sourcePath": "derived.color.pink.3.active.contrast",
3041
+ "type": "color",
3042
+ "category": "color",
3043
+ "description": "Derived public Ropav color token --rp-color-pink-3-active-contrast.",
3044
+ "themeApplicability": "light-and-dark"
3045
+ },
2294
3046
  {
2295
3047
  "name": "--rp-color-pink-3-contrast",
2296
3048
  "sourcePath": "derived.color.pink.3.contrast",
@@ -2307,6 +3059,14 @@
2307
3059
  "description": "Public Ropav color token for color.pink.4.",
2308
3060
  "themeApplicability": "all-themes"
2309
3061
  },
3062
+ {
3063
+ "name": "--rp-color-pink-4-active-contrast",
3064
+ "sourcePath": "derived.color.pink.4.active.contrast",
3065
+ "type": "color",
3066
+ "category": "color",
3067
+ "description": "Derived public Ropav color token --rp-color-pink-4-active-contrast.",
3068
+ "themeApplicability": "light-and-dark"
3069
+ },
2310
3070
  {
2311
3071
  "name": "--rp-color-pink-4-contrast",
2312
3072
  "sourcePath": "derived.color.pink.4.contrast",
@@ -2323,6 +3083,14 @@
2323
3083
  "description": "Public Ropav color token for color.pink.5.",
2324
3084
  "themeApplicability": "all-themes"
2325
3085
  },
3086
+ {
3087
+ "name": "--rp-color-pink-5-active-contrast",
3088
+ "sourcePath": "derived.color.pink.5.active.contrast",
3089
+ "type": "color",
3090
+ "category": "color",
3091
+ "description": "Derived public Ropav color token --rp-color-pink-5-active-contrast.",
3092
+ "themeApplicability": "light-and-dark"
3093
+ },
2326
3094
  {
2327
3095
  "name": "--rp-color-pink-5-contrast",
2328
3096
  "sourcePath": "derived.color.pink.5.contrast",
@@ -2339,6 +3107,14 @@
2339
3107
  "description": "Public Ropav color token for color.pink.6.",
2340
3108
  "themeApplicability": "all-themes"
2341
3109
  },
3110
+ {
3111
+ "name": "--rp-color-pink-6-active-contrast",
3112
+ "sourcePath": "derived.color.pink.6.active.contrast",
3113
+ "type": "color",
3114
+ "category": "color",
3115
+ "description": "Derived public Ropav color token --rp-color-pink-6-active-contrast.",
3116
+ "themeApplicability": "light-and-dark"
3117
+ },
2342
3118
  {
2343
3119
  "name": "--rp-color-pink-6-contrast",
2344
3120
  "sourcePath": "derived.color.pink.6.contrast",
@@ -2355,6 +3131,14 @@
2355
3131
  "description": "Public Ropav color token for color.pink.7.",
2356
3132
  "themeApplicability": "all-themes"
2357
3133
  },
3134
+ {
3135
+ "name": "--rp-color-pink-7-active-contrast",
3136
+ "sourcePath": "derived.color.pink.7.active.contrast",
3137
+ "type": "color",
3138
+ "category": "color",
3139
+ "description": "Derived public Ropav color token --rp-color-pink-7-active-contrast.",
3140
+ "themeApplicability": "light-and-dark"
3141
+ },
2358
3142
  {
2359
3143
  "name": "--rp-color-pink-7-contrast",
2360
3144
  "sourcePath": "derived.color.pink.7.contrast",
@@ -2371,6 +3155,14 @@
2371
3155
  "description": "Public Ropav color token for color.pink.8.",
2372
3156
  "themeApplicability": "all-themes"
2373
3157
  },
3158
+ {
3159
+ "name": "--rp-color-pink-8-active-contrast",
3160
+ "sourcePath": "derived.color.pink.8.active.contrast",
3161
+ "type": "color",
3162
+ "category": "color",
3163
+ "description": "Derived public Ropav color token --rp-color-pink-8-active-contrast.",
3164
+ "themeApplicability": "light-and-dark"
3165
+ },
2374
3166
  {
2375
3167
  "name": "--rp-color-pink-8-contrast",
2376
3168
  "sourcePath": "derived.color.pink.8.contrast",
@@ -2387,6 +3179,14 @@
2387
3179
  "description": "Public Ropav color token for color.pink.9.",
2388
3180
  "themeApplicability": "all-themes"
2389
3181
  },
3182
+ {
3183
+ "name": "--rp-color-pink-9-active-contrast",
3184
+ "sourcePath": "derived.color.pink.9.active.contrast",
3185
+ "type": "color",
3186
+ "category": "color",
3187
+ "description": "Derived public Ropav color token --rp-color-pink-9-active-contrast.",
3188
+ "themeApplicability": "light-and-dark"
3189
+ },
2390
3190
  {
2391
3191
  "name": "--rp-color-pink-9-contrast",
2392
3192
  "sourcePath": "derived.color.pink.9.contrast",
@@ -2475,6 +3275,14 @@
2475
3275
  "description": "Public Ropav color token for color.red.0.",
2476
3276
  "themeApplicability": "all-themes"
2477
3277
  },
3278
+ {
3279
+ "name": "--rp-color-red-0-active-contrast",
3280
+ "sourcePath": "derived.color.red.0.active.contrast",
3281
+ "type": "color",
3282
+ "category": "color",
3283
+ "description": "Derived public Ropav color token --rp-color-red-0-active-contrast.",
3284
+ "themeApplicability": "light-and-dark"
3285
+ },
2478
3286
  {
2479
3287
  "name": "--rp-color-red-0-contrast",
2480
3288
  "sourcePath": "derived.color.red.0.contrast",
@@ -2491,6 +3299,14 @@
2491
3299
  "description": "Public Ropav color token for color.red.1.",
2492
3300
  "themeApplicability": "all-themes"
2493
3301
  },
3302
+ {
3303
+ "name": "--rp-color-red-1-active-contrast",
3304
+ "sourcePath": "derived.color.red.1.active.contrast",
3305
+ "type": "color",
3306
+ "category": "color",
3307
+ "description": "Derived public Ropav color token --rp-color-red-1-active-contrast.",
3308
+ "themeApplicability": "light-and-dark"
3309
+ },
2494
3310
  {
2495
3311
  "name": "--rp-color-red-1-contrast",
2496
3312
  "sourcePath": "derived.color.red.1.contrast",
@@ -2507,6 +3323,14 @@
2507
3323
  "description": "Public Ropav color token for color.red.2.",
2508
3324
  "themeApplicability": "all-themes"
2509
3325
  },
3326
+ {
3327
+ "name": "--rp-color-red-2-active-contrast",
3328
+ "sourcePath": "derived.color.red.2.active.contrast",
3329
+ "type": "color",
3330
+ "category": "color",
3331
+ "description": "Derived public Ropav color token --rp-color-red-2-active-contrast.",
3332
+ "themeApplicability": "light-and-dark"
3333
+ },
2510
3334
  {
2511
3335
  "name": "--rp-color-red-2-contrast",
2512
3336
  "sourcePath": "derived.color.red.2.contrast",
@@ -2523,6 +3347,14 @@
2523
3347
  "description": "Public Ropav color token for color.red.3.",
2524
3348
  "themeApplicability": "all-themes"
2525
3349
  },
3350
+ {
3351
+ "name": "--rp-color-red-3-active-contrast",
3352
+ "sourcePath": "derived.color.red.3.active.contrast",
3353
+ "type": "color",
3354
+ "category": "color",
3355
+ "description": "Derived public Ropav color token --rp-color-red-3-active-contrast.",
3356
+ "themeApplicability": "light-and-dark"
3357
+ },
2526
3358
  {
2527
3359
  "name": "--rp-color-red-3-contrast",
2528
3360
  "sourcePath": "derived.color.red.3.contrast",
@@ -2539,6 +3371,14 @@
2539
3371
  "description": "Public Ropav color token for color.red.4.",
2540
3372
  "themeApplicability": "all-themes"
2541
3373
  },
3374
+ {
3375
+ "name": "--rp-color-red-4-active-contrast",
3376
+ "sourcePath": "derived.color.red.4.active.contrast",
3377
+ "type": "color",
3378
+ "category": "color",
3379
+ "description": "Derived public Ropav color token --rp-color-red-4-active-contrast.",
3380
+ "themeApplicability": "light-and-dark"
3381
+ },
2542
3382
  {
2543
3383
  "name": "--rp-color-red-4-contrast",
2544
3384
  "sourcePath": "derived.color.red.4.contrast",
@@ -2555,6 +3395,14 @@
2555
3395
  "description": "Public Ropav color token for color.red.5.",
2556
3396
  "themeApplicability": "all-themes"
2557
3397
  },
3398
+ {
3399
+ "name": "--rp-color-red-5-active-contrast",
3400
+ "sourcePath": "derived.color.red.5.active.contrast",
3401
+ "type": "color",
3402
+ "category": "color",
3403
+ "description": "Derived public Ropav color token --rp-color-red-5-active-contrast.",
3404
+ "themeApplicability": "light-and-dark"
3405
+ },
2558
3406
  {
2559
3407
  "name": "--rp-color-red-5-contrast",
2560
3408
  "sourcePath": "derived.color.red.5.contrast",
@@ -2571,6 +3419,14 @@
2571
3419
  "description": "Public Ropav color token for color.red.6.",
2572
3420
  "themeApplicability": "all-themes"
2573
3421
  },
3422
+ {
3423
+ "name": "--rp-color-red-6-active-contrast",
3424
+ "sourcePath": "derived.color.red.6.active.contrast",
3425
+ "type": "color",
3426
+ "category": "color",
3427
+ "description": "Derived public Ropav color token --rp-color-red-6-active-contrast.",
3428
+ "themeApplicability": "light-and-dark"
3429
+ },
2574
3430
  {
2575
3431
  "name": "--rp-color-red-6-contrast",
2576
3432
  "sourcePath": "derived.color.red.6.contrast",
@@ -2587,6 +3443,14 @@
2587
3443
  "description": "Public Ropav color token for color.red.7.",
2588
3444
  "themeApplicability": "all-themes"
2589
3445
  },
3446
+ {
3447
+ "name": "--rp-color-red-7-active-contrast",
3448
+ "sourcePath": "derived.color.red.7.active.contrast",
3449
+ "type": "color",
3450
+ "category": "color",
3451
+ "description": "Derived public Ropav color token --rp-color-red-7-active-contrast.",
3452
+ "themeApplicability": "light-and-dark"
3453
+ },
2590
3454
  {
2591
3455
  "name": "--rp-color-red-7-contrast",
2592
3456
  "sourcePath": "derived.color.red.7.contrast",
@@ -2603,6 +3467,14 @@
2603
3467
  "description": "Public Ropav color token for color.red.8.",
2604
3468
  "themeApplicability": "all-themes"
2605
3469
  },
3470
+ {
3471
+ "name": "--rp-color-red-8-active-contrast",
3472
+ "sourcePath": "derived.color.red.8.active.contrast",
3473
+ "type": "color",
3474
+ "category": "color",
3475
+ "description": "Derived public Ropav color token --rp-color-red-8-active-contrast.",
3476
+ "themeApplicability": "light-and-dark"
3477
+ },
2606
3478
  {
2607
3479
  "name": "--rp-color-red-8-contrast",
2608
3480
  "sourcePath": "derived.color.red.8.contrast",
@@ -2619,6 +3491,14 @@
2619
3491
  "description": "Public Ropav color token for color.red.9.",
2620
3492
  "themeApplicability": "all-themes"
2621
3493
  },
3494
+ {
3495
+ "name": "--rp-color-red-9-active-contrast",
3496
+ "sourcePath": "derived.color.red.9.active.contrast",
3497
+ "type": "color",
3498
+ "category": "color",
3499
+ "description": "Derived public Ropav color token --rp-color-red-9-active-contrast.",
3500
+ "themeApplicability": "light-and-dark"
3501
+ },
2622
3502
  {
2623
3503
  "name": "--rp-color-red-9-contrast",
2624
3504
  "sourcePath": "derived.color.red.9.contrast",
@@ -2707,6 +3587,14 @@
2707
3587
  "description": "Public Ropav color token for color.teal.0.",
2708
3588
  "themeApplicability": "all-themes"
2709
3589
  },
3590
+ {
3591
+ "name": "--rp-color-teal-0-active-contrast",
3592
+ "sourcePath": "derived.color.teal.0.active.contrast",
3593
+ "type": "color",
3594
+ "category": "color",
3595
+ "description": "Derived public Ropav color token --rp-color-teal-0-active-contrast.",
3596
+ "themeApplicability": "light-and-dark"
3597
+ },
2710
3598
  {
2711
3599
  "name": "--rp-color-teal-0-contrast",
2712
3600
  "sourcePath": "derived.color.teal.0.contrast",
@@ -2723,6 +3611,14 @@
2723
3611
  "description": "Public Ropav color token for color.teal.1.",
2724
3612
  "themeApplicability": "all-themes"
2725
3613
  },
3614
+ {
3615
+ "name": "--rp-color-teal-1-active-contrast",
3616
+ "sourcePath": "derived.color.teal.1.active.contrast",
3617
+ "type": "color",
3618
+ "category": "color",
3619
+ "description": "Derived public Ropav color token --rp-color-teal-1-active-contrast.",
3620
+ "themeApplicability": "light-and-dark"
3621
+ },
2726
3622
  {
2727
3623
  "name": "--rp-color-teal-1-contrast",
2728
3624
  "sourcePath": "derived.color.teal.1.contrast",
@@ -2739,6 +3635,14 @@
2739
3635
  "description": "Public Ropav color token for color.teal.2.",
2740
3636
  "themeApplicability": "all-themes"
2741
3637
  },
3638
+ {
3639
+ "name": "--rp-color-teal-2-active-contrast",
3640
+ "sourcePath": "derived.color.teal.2.active.contrast",
3641
+ "type": "color",
3642
+ "category": "color",
3643
+ "description": "Derived public Ropav color token --rp-color-teal-2-active-contrast.",
3644
+ "themeApplicability": "light-and-dark"
3645
+ },
2742
3646
  {
2743
3647
  "name": "--rp-color-teal-2-contrast",
2744
3648
  "sourcePath": "derived.color.teal.2.contrast",
@@ -2755,6 +3659,14 @@
2755
3659
  "description": "Public Ropav color token for color.teal.3.",
2756
3660
  "themeApplicability": "all-themes"
2757
3661
  },
3662
+ {
3663
+ "name": "--rp-color-teal-3-active-contrast",
3664
+ "sourcePath": "derived.color.teal.3.active.contrast",
3665
+ "type": "color",
3666
+ "category": "color",
3667
+ "description": "Derived public Ropav color token --rp-color-teal-3-active-contrast.",
3668
+ "themeApplicability": "light-and-dark"
3669
+ },
2758
3670
  {
2759
3671
  "name": "--rp-color-teal-3-contrast",
2760
3672
  "sourcePath": "derived.color.teal.3.contrast",
@@ -2771,6 +3683,14 @@
2771
3683
  "description": "Public Ropav color token for color.teal.4.",
2772
3684
  "themeApplicability": "all-themes"
2773
3685
  },
3686
+ {
3687
+ "name": "--rp-color-teal-4-active-contrast",
3688
+ "sourcePath": "derived.color.teal.4.active.contrast",
3689
+ "type": "color",
3690
+ "category": "color",
3691
+ "description": "Derived public Ropav color token --rp-color-teal-4-active-contrast.",
3692
+ "themeApplicability": "light-and-dark"
3693
+ },
2774
3694
  {
2775
3695
  "name": "--rp-color-teal-4-contrast",
2776
3696
  "sourcePath": "derived.color.teal.4.contrast",
@@ -2787,6 +3707,14 @@
2787
3707
  "description": "Public Ropav color token for color.teal.5.",
2788
3708
  "themeApplicability": "all-themes"
2789
3709
  },
3710
+ {
3711
+ "name": "--rp-color-teal-5-active-contrast",
3712
+ "sourcePath": "derived.color.teal.5.active.contrast",
3713
+ "type": "color",
3714
+ "category": "color",
3715
+ "description": "Derived public Ropav color token --rp-color-teal-5-active-contrast.",
3716
+ "themeApplicability": "light-and-dark"
3717
+ },
2790
3718
  {
2791
3719
  "name": "--rp-color-teal-5-contrast",
2792
3720
  "sourcePath": "derived.color.teal.5.contrast",
@@ -2803,6 +3731,14 @@
2803
3731
  "description": "Public Ropav color token for color.teal.6.",
2804
3732
  "themeApplicability": "all-themes"
2805
3733
  },
3734
+ {
3735
+ "name": "--rp-color-teal-6-active-contrast",
3736
+ "sourcePath": "derived.color.teal.6.active.contrast",
3737
+ "type": "color",
3738
+ "category": "color",
3739
+ "description": "Derived public Ropav color token --rp-color-teal-6-active-contrast.",
3740
+ "themeApplicability": "light-and-dark"
3741
+ },
2806
3742
  {
2807
3743
  "name": "--rp-color-teal-6-contrast",
2808
3744
  "sourcePath": "derived.color.teal.6.contrast",
@@ -2819,6 +3755,14 @@
2819
3755
  "description": "Public Ropav color token for color.teal.7.",
2820
3756
  "themeApplicability": "all-themes"
2821
3757
  },
3758
+ {
3759
+ "name": "--rp-color-teal-7-active-contrast",
3760
+ "sourcePath": "derived.color.teal.7.active.contrast",
3761
+ "type": "color",
3762
+ "category": "color",
3763
+ "description": "Derived public Ropav color token --rp-color-teal-7-active-contrast.",
3764
+ "themeApplicability": "light-and-dark"
3765
+ },
2822
3766
  {
2823
3767
  "name": "--rp-color-teal-7-contrast",
2824
3768
  "sourcePath": "derived.color.teal.7.contrast",
@@ -2835,6 +3779,14 @@
2835
3779
  "description": "Public Ropav color token for color.teal.8.",
2836
3780
  "themeApplicability": "all-themes"
2837
3781
  },
3782
+ {
3783
+ "name": "--rp-color-teal-8-active-contrast",
3784
+ "sourcePath": "derived.color.teal.8.active.contrast",
3785
+ "type": "color",
3786
+ "category": "color",
3787
+ "description": "Derived public Ropav color token --rp-color-teal-8-active-contrast.",
3788
+ "themeApplicability": "light-and-dark"
3789
+ },
2838
3790
  {
2839
3791
  "name": "--rp-color-teal-8-contrast",
2840
3792
  "sourcePath": "derived.color.teal.8.contrast",
@@ -2851,6 +3803,14 @@
2851
3803
  "description": "Public Ropav color token for color.teal.9.",
2852
3804
  "themeApplicability": "all-themes"
2853
3805
  },
3806
+ {
3807
+ "name": "--rp-color-teal-9-active-contrast",
3808
+ "sourcePath": "derived.color.teal.9.active.contrast",
3809
+ "type": "color",
3810
+ "category": "color",
3811
+ "description": "Derived public Ropav color token --rp-color-teal-9-active-contrast.",
3812
+ "themeApplicability": "light-and-dark"
3813
+ },
2854
3814
  {
2855
3815
  "name": "--rp-color-teal-9-contrast",
2856
3816
  "sourcePath": "derived.color.teal.9.contrast",
@@ -2939,6 +3899,14 @@
2939
3899
  "description": "Public Ropav color token for color.violet.0.",
2940
3900
  "themeApplicability": "all-themes"
2941
3901
  },
3902
+ {
3903
+ "name": "--rp-color-violet-0-active-contrast",
3904
+ "sourcePath": "derived.color.violet.0.active.contrast",
3905
+ "type": "color",
3906
+ "category": "color",
3907
+ "description": "Derived public Ropav color token --rp-color-violet-0-active-contrast.",
3908
+ "themeApplicability": "light-and-dark"
3909
+ },
2942
3910
  {
2943
3911
  "name": "--rp-color-violet-0-contrast",
2944
3912
  "sourcePath": "derived.color.violet.0.contrast",
@@ -2955,6 +3923,14 @@
2955
3923
  "description": "Public Ropav color token for color.violet.1.",
2956
3924
  "themeApplicability": "all-themes"
2957
3925
  },
3926
+ {
3927
+ "name": "--rp-color-violet-1-active-contrast",
3928
+ "sourcePath": "derived.color.violet.1.active.contrast",
3929
+ "type": "color",
3930
+ "category": "color",
3931
+ "description": "Derived public Ropav color token --rp-color-violet-1-active-contrast.",
3932
+ "themeApplicability": "light-and-dark"
3933
+ },
2958
3934
  {
2959
3935
  "name": "--rp-color-violet-1-contrast",
2960
3936
  "sourcePath": "derived.color.violet.1.contrast",
@@ -2971,6 +3947,14 @@
2971
3947
  "description": "Public Ropav color token for color.violet.2.",
2972
3948
  "themeApplicability": "all-themes"
2973
3949
  },
3950
+ {
3951
+ "name": "--rp-color-violet-2-active-contrast",
3952
+ "sourcePath": "derived.color.violet.2.active.contrast",
3953
+ "type": "color",
3954
+ "category": "color",
3955
+ "description": "Derived public Ropav color token --rp-color-violet-2-active-contrast.",
3956
+ "themeApplicability": "light-and-dark"
3957
+ },
2974
3958
  {
2975
3959
  "name": "--rp-color-violet-2-contrast",
2976
3960
  "sourcePath": "derived.color.violet.2.contrast",
@@ -2987,6 +3971,14 @@
2987
3971
  "description": "Public Ropav color token for color.violet.3.",
2988
3972
  "themeApplicability": "all-themes"
2989
3973
  },
3974
+ {
3975
+ "name": "--rp-color-violet-3-active-contrast",
3976
+ "sourcePath": "derived.color.violet.3.active.contrast",
3977
+ "type": "color",
3978
+ "category": "color",
3979
+ "description": "Derived public Ropav color token --rp-color-violet-3-active-contrast.",
3980
+ "themeApplicability": "light-and-dark"
3981
+ },
2990
3982
  {
2991
3983
  "name": "--rp-color-violet-3-contrast",
2992
3984
  "sourcePath": "derived.color.violet.3.contrast",
@@ -3003,6 +3995,14 @@
3003
3995
  "description": "Public Ropav color token for color.violet.4.",
3004
3996
  "themeApplicability": "all-themes"
3005
3997
  },
3998
+ {
3999
+ "name": "--rp-color-violet-4-active-contrast",
4000
+ "sourcePath": "derived.color.violet.4.active.contrast",
4001
+ "type": "color",
4002
+ "category": "color",
4003
+ "description": "Derived public Ropav color token --rp-color-violet-4-active-contrast.",
4004
+ "themeApplicability": "light-and-dark"
4005
+ },
3006
4006
  {
3007
4007
  "name": "--rp-color-violet-4-contrast",
3008
4008
  "sourcePath": "derived.color.violet.4.contrast",
@@ -3019,6 +4019,14 @@
3019
4019
  "description": "Public Ropav color token for color.violet.5.",
3020
4020
  "themeApplicability": "all-themes"
3021
4021
  },
4022
+ {
4023
+ "name": "--rp-color-violet-5-active-contrast",
4024
+ "sourcePath": "derived.color.violet.5.active.contrast",
4025
+ "type": "color",
4026
+ "category": "color",
4027
+ "description": "Derived public Ropav color token --rp-color-violet-5-active-contrast.",
4028
+ "themeApplicability": "light-and-dark"
4029
+ },
3022
4030
  {
3023
4031
  "name": "--rp-color-violet-5-contrast",
3024
4032
  "sourcePath": "derived.color.violet.5.contrast",
@@ -3035,6 +4043,14 @@
3035
4043
  "description": "Public Ropav color token for color.violet.6.",
3036
4044
  "themeApplicability": "all-themes"
3037
4045
  },
4046
+ {
4047
+ "name": "--rp-color-violet-6-active-contrast",
4048
+ "sourcePath": "derived.color.violet.6.active.contrast",
4049
+ "type": "color",
4050
+ "category": "color",
4051
+ "description": "Derived public Ropav color token --rp-color-violet-6-active-contrast.",
4052
+ "themeApplicability": "light-and-dark"
4053
+ },
3038
4054
  {
3039
4055
  "name": "--rp-color-violet-6-contrast",
3040
4056
  "sourcePath": "derived.color.violet.6.contrast",
@@ -3051,6 +4067,14 @@
3051
4067
  "description": "Public Ropav color token for color.violet.7.",
3052
4068
  "themeApplicability": "all-themes"
3053
4069
  },
4070
+ {
4071
+ "name": "--rp-color-violet-7-active-contrast",
4072
+ "sourcePath": "derived.color.violet.7.active.contrast",
4073
+ "type": "color",
4074
+ "category": "color",
4075
+ "description": "Derived public Ropav color token --rp-color-violet-7-active-contrast.",
4076
+ "themeApplicability": "light-and-dark"
4077
+ },
3054
4078
  {
3055
4079
  "name": "--rp-color-violet-7-contrast",
3056
4080
  "sourcePath": "derived.color.violet.7.contrast",
@@ -3067,6 +4091,14 @@
3067
4091
  "description": "Public Ropav color token for color.violet.8.",
3068
4092
  "themeApplicability": "all-themes"
3069
4093
  },
4094
+ {
4095
+ "name": "--rp-color-violet-8-active-contrast",
4096
+ "sourcePath": "derived.color.violet.8.active.contrast",
4097
+ "type": "color",
4098
+ "category": "color",
4099
+ "description": "Derived public Ropav color token --rp-color-violet-8-active-contrast.",
4100
+ "themeApplicability": "light-and-dark"
4101
+ },
3070
4102
  {
3071
4103
  "name": "--rp-color-violet-8-contrast",
3072
4104
  "sourcePath": "derived.color.violet.8.contrast",
@@ -3083,6 +4115,14 @@
3083
4115
  "description": "Public Ropav color token for color.violet.9.",
3084
4116
  "themeApplicability": "all-themes"
3085
4117
  },
4118
+ {
4119
+ "name": "--rp-color-violet-9-active-contrast",
4120
+ "sourcePath": "derived.color.violet.9.active.contrast",
4121
+ "type": "color",
4122
+ "category": "color",
4123
+ "description": "Derived public Ropav color token --rp-color-violet-9-active-contrast.",
4124
+ "themeApplicability": "light-and-dark"
4125
+ },
3086
4126
  {
3087
4127
  "name": "--rp-color-violet-9-contrast",
3088
4128
  "sourcePath": "derived.color.violet.9.contrast",
@@ -3171,6 +4211,14 @@
3171
4211
  "description": "Public Ropav color token for color.yellow.0.",
3172
4212
  "themeApplicability": "all-themes"
3173
4213
  },
4214
+ {
4215
+ "name": "--rp-color-yellow-0-active-contrast",
4216
+ "sourcePath": "derived.color.yellow.0.active.contrast",
4217
+ "type": "color",
4218
+ "category": "color",
4219
+ "description": "Derived public Ropav color token --rp-color-yellow-0-active-contrast.",
4220
+ "themeApplicability": "light-and-dark"
4221
+ },
3174
4222
  {
3175
4223
  "name": "--rp-color-yellow-0-contrast",
3176
4224
  "sourcePath": "derived.color.yellow.0.contrast",
@@ -3187,6 +4235,14 @@
3187
4235
  "description": "Public Ropav color token for color.yellow.1.",
3188
4236
  "themeApplicability": "all-themes"
3189
4237
  },
4238
+ {
4239
+ "name": "--rp-color-yellow-1-active-contrast",
4240
+ "sourcePath": "derived.color.yellow.1.active.contrast",
4241
+ "type": "color",
4242
+ "category": "color",
4243
+ "description": "Derived public Ropav color token --rp-color-yellow-1-active-contrast.",
4244
+ "themeApplicability": "light-and-dark"
4245
+ },
3190
4246
  {
3191
4247
  "name": "--rp-color-yellow-1-contrast",
3192
4248
  "sourcePath": "derived.color.yellow.1.contrast",
@@ -3203,6 +4259,14 @@
3203
4259
  "description": "Public Ropav color token for color.yellow.2.",
3204
4260
  "themeApplicability": "all-themes"
3205
4261
  },
4262
+ {
4263
+ "name": "--rp-color-yellow-2-active-contrast",
4264
+ "sourcePath": "derived.color.yellow.2.active.contrast",
4265
+ "type": "color",
4266
+ "category": "color",
4267
+ "description": "Derived public Ropav color token --rp-color-yellow-2-active-contrast.",
4268
+ "themeApplicability": "light-and-dark"
4269
+ },
3206
4270
  {
3207
4271
  "name": "--rp-color-yellow-2-contrast",
3208
4272
  "sourcePath": "derived.color.yellow.2.contrast",
@@ -3219,6 +4283,14 @@
3219
4283
  "description": "Public Ropav color token for color.yellow.3.",
3220
4284
  "themeApplicability": "all-themes"
3221
4285
  },
4286
+ {
4287
+ "name": "--rp-color-yellow-3-active-contrast",
4288
+ "sourcePath": "derived.color.yellow.3.active.contrast",
4289
+ "type": "color",
4290
+ "category": "color",
4291
+ "description": "Derived public Ropav color token --rp-color-yellow-3-active-contrast.",
4292
+ "themeApplicability": "light-and-dark"
4293
+ },
3222
4294
  {
3223
4295
  "name": "--rp-color-yellow-3-contrast",
3224
4296
  "sourcePath": "derived.color.yellow.3.contrast",
@@ -3235,6 +4307,14 @@
3235
4307
  "description": "Public Ropav color token for color.yellow.4.",
3236
4308
  "themeApplicability": "all-themes"
3237
4309
  },
4310
+ {
4311
+ "name": "--rp-color-yellow-4-active-contrast",
4312
+ "sourcePath": "derived.color.yellow.4.active.contrast",
4313
+ "type": "color",
4314
+ "category": "color",
4315
+ "description": "Derived public Ropav color token --rp-color-yellow-4-active-contrast.",
4316
+ "themeApplicability": "light-and-dark"
4317
+ },
3238
4318
  {
3239
4319
  "name": "--rp-color-yellow-4-contrast",
3240
4320
  "sourcePath": "derived.color.yellow.4.contrast",
@@ -3251,6 +4331,14 @@
3251
4331
  "description": "Public Ropav color token for color.yellow.5.",
3252
4332
  "themeApplicability": "all-themes"
3253
4333
  },
4334
+ {
4335
+ "name": "--rp-color-yellow-5-active-contrast",
4336
+ "sourcePath": "derived.color.yellow.5.active.contrast",
4337
+ "type": "color",
4338
+ "category": "color",
4339
+ "description": "Derived public Ropav color token --rp-color-yellow-5-active-contrast.",
4340
+ "themeApplicability": "light-and-dark"
4341
+ },
3254
4342
  {
3255
4343
  "name": "--rp-color-yellow-5-contrast",
3256
4344
  "sourcePath": "derived.color.yellow.5.contrast",
@@ -3267,6 +4355,14 @@
3267
4355
  "description": "Public Ropav color token for color.yellow.6.",
3268
4356
  "themeApplicability": "all-themes"
3269
4357
  },
4358
+ {
4359
+ "name": "--rp-color-yellow-6-active-contrast",
4360
+ "sourcePath": "derived.color.yellow.6.active.contrast",
4361
+ "type": "color",
4362
+ "category": "color",
4363
+ "description": "Derived public Ropav color token --rp-color-yellow-6-active-contrast.",
4364
+ "themeApplicability": "light-and-dark"
4365
+ },
3270
4366
  {
3271
4367
  "name": "--rp-color-yellow-6-contrast",
3272
4368
  "sourcePath": "derived.color.yellow.6.contrast",
@@ -3283,6 +4379,14 @@
3283
4379
  "description": "Public Ropav color token for color.yellow.7.",
3284
4380
  "themeApplicability": "all-themes"
3285
4381
  },
4382
+ {
4383
+ "name": "--rp-color-yellow-7-active-contrast",
4384
+ "sourcePath": "derived.color.yellow.7.active.contrast",
4385
+ "type": "color",
4386
+ "category": "color",
4387
+ "description": "Derived public Ropav color token --rp-color-yellow-7-active-contrast.",
4388
+ "themeApplicability": "light-and-dark"
4389
+ },
3286
4390
  {
3287
4391
  "name": "--rp-color-yellow-7-contrast",
3288
4392
  "sourcePath": "derived.color.yellow.7.contrast",
@@ -3299,6 +4403,14 @@
3299
4403
  "description": "Public Ropav color token for color.yellow.8.",
3300
4404
  "themeApplicability": "all-themes"
3301
4405
  },
4406
+ {
4407
+ "name": "--rp-color-yellow-8-active-contrast",
4408
+ "sourcePath": "derived.color.yellow.8.active.contrast",
4409
+ "type": "color",
4410
+ "category": "color",
4411
+ "description": "Derived public Ropav color token --rp-color-yellow-8-active-contrast.",
4412
+ "themeApplicability": "light-and-dark"
4413
+ },
3302
4414
  {
3303
4415
  "name": "--rp-color-yellow-8-contrast",
3304
4416
  "sourcePath": "derived.color.yellow.8.contrast",
@@ -3315,6 +4427,14 @@
3315
4427
  "description": "Public Ropav color token for color.yellow.9.",
3316
4428
  "themeApplicability": "all-themes"
3317
4429
  },
4430
+ {
4431
+ "name": "--rp-color-yellow-9-active-contrast",
4432
+ "sourcePath": "derived.color.yellow.9.active.contrast",
4433
+ "type": "color",
4434
+ "category": "color",
4435
+ "description": "Derived public Ropav color token --rp-color-yellow-9-active-contrast.",
4436
+ "themeApplicability": "light-and-dark"
4437
+ },
3318
4438
  {
3319
4439
  "name": "--rp-color-yellow-9-contrast",
3320
4440
  "sourcePath": "derived.color.yellow.9.contrast",