@ztwoint/z-ui 0.1.131 → 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.
- package/dist/css/config/colors/backgrounds.css +32 -0
- package/dist/css/config/colors/components/avatar.css +53 -0
- package/dist/css/config/colors/components/badge.css +137 -0
- package/dist/css/config/colors/components/checkbox.css +7 -0
- package/dist/css/config/colors/components/featured-icon.css +80 -0
- package/dist/css/config/colors/components/progress-bar.css +7 -0
- package/dist/css/config/colors/components/radio-button.css +7 -0
- package/dist/css/config/colors/components/scroll-overlay.css +17 -0
- package/dist/css/config/colors/components/tab.css +59 -0
- package/dist/css/config/colors/components/toggle-switch.css +3 -0
- package/dist/css/config/colors/components/toggle.css +25 -0
- package/dist/css/config/colors/icons.css +81 -0
- package/dist/css/config/colors/overlay.css +3 -0
- package/dist/css/config/colors/shape.css +163 -0
- package/dist/css/config/colors/stroke.css +79 -0
- package/dist/css/config/colors/surfaces.css +199 -0
- package/dist/css/config/colors/text.css +160 -0
- package/dist/css/config/config-deprecated.css +39 -0
- package/dist/css/config/config.css +1 -2
- package/dist/css/styles/tailwind.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/* neutral */
|
|
2
|
+
@utility bg-neutral-default {
|
|
3
|
+
background-color: var(--color-background-neutral-default);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@utility bg-neutral-on-top {
|
|
7
|
+
background-color: var(--color-background-neutral-on-top);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@utility bg-neutral-light {
|
|
11
|
+
background-color: var(--color-background-neutral-light);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@utility bg-neutral-high {
|
|
15
|
+
background-color: var(--color-background-neutral-high);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@utility bg-neutral-medium {
|
|
19
|
+
background-color: var(--color-background-neutral-medium);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@utility bg-neutral-inverted-elevated {
|
|
23
|
+
background-color: var(--color-surface-inverted-default);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@utility bg-neutral-inverted-attention {
|
|
27
|
+
background-color: var(--color-surface-inverted-hover);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@utility bg-neutral-inverted-brand {
|
|
31
|
+
background-color: var(--color-surface-accent-default);
|
|
32
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/* blue */
|
|
2
|
+
.c-avatar-blue-surface {
|
|
3
|
+
background-color: var(--alert-surface-accent);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.c-avatar-blue-name {
|
|
7
|
+
color: var(--color-text-brand-primary);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* red */
|
|
11
|
+
.c-avatar-red-surface {
|
|
12
|
+
background-color: var(--alert-surface-danger);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.c-avatar-red-name {
|
|
16
|
+
color: var(--color-text-danger-primary);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* yellow */
|
|
20
|
+
.c-avatar-yellow-surface {
|
|
21
|
+
background-color: var(--alert-surface-warning);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.c-avatar-yellow-name {
|
|
25
|
+
color: var(--color-text-warning-primary);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/* green */
|
|
29
|
+
.c-avatar-green-surface {
|
|
30
|
+
background-color: var(--alert-surface-success);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.c-avatar-green-name {
|
|
34
|
+
color: var(--color-text-success-primary);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* purple */
|
|
38
|
+
.c-avatar-purple-surface {
|
|
39
|
+
background-color: var(--color-surface-purple-default);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.c-avatar-purple-name {
|
|
43
|
+
color: var(--color-text-purple-primary);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* sky */
|
|
47
|
+
.c-avatar-sky-surface {
|
|
48
|
+
background-color: var(--color-surface-accent-default);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.c-avatar-sky-name {
|
|
52
|
+
color: var(--color-text-brand-primary);
|
|
53
|
+
}
|
|
@@ -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,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,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,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,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
|
+
}
|