@ztwoint/z-ui 0.1.130 → 0.1.132

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 (54) hide show
  1. package/dist/components/checkbox-filter/checkbox-filter-popover-field.d.ts +8 -0
  2. package/dist/components/checkbox-filter/checkbox-filter-popover-field.hook.d.ts +11 -0
  3. package/dist/components/checkbox-filter/checkbox-filter-popover-field.hook.js +23 -0
  4. package/dist/components/checkbox-filter/checkbox-filter-popover-field.js +44 -0
  5. package/dist/components/checkbox-filter/checkbox-filter.d.ts +2 -0
  6. package/dist/components/checkbox-filter/checkbox-filter.hook.d.ts +11 -0
  7. package/dist/components/checkbox-filter/checkbox-filter.hook.js +31 -0
  8. package/dist/components/checkbox-filter/checkbox-filter.js +64 -0
  9. package/dist/components/checkbox-filter/checkbox-filter.type.d.ts +2 -0
  10. package/dist/components/checkbox-filter/index.d.ts +7 -0
  11. package/dist/components/checkbox-filter/index.js +7 -0
  12. package/dist/components/primitives/popover-compact/index.d.ts +2 -0
  13. package/dist/components/primitives/popover-compact/popover-compact.d.ts +12 -0
  14. package/dist/components/primitives/popover-compact/popover-compact.js +30 -0
  15. package/dist/components/primitives/table-card/table-card.js +4 -3
  16. package/dist/components/table/components/cell/avatar-cell.js +4 -3
  17. package/dist/components/table/table-provider.js +2 -1
  18. package/dist/components/table-filter/filters/index.d.ts +0 -1
  19. package/dist/components/table-filter/table-filter-button.js +12 -12
  20. package/dist/components/table-filter/table-filter-column-button.js +6 -6
  21. package/dist/css/config/colors/backgrounds.css +32 -0
  22. package/dist/css/config/colors/components/avatar.css +53 -0
  23. package/dist/css/config/colors/components/badge.css +137 -0
  24. package/dist/css/config/colors/components/checkbox.css +7 -0
  25. package/dist/css/config/colors/components/featured-icon.css +80 -0
  26. package/dist/css/config/colors/components/progress-bar.css +7 -0
  27. package/dist/css/config/colors/components/radio-button.css +7 -0
  28. package/dist/css/config/colors/components/scroll-overlay.css +17 -0
  29. package/dist/css/config/colors/components/tab.css +59 -0
  30. package/dist/css/config/colors/components/toggle-switch.css +3 -0
  31. package/dist/css/config/colors/components/toggle.css +25 -0
  32. package/dist/css/config/colors/icons.css +81 -0
  33. package/dist/css/config/colors/overlay.css +3 -0
  34. package/dist/css/config/colors/shape.css +163 -0
  35. package/dist/css/config/colors/stroke.css +79 -0
  36. package/dist/css/config/colors/surfaces.css +199 -0
  37. package/dist/css/config/colors/text.css +160 -0
  38. package/dist/css/config/config-deprecated.css +39 -0
  39. package/dist/css/config/config.css +1 -2
  40. package/dist/css/styles/tailwind.css +1 -1
  41. package/dist/index.d.ts +2 -0
  42. package/dist/index.js +319 -315
  43. package/dist/types/components/checkbox-filter/checkbox-filter-popover-field.d.ts +8 -0
  44. package/dist/types/components/checkbox-filter/checkbox-filter-popover-field.hook.d.ts +11 -0
  45. package/dist/types/components/checkbox-filter/checkbox-filter.d.ts +2 -0
  46. package/dist/types/components/checkbox-filter/checkbox-filter.hook.d.ts +11 -0
  47. package/dist/types/components/checkbox-filter/checkbox-filter.type.d.ts +2 -0
  48. package/dist/types/components/checkbox-filter/index.d.ts +7 -0
  49. package/dist/types/components/primitives/popover-compact/index.d.ts +2 -0
  50. package/dist/types/components/primitives/popover-compact/popover-compact.d.ts +12 -0
  51. package/dist/types/components/table-filter/filters/index.d.ts +0 -1
  52. package/dist/types/index.d.ts +2 -0
  53. package/package.json +1 -1
  54. package/dist/components/table-filter/filters/checkbox.js +0 -70
@@ -0,0 +1,137 @@
1
+ /* FILLED (background-color) */
2
+ .c-badge-gray {
3
+ background-color: var(--color-surface-neutral-pressed);
4
+ }
5
+ .c-badge-accent {
6
+ background-color: var(--color-surface-accent-default);
7
+ }
8
+ .c-badge-danger {
9
+ background-color: var(--color-surface-danger-default);
10
+ }
11
+ .c-badge-success {
12
+ background-color: var(--color-surface-success-default);
13
+ }
14
+ .c-badge-warning {
15
+ background-color: var(--color-surface-warning-default);
16
+ }
17
+ .c-badge-purple {
18
+ background-color: var(--color-surface-purple-default);
19
+ }
20
+ .c-badge-sky {
21
+ background-color: var(--color-surface-accent-default);
22
+ }
23
+
24
+ /* LIGHT (background-color) */
25
+ .c-badge-gray-light {
26
+ background-color: var(--color-surface-neutral-hover);
27
+ }
28
+ .c-badge-accent-light {
29
+ background-color: var(--alert-surface-accent);
30
+ }
31
+ .c-badge-danger-light {
32
+ background-color: var(--alert-surface-danger);
33
+ }
34
+ .c-badge-success-light {
35
+ background-color: var(--alert-surface-success);
36
+ }
37
+ .c-badge-warning-light {
38
+ background-color: var(--alert-surface-warning);
39
+ }
40
+ .c-badge-purple-light {
41
+ background-color: var(--color-surface-inverted-default);
42
+ }
43
+ .c-badge-sky-light {
44
+ background-color: var(--color-surface-inverted-default);
45
+ }
46
+
47
+ /* STROKE (border-color) */
48
+ .c-badge-stroke-gray {
49
+ border-color: var(--color-stroke-solid-medium);
50
+ }
51
+ .c-badge-stroke-accent {
52
+ border-color: var(--alert-stroke-accent);
53
+ }
54
+ .c-badge-stroke-danger {
55
+ border-color: var(--alert-stroke-danger);
56
+ }
57
+ .c-badge-stroke-success {
58
+ border-color: var(--alert-stroke-success);
59
+ }
60
+ .c-badge-stroke-warning {
61
+ border-color: var(--alert-stroke-warning);
62
+ }
63
+ .c-badge-stroke-purple {
64
+ border-color: var(--color-stroke-solid-medium);
65
+ }
66
+ .c-badge-stroke-sky {
67
+ border-color: var(--color-stroke-solid-medium);
68
+ }
69
+
70
+ /* TEXT (color) */
71
+ .c-badge-text-gray {
72
+ color: var(--color-text-neutral-secondary);
73
+ }
74
+ .c-badge-text-accent {
75
+ color: var(--color-text-brand-secondary);
76
+ }
77
+ .c-badge-text-danger {
78
+ color: var(--color-text-danger-secondary);
79
+ }
80
+ .c-badge-text-success {
81
+ color: var(--color-text-success-secondary);
82
+ }
83
+ .c-badge-text-warning {
84
+ color: var(--color-text-warning-secondary);
85
+ }
86
+ .c-badge-text-purple {
87
+ color: var(--color-text-purple-secondary);
88
+ }
89
+ .c-badge-text-sky {
90
+ color: var(--color-text-brand-secondary);
91
+ }
92
+
93
+ /* SHAPE (fill) */
94
+ .c-badge-shape-fill-gray {
95
+ fill: var(--color-text-neutral-secondary);
96
+ }
97
+ .c-badge-shape-fill-accent {
98
+ fill: var(--color-text-brand-secondary);
99
+ }
100
+ .c-badge-shape-fill-danger {
101
+ fill: var(--color-text-danger-secondary);
102
+ }
103
+ .c-badge-shape-fill-success {
104
+ fill: var(--color-text-success-secondary);
105
+ }
106
+ .c-badge-shape-fill-warning {
107
+ fill: var(--color-text-warning-secondary);
108
+ }
109
+ .c-badge-shape-fill-purple {
110
+ fill: var(--color-text-purple-secondary);
111
+ }
112
+ .c-badge-shape-fill-sky {
113
+ fill: var(--color-text-brand-secondary);
114
+ }
115
+
116
+ /* SHAPE (background-color) */
117
+ .c-badge-shape-bg-gray {
118
+ background-color: var(--color-surface-neutral-pressed);
119
+ }
120
+ .c-badge-shape-bg-accent {
121
+ background-color: var(--color-surface-accent-default);
122
+ }
123
+ .c-badge-shape-bg-danger {
124
+ background-color: var(--color-surface-danger-default);
125
+ }
126
+ .c-badge-shape-bg-success {
127
+ background-color: var(--color-surface-success-default);
128
+ }
129
+ .c-badge-shape-bg-warning {
130
+ background-color: var(--color-surface-warning-default);
131
+ }
132
+ .c-badge-shape-bg-purple {
133
+ background-color: var(--color-surface-purple-default);
134
+ }
135
+ .c-badge-shape-bg-sky {
136
+ background-color: var(--color-surface-accent-default);
137
+ }
@@ -0,0 +1,7 @@
1
+ .c-checkbox {
2
+ border-color: var(--color-stroke-solid-high);
3
+ }
4
+
5
+ .c-checkbox-hover {
6
+ border-color: var(--color-stroke-solid-hover);
7
+ }
@@ -0,0 +1,80 @@
1
+ /* blue */
2
+ .c-featured-icon-surface {
3
+ fill: var(--alert-surface-accent);
4
+ }
5
+
6
+ .c-featured-icon-icon {
7
+ fill: var(--color-text-brand-primary);
8
+ }
9
+
10
+ .c-featured-icon-bg-icon {
11
+ background-color: var(--color-surface-accent-default);
12
+ }
13
+
14
+ /* red */
15
+ .c-featured-icon-surface {
16
+ fill: var(--alert-surface-danger);
17
+ }
18
+
19
+ .c-featured-icon-icon {
20
+ fill: var(--color-text-danger-primary);
21
+ }
22
+
23
+ .c-featured-icon-bg-icon {
24
+ background-color: var(--color-surface-danger-default);
25
+ }
26
+
27
+ /* yellow */
28
+ .c-featured-icon-surface {
29
+ fill: var(--alert-surface-warning);
30
+ }
31
+
32
+ .c-featured-icon-icon {
33
+ fill: var(--color-text-warning-primary);
34
+ }
35
+
36
+ .c-featured-icon-bg-icon {
37
+ background-color: var(--color-surface-warning-default);
38
+ }
39
+
40
+ /* green */
41
+ .c-featured-icon-surface {
42
+ fill: var(--alert-surface-success);
43
+ }
44
+
45
+ .c-featured-icon-icon {
46
+ fill: var(--color-text-success-primary);
47
+ }
48
+
49
+ .c-featured-icon-bg-icon {
50
+ background-color: var(--color-surface-success-default);
51
+ }
52
+
53
+ /* purple */
54
+ .c-featured-icon-surface {
55
+ fill: var(--color-surface-purple-default);
56
+ }
57
+
58
+ .c-featured-icon-icon {
59
+ fill: var(--color-text-purple-primary);
60
+ &:icon {
61
+ padding: 40px;
62
+ }
63
+ }
64
+
65
+ .c-featured-icon-bg-icon {
66
+ background-color: var(--color-surface-purple-default);
67
+ }
68
+
69
+ /* sky */
70
+ .c-featured-icon-surface {
71
+ fill: var(--color-surface-accent-default);
72
+ }
73
+
74
+ .c-featured-icon-icon {
75
+ fill: var(--color-text-brand-primary);
76
+ }
77
+
78
+ .c-featured-icon-bg-icon {
79
+ background-color: var(--color-surface-accent-default);
80
+ }
@@ -0,0 +1,7 @@
1
+ .c-progress-bar {
2
+ background-color: var(--color-surface-neutral-pressed);
3
+ }
4
+
5
+ .c-progress-bar-active {
6
+ background-color: var(--color-surface-accent-default);
7
+ }
@@ -0,0 +1,7 @@
1
+ .c-radio-button {
2
+ border-color: var(--color-stroke-solid-high);
3
+ }
4
+
5
+ .c-radio-button-hover {
6
+ border-color: var(--color-stroke-solid-hover);
7
+ }
@@ -0,0 +1,17 @@
1
+ /* white */
2
+ .c-scroll-overlay-white {
3
+ background-color: var(--color-background-neutral-default);
4
+ }
5
+
6
+ .c-scroll-overlay-white-transparent {
7
+ background-color: var(--color-alpha-two-0);
8
+ }
9
+
10
+ /* secondary */
11
+ .c-scroll-overlay-secondary {
12
+ background-color: var(--color-background-neutral-light);
13
+ }
14
+
15
+ .c-scroll-overlay-secondary-transparent {
16
+ background-color: var(--color-alpha-two-0);
17
+ }
@@ -0,0 +1,59 @@
1
+ /* Tab component specific styles */
2
+
3
+ /* Base underline for all tabs */
4
+ [data-slot='tabs-trigger'] {
5
+ position: relative;
6
+ }
7
+
8
+ [data-slot='tabs-trigger']::after {
9
+ content: '';
10
+ position: absolute;
11
+ left: 50%;
12
+ bottom: 0;
13
+ transform: translateX(-50%);
14
+ width: calc(100% - 24px);
15
+ border-bottom: 0.5px solid var(--color-stroke-solid-attention);
16
+ opacity: 0;
17
+ transition: opacity 0.2s ease;
18
+ }
19
+
20
+ /* Active state for underline */
21
+ [data-slot='tabs-trigger'][data-state='active']::after {
22
+ opacity: 1;
23
+ }
24
+
25
+ /* Active state for text */
26
+ [data-slot='tabs-trigger'][data-state='active'] .tab-label {
27
+ color: var(--color-text-neutral-primary) !important;
28
+ }
29
+
30
+ /* Active state for text */
31
+ [data-slot='tabs-trigger'][data-state='active'] .tab-icon {
32
+ color: var(--color-text-neutral-primary) !important;
33
+ }
34
+
35
+ /* Inactive state for text */
36
+ [data-slot='tabs-trigger']:not([data-state='active']) .tab-label {
37
+ color: var(--color-text-neutral-secondary) !important;
38
+ }
39
+
40
+ /* Inactive state for text */
41
+ [data-slot='tabs-trigger']:not([data-state='active']) .tab-icon {
42
+ color: var(--color-text-neutral-secondary) !important;
43
+ }
44
+
45
+ /* Icon size enforcement */
46
+ [data-slot='tabs-trigger'] svg {
47
+ width: 14px !important;
48
+ height: 14px !important;
49
+ }
50
+
51
+ /* Hover state for text */
52
+ [data-slot='tabs-trigger']:hover .tab-label {
53
+ color: var(--color-text-neutral-primary) !important;
54
+ }
55
+
56
+ /* Hover state for icon */
57
+ [data-slot='tabs-trigger']:hover .tab-icon {
58
+ color: var(--color-text-neutral-primary) !important;
59
+ }
@@ -0,0 +1,3 @@
1
+ .c-toggle-switch-surface {
2
+ background-color: var(--color-surface-neutral-hover);
3
+ }
@@ -0,0 +1,25 @@
1
+ /* surface */
2
+ .c-toggle-surface {
3
+ background-color: var(--color-surface-neutral-pressed);
4
+ }
5
+
6
+ .c-toggle-surface-unactive-hover {
7
+ background-color: var(--color-surface-neutral-focused);
8
+ }
9
+
10
+ .c-toggle-surface-active {
11
+ background-color: var(--color-surface-accent-default);
12
+ }
13
+
14
+ .c-toggle-surface-active-hover {
15
+ background-color: var(--color-surface-accent-hover);
16
+ }
17
+
18
+ /* knob */
19
+ .c-toggle-knob {
20
+ background-color: var(--color-surface-neutral-default);
21
+ }
22
+
23
+ .c-toggle-knob-disabled {
24
+ background-color: var(--color-surface-neutral-disabled);
25
+ }
@@ -0,0 +1,81 @@
1
+ /* neutral */
2
+ @utility icon-neutral {
3
+ fill: var(--color-text-neutral-secondary);
4
+ }
5
+
6
+ @utility icon-neutral-transparent {
7
+ fill: var(--color-stroke-transparent-hover);
8
+ }
9
+
10
+ @utility icon-neutral-disabled {
11
+ fill: var(--color-text-neutral-muted);
12
+ }
13
+
14
+ @utility icon-neutral-pale {
15
+ fill: var(--color-stroke-solid-hover);
16
+ }
17
+
18
+ @utility icon-neutral-attention {
19
+ fill: var(--color-text-neutral-primary);
20
+ }
21
+
22
+ @utility icon-neutral-accent {
23
+ fill: var(--color-text-brand-secondary);
24
+ }
25
+
26
+ @utility icon-neutral-danger {
27
+ fill: var(--color-text-danger-secondary);
28
+ }
29
+
30
+ @utility icon-neutral-warning {
31
+ fill: var(--color-text-warning-secondary);
32
+ }
33
+
34
+ @utility icon-neutral-success {
35
+ fill: var(--color-text-success-secondary);
36
+ }
37
+
38
+ @utility icon-neutral-purple {
39
+ fill: var(--color-text-purple-secondary);
40
+ }
41
+
42
+ @utility icon-neutral-sky {
43
+ fill: var(--color-text-brand-secondary);
44
+ }
45
+
46
+ /* inverted */
47
+ @utility icon-inverted {
48
+ fill: var(--color-text-inverted-secondary);
49
+ }
50
+
51
+ @utility icon-inverted-disabled {
52
+ fill: var(--color-stroke-inverted-default);
53
+ }
54
+
55
+ @utility icon-inverted-attention {
56
+ fill: var(--color-text-inverted-primary);
57
+ }
58
+
59
+ @utility icon-inverted-accent {
60
+ fill: var(--color-text-brand-secondary);
61
+ }
62
+
63
+ @utility icon-inverted-danger {
64
+ fill: var(--color-text-danger-secondary);
65
+ }
66
+
67
+ @utility icon-inverted-warning {
68
+ fill: var(--color-text-warning-secondary);
69
+ }
70
+
71
+ @utility icon-inverted-success {
72
+ fill: var(--color-text-success-secondary);
73
+ }
74
+
75
+ @utility icon-inverted-purple {
76
+ fill: var(--color-text-purple-secondary);
77
+ }
78
+
79
+ @utility icon-inverted-sky {
80
+ fill: var(--color-text-brand-secondary);
81
+ }
@@ -0,0 +1,3 @@
1
+ @utility overlay {
2
+ background-color: var(--color-overlay-default);
3
+ }
@@ -0,0 +1,163 @@
1
+ /* shape: neutral */
2
+ @utility shape-neutral-default {
3
+ fill: var(--color-text-neutral-secondary);
4
+ }
5
+
6
+ @utility shape-neutral-transparent {
7
+ fill: var(--color-stroke-transparent-hover);
8
+ }
9
+
10
+ @utility shape-neutral-disabled {
11
+ fill: var(--color-text-neutral-muted);
12
+ }
13
+
14
+ @utility shape-neutral-pale {
15
+ fill: var(--color-stroke-solid-hover);
16
+ }
17
+
18
+ @utility shape-neutral-attention {
19
+ fill: var(--color-text-neutral-primary);
20
+ }
21
+
22
+ @utility shape-neutral-accent {
23
+ fill: var(--color-text-brand-secondary);
24
+ }
25
+
26
+ @utility shape-neutral-danger {
27
+ fill: var(--color-text-danger-secondary);
28
+ }
29
+
30
+ @utility shape-neutral-warning {
31
+ fill: var(--color-text-warning-secondary);
32
+ }
33
+
34
+ @utility shape-neutral-success {
35
+ fill: var(--color-text-success-secondary);
36
+ }
37
+
38
+ @utility shape-neutral-purple {
39
+ fill: var(--color-text-purple-secondary);
40
+ }
41
+
42
+ @utility shape-neutral-sky {
43
+ fill: var(--color-text-brand-secondary);
44
+ }
45
+
46
+ /* shape: inverted */
47
+ @utility shape-inverted-default {
48
+ fill: var(--color-text-inverted-secondary);
49
+ }
50
+
51
+ @utility shape-inverted-disabled {
52
+ fill: var(--color-stroke-inverted-default);
53
+ }
54
+
55
+ @utility shape-inverted-attention {
56
+ fill: var(--color-text-inverted-primary);
57
+ }
58
+
59
+ @utility shape-inverted-accent {
60
+ fill: var(--color-text-brand-secondary);
61
+ }
62
+
63
+ @utility shape-inverted-danger {
64
+ fill: var(--color-text-danger-secondary);
65
+ }
66
+
67
+ @utility shape-inverted-warning {
68
+ fill: var(--color-text-warning-secondary);
69
+ }
70
+
71
+ @utility shape-inverted-success {
72
+ fill: var(--color-text-success-secondary);
73
+ }
74
+
75
+ @utility shape-inverted-purple {
76
+ fill: var(--color-text-purple-secondary);
77
+ }
78
+
79
+ @utility shape-inverted-sky {
80
+ fill: var(--color-text-brand-secondary);
81
+ }
82
+
83
+ /* shape-bg: neutral */
84
+ @utility shape-bg-neutral-default {
85
+ background-color: var(--color-surface-neutral-pressed);
86
+ }
87
+
88
+ @utility shape-bg-neutral-transparent {
89
+ background-color: var(--color-stroke-transparent-hover);
90
+ }
91
+
92
+ @utility shape-bg-neutral-disabled {
93
+ background-color: var(--color-surface-neutral-disabled);
94
+ }
95
+
96
+ @utility shape-bg-neutral-pale {
97
+ background-color: var(--color-surface-neutral-hover);
98
+ }
99
+
100
+ @utility shape-bg-neutral-attention {
101
+ background-color: var(--color-surface-neutral-pressed);
102
+ }
103
+
104
+ @utility shape-bg-neutral-accent {
105
+ background-color: var(--color-surface-accent-default);
106
+ }
107
+
108
+ @utility shape-bg-neutral-danger {
109
+ background-color: var(--color-surface-danger-default);
110
+ }
111
+
112
+ @utility shape-bg-neutral-warning {
113
+ background-color: var(--color-surface-warning-default);
114
+ }
115
+
116
+ @utility shape-bg-neutral-success {
117
+ background-color: var(--color-surface-success-default);
118
+ }
119
+
120
+ @utility shape-bg-neutral-purple {
121
+ background-color: var(--color-surface-purple-default);
122
+ }
123
+
124
+ @utility shape-bg-neutral-sky {
125
+ background-color: var(--color-surface-accent-default);
126
+ }
127
+
128
+ /* shape-bg: inverted */
129
+ @utility shape-bg-inverted-default {
130
+ background-color: var(--color-surface-inverted-default);
131
+ }
132
+
133
+ @utility shape-bg-inverted-disabled {
134
+ background-color: var(--color-surface-inverted-disabled);
135
+ }
136
+
137
+ @utility shape-bg-inverted-attention {
138
+ background-color: var(--color-surface-inverted-pressed);
139
+ }
140
+
141
+ @utility shape-bg-inverted-accent {
142
+ background-color: var(--color-surface-accent-default);
143
+ }
144
+
145
+ @utility shape-bg-inverted-danger {
146
+ background-color: var(--color-surface-danger-default);
147
+ }
148
+
149
+ @utility shape-bg-inverted-warning {
150
+ background-color: var(--color-surface-warning-default);
151
+ }
152
+
153
+ @utility shape-bg-inverted-success {
154
+ background-color: var(--color-surface-success-default);
155
+ }
156
+
157
+ @utility shape-bg-inverted-purple {
158
+ background-color: var(--color-surface-purple-default);
159
+ }
160
+
161
+ @utility shape-bg-inverted-sky {
162
+ background-color: var(--color-surface-accent-default);
163
+ }
@@ -0,0 +1,79 @@
1
+ /* For stroke/borders across ui */
2
+ /* solid */
3
+ @utility stroke-solid-light {
4
+ border-color: var(--color-stroke-solid-light);
5
+ }
6
+
7
+ @utility stroke-solid-medium {
8
+ border-color: var(--color-stroke-solid-medium);
9
+ }
10
+
11
+ @utility stroke-solid-high {
12
+ border-color: var(--color-stroke-solid-high);
13
+ }
14
+
15
+ @utility stroke-solid-hover {
16
+ border-color: var(--color-stroke-solid-hover);
17
+ }
18
+
19
+ @utility stroke-solid-active {
20
+ border-color: var(--color-stroke-solid-active);
21
+ }
22
+
23
+ @utility stroke-solid-attention {
24
+ border-color: var(--color-stroke-solid-attention);
25
+ }
26
+
27
+ @utility stroke-solid-highlight {
28
+ border-color: var(--color-stroke-solid-highlight);
29
+ }
30
+
31
+ /* transparent */
32
+
33
+ @utility stroke-transparent-light {
34
+ border-color: var(--color-stroke-transparent-light);
35
+ }
36
+
37
+ @utility stroke-transparent-medium {
38
+ border-color: var(--color-stroke-transparent-medium);
39
+ }
40
+
41
+ @utility stroke-transparent-high {
42
+ border-color: var(--color-stroke-transparent-high);
43
+ }
44
+
45
+ @utility stroke-transparent-hover {
46
+ border-color: var(--color-stroke-transparent-hover);
47
+ }
48
+
49
+ @utility stroke-transparent-active {
50
+ border-color: var(--color-stroke-transparent-active);
51
+ }
52
+
53
+ @utility stroke-transparent-attention {
54
+ border-color: var(--color-stroke-transparent-attention);
55
+ }
56
+
57
+ @utility stroke-transparent-highlight {
58
+ border-color: var(--color-stroke-transparent-highlight);
59
+ }
60
+
61
+ @utility stroke-inverted-default {
62
+ border-color: var(--color-stroke-inverted-default);
63
+ }
64
+
65
+ @utility stroke-inverted-hover {
66
+ border-color: var(--color-stroke-inverted-hover);
67
+ }
68
+
69
+ @utility stroke-inverted-active {
70
+ border-color: var(--color-stroke-inverted-active);
71
+ }
72
+
73
+ @utility stroke-inverted-attention {
74
+ border-color: var(--color-stroke-inverted-attention);
75
+ }
76
+
77
+ @utility stroke-inverted-highlight {
78
+ border-color: var(--color-stroke-inverted-highlight);
79
+ }