@clickhouse/click-ui 0.2.0-rc.6 → 0.2.0-rc.7
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/README.md +67 -0
- package/dist/cjs/click-ui.css +3861 -0
- package/dist/cjs/components/Button/Button.css +261 -0
- package/dist/cjs/components/Button/Button.module.css.cjs +38 -0
- package/dist/cjs/components/Button/Button.module.css.cjs.map +1 -0
- package/dist/cjs/components/Button/index.cjs +42 -126
- package/dist/cjs/components/Button/index.cjs.map +1 -1
- package/dist/cjs/components/ButtonGroup/index.cjs +1 -1
- package/dist/cjs/components/ButtonGroup/index.cjs.map +1 -1
- package/dist/cjs/components/DatePicker/Common.cjs +21 -25
- package/dist/cjs/components/DatePicker/Common.cjs.map +1 -1
- package/dist/cjs/components/DatePicker/DateTimeRangePicker.cjs +23 -15
- package/dist/cjs/components/DatePicker/DateTimeRangePicker.cjs.map +1 -1
- package/dist/cjs/components/GenericMenu/index.cjs +1 -1
- package/dist/cjs/components/GenericMenu/index.cjs.map +1 -1
- package/dist/cjs/lib/cva.cjs +15 -0
- package/dist/cjs/lib/cva.cjs.map +1 -0
- package/dist/cjs/providers/ThemeProvider.cjs +4 -0
- package/dist/cjs/providers/ThemeProvider.cjs.map +1 -1
- package/dist/cjs/theme/styles/tokens-dark.css +1806 -0
- package/dist/cjs/theme/styles/tokens-light.css +1795 -0
- package/dist/cjs/theme/theme.config.json.cjs +12 -0
- package/dist/cjs/theme/theme.config.json.cjs.map +1 -0
- package/dist/cjs/theme/tokens/variables.dark.cjs +2 -4
- package/dist/cjs/theme/tokens/variables.dark.cjs.map +1 -1
- package/dist/cjs/theme/tokens/variables.light.cjs +1 -6
- package/dist/cjs/theme/tokens/variables.light.cjs.map +1 -1
- package/dist/cjs/utils/localStorage.cjs +3 -1
- package/dist/cjs/utils/localStorage.cjs.map +1 -1
- package/dist/esm/click-ui.css +3861 -0
- package/dist/esm/components/Button/Button.css +261 -0
- package/dist/esm/components/Button/Button.module.css.js +25 -0
- package/dist/esm/components/Button/Button.module.css.js.map +1 -0
- package/dist/esm/components/Button/index.js +42 -126
- package/dist/esm/components/Button/index.js.map +1 -1
- package/dist/esm/components/ButtonGroup/index.js +1 -1
- package/dist/esm/components/ButtonGroup/index.js.map +1 -1
- package/dist/esm/components/DatePicker/Common.js +21 -25
- package/dist/esm/components/DatePicker/Common.js.map +1 -1
- package/dist/esm/components/DatePicker/DateTimeRangePicker.js +23 -15
- package/dist/esm/components/DatePicker/DateTimeRangePicker.js.map +1 -1
- package/dist/esm/components/GenericMenu/index.js +1 -1
- package/dist/esm/components/GenericMenu/index.js.map +1 -1
- package/dist/esm/lib/cva.js +7 -0
- package/dist/esm/lib/cva.js.map +1 -0
- package/dist/esm/providers/ThemeProvider.js +4 -0
- package/dist/esm/providers/ThemeProvider.js.map +1 -1
- package/dist/esm/theme/styles/tokens-dark.css +1806 -0
- package/dist/esm/theme/styles/tokens-light.css +1795 -0
- package/dist/esm/theme/theme.config.json.js +7 -0
- package/dist/esm/theme/theme.config.json.js.map +1 -0
- package/dist/esm/theme/tokens/variables.dark.js +2 -4
- package/dist/esm/theme/tokens/variables.dark.js.map +1 -1
- package/dist/esm/theme/tokens/variables.light.js +1 -6
- package/dist/esm/theme/tokens/variables.light.js.map +1 -1
- package/dist/esm/utils/localStorage.js +3 -1
- package/dist/esm/utils/localStorage.js.map +1 -1
- package/dist/types/components/Button/Button.d.ts +25 -2
- package/dist/types/components/DatePicker/DateTimeRangePicker.d.ts +5 -2
- package/dist/types/components/DatePicker/index.d.ts +1 -1
- package/dist/types/lib/cva.d.ts +3 -0
- package/dist/types/theme/theme.config.json.d.ts +6 -0
- package/dist/types/theme/theme.core.d.ts +0 -7
- package/dist/types/theme/tokens/variables.dark.d.ts +0 -2
- package/dist/types/theme/tokens/variables.light.d.ts +0 -5
- package/dist/types/utils/dom.d.ts +1 -1
- package/dist/types/utils/localStorage.d.ts +1 -1
- package/package.json +25 -8
|
@@ -0,0 +1,3861 @@
|
|
|
1
|
+
.button__2ZuB7 {
|
|
2
|
+
display: flex;
|
|
3
|
+
position: relative;
|
|
4
|
+
padding: var(--click-button-basic-space-y) var(--click-button-basic-space-x);
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
flex-shrink: 0;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: var(--click-button-basic-space-gap);
|
|
10
|
+
border: 1px solid transparent;
|
|
11
|
+
border-radius: var(--click-button-radii-all);
|
|
12
|
+
background: transparent;
|
|
13
|
+
color: inherit;
|
|
14
|
+
font: var(--click-button-basic-typography-label-default);
|
|
15
|
+
white-space: nowrap;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.button_align-center__RdEYc {
|
|
20
|
+
justify-content: center;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.button_align-left__AmFEH {
|
|
24
|
+
justify-content: flex-start;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.button_fill__Ph-yl {
|
|
28
|
+
width: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.button_primary__5V6PJ {
|
|
32
|
+
border-color: var(--click-button-basic-color-primary-stroke-default);
|
|
33
|
+
background-color: var(--click-button-basic-color-primary-background-default);
|
|
34
|
+
color: var(--click-button-basic-color-primary-text-default);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.button_primary__5V6PJ:disabled {
|
|
38
|
+
border-color: var(--click-button-basic-color-primary-stroke-disabled);
|
|
39
|
+
background-color: var(--click-button-basic-color-primary-background-disabled);
|
|
40
|
+
color: var(--click-button-basic-color-primary-text-disabled);
|
|
41
|
+
font: var(--click-button-basic-typography-label-disabled);
|
|
42
|
+
cursor: not-allowed;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.button_primary__5V6PJ:hover:not(:disabled) {
|
|
46
|
+
border-color: var(--click-button-basic-color-primary-stroke-hover);
|
|
47
|
+
background-color: var(--click-button-basic-color-primary-background-hover);
|
|
48
|
+
font: var(--click-button-basic-typography-label-hover);
|
|
49
|
+
transition: var(--click-transition-default);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.button_primary__5V6PJ:focus-visible:not(:disabled) {
|
|
53
|
+
border-color: var(--click-button-basic-color-primary-stroke-active);
|
|
54
|
+
background-color: var(--click-button-basic-color-primary-background-active);
|
|
55
|
+
font: var(--click-button-basic-typography-label-active);
|
|
56
|
+
outline: 2px solid var(--click-button-basic-color-primary-stroke-active);
|
|
57
|
+
outline-offset: 2px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.button_primary__5V6PJ:active:not(:disabled),
|
|
61
|
+
.button_primary__5V6PJ:focus:not(:focus-visible, :disabled) {
|
|
62
|
+
border-color: var(--click-button-basic-color-primary-stroke-active);
|
|
63
|
+
background-color: var(--click-button-basic-color-primary-background-active);
|
|
64
|
+
font: var(--click-button-basic-typography-label-active);
|
|
65
|
+
outline: none;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.button_secondary__PXw0N {
|
|
69
|
+
border-color: var(--click-button-basic-color-secondary-stroke-default);
|
|
70
|
+
background-color: var(--click-button-basic-color-secondary-background-default);
|
|
71
|
+
color: var(--click-button-basic-color-secondary-text-default);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.button_secondary__PXw0N:disabled {
|
|
75
|
+
border-color: var(--click-button-basic-color-secondary-stroke-disabled);
|
|
76
|
+
background-color: var(--click-button-basic-color-secondary-background-disabled);
|
|
77
|
+
color: var(--click-button-basic-color-secondary-text-disabled);
|
|
78
|
+
font: var(--click-button-basic-typography-label-disabled);
|
|
79
|
+
cursor: not-allowed;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.button_secondary__PXw0N:hover:not(:disabled) {
|
|
83
|
+
border-color: var(--click-button-basic-color-secondary-stroke-hover);
|
|
84
|
+
background-color: var(--click-button-basic-color-secondary-background-hover);
|
|
85
|
+
font: var(--click-button-basic-typography-label-hover);
|
|
86
|
+
transition: var(--click-transition-default);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.button_secondary__PXw0N:focus-visible:not(:disabled) {
|
|
90
|
+
border-color: var(--click-button-basic-color-secondary-stroke-active);
|
|
91
|
+
background-color: var(--click-button-basic-color-secondary-background-active);
|
|
92
|
+
font: var(--click-button-basic-typography-label-active);
|
|
93
|
+
outline: 2px solid var(--click-button-basic-color-secondary-stroke-active);
|
|
94
|
+
outline-offset: 2px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.button_secondary__PXw0N:active:not(:disabled),
|
|
98
|
+
.button_secondary__PXw0N:focus:not(:focus-visible, :disabled) {
|
|
99
|
+
border-color: var(--click-button-basic-color-secondary-stroke-active);
|
|
100
|
+
background-color: var(--click-button-basic-color-secondary-background-active);
|
|
101
|
+
font: var(--click-button-basic-typography-label-active);
|
|
102
|
+
outline: none;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.button_empty__GZ9s7 {
|
|
106
|
+
border-color: var(--click-button-basic-color-empty-stroke-default);
|
|
107
|
+
background-color: var(--click-button-basic-color-empty-background-default);
|
|
108
|
+
color: var(--click-button-basic-color-empty-text-default);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.button_empty__GZ9s7:disabled {
|
|
112
|
+
border-color: var(--click-button-basic-color-empty-stroke-disabled);
|
|
113
|
+
background-color: var(--click-button-basic-color-empty-background-disabled);
|
|
114
|
+
color: var(--click-button-basic-color-empty-text-disabled);
|
|
115
|
+
font: var(--click-button-basic-typography-label-disabled);
|
|
116
|
+
cursor: not-allowed;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.button_empty__GZ9s7:hover:not(:disabled) {
|
|
120
|
+
border-color: var(--click-button-basic-color-empty-stroke-hover);
|
|
121
|
+
background-color: var(--click-button-basic-color-empty-background-hover);
|
|
122
|
+
font: var(--click-button-basic-typography-label-hover);
|
|
123
|
+
transition: var(--click-transition-default);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.button_empty__GZ9s7:focus-visible:not(:disabled) {
|
|
127
|
+
border-color: var(--click-button-basic-color-empty-stroke-active);
|
|
128
|
+
background-color: var(--click-button-basic-color-empty-background-active);
|
|
129
|
+
font: var(--click-button-basic-typography-label-active);
|
|
130
|
+
outline: 2px solid var(--click-button-basic-color-empty-stroke-active);
|
|
131
|
+
outline-offset: 2px;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.button_empty__GZ9s7:active:not(:disabled),
|
|
135
|
+
.button_empty__GZ9s7:focus:not(:focus-visible, :disabled) {
|
|
136
|
+
border-color: var(--click-button-basic-color-empty-stroke-active);
|
|
137
|
+
background-color: var(--click-button-basic-color-empty-background-active);
|
|
138
|
+
font: var(--click-button-basic-typography-label-active);
|
|
139
|
+
outline: none;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.button_danger__0DN8k {
|
|
143
|
+
border-color: var(--click-button-basic-color-danger-stroke-default);
|
|
144
|
+
background-color: var(--click-button-basic-color-danger-background-default);
|
|
145
|
+
color: var(--click-button-basic-color-danger-text-default);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.button_danger__0DN8k:disabled {
|
|
149
|
+
border-color: var(--click-button-basic-color-danger-stroke-disabled);
|
|
150
|
+
background-color: var(--click-button-basic-color-danger-background-disabled);
|
|
151
|
+
color: var(--click-button-basic-color-danger-text-disabled);
|
|
152
|
+
font: var(--click-button-basic-typography-label-disabled);
|
|
153
|
+
cursor: not-allowed;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.button_danger__0DN8k:hover:not(:disabled) {
|
|
157
|
+
border-color: var(--click-button-basic-color-danger-stroke-hover);
|
|
158
|
+
background-color: var(--click-button-basic-color-danger-background-hover);
|
|
159
|
+
font: var(--click-button-basic-typography-label-hover);
|
|
160
|
+
transition: var(--click-transition-default);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.button_danger__0DN8k:focus-visible:not(:disabled) {
|
|
164
|
+
border-color: var(--click-button-basic-color-danger-stroke-active);
|
|
165
|
+
background-color: var(--click-button-basic-color-danger-background-active);
|
|
166
|
+
font: var(--click-button-basic-typography-label-active);
|
|
167
|
+
outline: 2px solid var(--click-button-basic-color-danger-stroke-active);
|
|
168
|
+
outline-offset: 2px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.button_danger__0DN8k:active:not(:disabled),
|
|
172
|
+
.button_danger__0DN8k:focus:not(:focus-visible, :disabled) {
|
|
173
|
+
border-color: var(--click-button-basic-color-danger-stroke-active);
|
|
174
|
+
background-color: var(--click-button-basic-color-danger-background-active);
|
|
175
|
+
font: var(--click-button-basic-typography-label-active);
|
|
176
|
+
outline: none;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.button_loading__n2tCt {
|
|
180
|
+
cursor: not-allowed;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.button_loading__n2tCt::before {
|
|
184
|
+
content: '';
|
|
185
|
+
position: absolute;
|
|
186
|
+
inset: 0;
|
|
187
|
+
pointer-events: none;
|
|
188
|
+
animation: shimmer__8Jq1s 1.5s ease-in-out infinite;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.button_primary__5V6PJ.button_loading__n2tCt,
|
|
192
|
+
.button_secondary__PXw0N.button_loading__n2tCt,
|
|
193
|
+
.button_danger__0DN8k.button_loading__n2tCt {
|
|
194
|
+
opacity: 0.7;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.button_empty__GZ9s7.button_loading__n2tCt {
|
|
198
|
+
opacity: 0.9;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.button_loading__n2tCt > * {
|
|
202
|
+
opacity: 0.7;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
@keyframes shimmer__8Jq1s {
|
|
206
|
+
0% {
|
|
207
|
+
background-position: 100% 0;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
100% {
|
|
211
|
+
background-position: -100% 0;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.button_primary__5V6PJ.button_loading__n2tCt::before {
|
|
216
|
+
background: var(--click-button-basic-color-primary-background-loading);
|
|
217
|
+
background-size: 200% 100%;
|
|
218
|
+
background-repeat: no-repeat;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.button_secondary__PXw0N.button_loading__n2tCt::before {
|
|
222
|
+
background: var(--click-button-basic-color-secondary-background-loading);
|
|
223
|
+
background-size: 200% 100%;
|
|
224
|
+
background-repeat: no-repeat;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.button_empty__GZ9s7.button_loading__n2tCt::before {
|
|
228
|
+
background: var(--click-button-basic-color-empty-background-loading);
|
|
229
|
+
background-size: 200% 100%;
|
|
230
|
+
background-repeat: no-repeat;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.button_danger__0DN8k.button_loading__n2tCt::before {
|
|
234
|
+
background: var(--click-button-basic-color-danger-background-loading);
|
|
235
|
+
background-size: 200% 100%;
|
|
236
|
+
background-repeat: no-repeat;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.button__icon__e6c-f {
|
|
240
|
+
display: flex;
|
|
241
|
+
width: var(--click-button-basic-size-icon-all);
|
|
242
|
+
height: var(--click-button-basic-size-icon-all);
|
|
243
|
+
justify-content: center;
|
|
244
|
+
align-items: center;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.button__icon__e6c-f svg {
|
|
248
|
+
width: var(--click-button-basic-size-icon-all);
|
|
249
|
+
height: var(--click-button-basic-size-icon-all);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.button__label__tlatE {
|
|
253
|
+
display: inline-flex;
|
|
254
|
+
align-items: center;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
@media (prefers-reduced-motion: reduce) {
|
|
258
|
+
.button_loading__n2tCt::before {
|
|
259
|
+
animation: none;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
:root,
|
|
263
|
+
[data-cui-theme="light"] {
|
|
264
|
+
--click-accordion-sm-icon-size-height: 1rem;
|
|
265
|
+
--click-accordion-sm-icon-size-width: 1rem;
|
|
266
|
+
--click-accordion-sm-space-gap: 0.25rem;
|
|
267
|
+
--click-accordion-sm-typography-label-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
268
|
+
--click-accordion-sm-typography-label-hover: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
269
|
+
--click-accordion-sm-typography-label-active: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
270
|
+
--click-accordion-md-icon-size-height: 1.25rem;
|
|
271
|
+
--click-accordion-md-icon-size-width: 1.25rem;
|
|
272
|
+
--click-accordion-md-space-gap: 0.25rem;
|
|
273
|
+
--click-accordion-md-typography-label-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
274
|
+
--click-accordion-md-typography-label-hover: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
275
|
+
--click-accordion-md-typography-label-active: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
276
|
+
--click-accordion-lg-icon-size-height: 1.5rem;
|
|
277
|
+
--click-accordion-lg-icon-size-width: 1.5rem;
|
|
278
|
+
--click-accordion-lg-space-gap: 0.25rem;
|
|
279
|
+
--click-accordion-lg-typography-label-default: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
280
|
+
--click-accordion-lg-typography-label-hover: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
281
|
+
--click-accordion-lg-typography-label-active: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
282
|
+
--click-accordion-color-default-label-default: #161517;
|
|
283
|
+
--click-accordion-color-default-label-hover: lch(13.917 1.3308 305.43);
|
|
284
|
+
--click-accordion-color-default-label-active: #161517;
|
|
285
|
+
--click-accordion-color-default-icon-default: #161517;
|
|
286
|
+
--click-accordion-color-default-icon-hover: lch(13.917 1.3308 305.43);
|
|
287
|
+
--click-accordion-color-default-icon-active: #161517;
|
|
288
|
+
--click-accordion-color-link-label-default: #437eef;
|
|
289
|
+
--click-accordion-color-link-label-hover: #104ec6;
|
|
290
|
+
--click-accordion-color-link-label-active: #437eef;
|
|
291
|
+
--click-accordion-color-link-icon-default: #437eef;
|
|
292
|
+
--click-accordion-color-link-icon-hover: lch(40.786 66.387 286.32);
|
|
293
|
+
--click-accordion-color-link-icon-active: #437eef;
|
|
294
|
+
--click-alert-medium-space-y: 0.75rem;
|
|
295
|
+
--click-alert-medium-space-x: 0.75rem;
|
|
296
|
+
--click-alert-medium-space-gap: 0;
|
|
297
|
+
--click-alert-medium-space-banner: 0.5rem;
|
|
298
|
+
--click-alert-medium-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
299
|
+
--click-alert-medium-typography-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
300
|
+
--click-alert-medium-icon-height: 1.25rem;
|
|
301
|
+
--click-alert-medium-icon-width: 1.25rem;
|
|
302
|
+
--click-alert-small-space-y: 0.5rem;
|
|
303
|
+
--click-alert-small-space-x: 0.75rem;
|
|
304
|
+
--click-alert-small-space-gap: 0;
|
|
305
|
+
--click-alert-small-space-banner: 0.25rem;
|
|
306
|
+
--click-alert-small-icon-height: 1rem;
|
|
307
|
+
--click-alert-small-icon-width: 1rem;
|
|
308
|
+
--click-alert-small-typography-title-default: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
309
|
+
--click-alert-small-typography-text-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
310
|
+
--click-alert-radii-center: 0;
|
|
311
|
+
--click-alert-radii-end: 0.25rem;
|
|
312
|
+
--click-alert-color-background-default: #ffffff;
|
|
313
|
+
--click-alert-color-background-success: rgb(20% 100% 26.667% / 0.1);
|
|
314
|
+
--click-alert-color-background-neutral: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
315
|
+
--click-alert-color-background-danger: rgb(100% 13.725% 13.725% / 0.1);
|
|
316
|
+
--click-alert-color-background-warning: rgb(100% 46.667% 16.078% / 0.1);
|
|
317
|
+
--click-alert-color-background-info: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
318
|
+
--click-alert-color-text-default: #696e79;
|
|
319
|
+
--click-alert-color-text-success: #008a0b;
|
|
320
|
+
--click-alert-color-text-neutral: #53575f;
|
|
321
|
+
--click-alert-color-text-danger: #c10000;
|
|
322
|
+
--click-alert-color-text-warning: #a33c00;
|
|
323
|
+
--click-alert-color-text-info: #437eef;
|
|
324
|
+
--click-alert-color-iconBackground-default: #ffffff;
|
|
325
|
+
--click-alert-color-iconBackground-success: rgb(20% 100% 26.667% / 0);
|
|
326
|
+
--click-alert-color-iconBackground-neutral: rgb(41.176% 43.137% 47.451% / 0);
|
|
327
|
+
--click-alert-color-iconBackground-danger: rgb(100% 13.725% 13.725% / 0);
|
|
328
|
+
--click-alert-color-iconBackground-warning: rgb(100% 46.667% 16.078% / 0);
|
|
329
|
+
--click-alert-color-iconBackground-info: rgb(26.275% 49.412% 93.725% / 0);
|
|
330
|
+
--click-alert-color-iconForeground-default: #696e79;
|
|
331
|
+
--click-alert-color-iconForeground-success: lch(49.786 70.246 135.31 / 0.75);
|
|
332
|
+
--click-alert-color-iconForeground-neutral: lch(36.838 5.2307 266.96 / 0.75);
|
|
333
|
+
--click-alert-color-iconForeground-danger: lch(41.001 86.638 40.858 / 0.75);
|
|
334
|
+
--click-alert-color-iconForeground-warning: lch(40.227 66.602 51.059 / 0.75);
|
|
335
|
+
--click-alert-color-iconForeground-info: lch(53.426 64.605 278.98 / 0.75);
|
|
336
|
+
--click-avatar-typography-label-sm-default: 600 0.6875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
337
|
+
--click-avatar-typography-label-sm-hover: 600 0.6875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
338
|
+
--click-avatar-typography-label-sm-active: 600 0.6875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
339
|
+
--click-avatar-typography-label-md-default: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
340
|
+
--click-avatar-typography-label-md-hover: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
341
|
+
--click-avatar-typography-label-md-active: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
342
|
+
--click-avatar-size-label-width: 1.5rem;
|
|
343
|
+
--click-avatar-size-width: 1.5rem;
|
|
344
|
+
--click-avatar-size-height: 1.5rem;
|
|
345
|
+
--click-avatar-radii-all: 9999px;
|
|
346
|
+
--click-avatar-color-background-default: #696e79;
|
|
347
|
+
--click-avatar-color-background-hover: #9a9ea7;
|
|
348
|
+
--click-avatar-color-background-active: #9a9ea7;
|
|
349
|
+
--click-avatar-color-text-default: #ffffff;
|
|
350
|
+
--click-avatar-color-text-hover: #ffffff;
|
|
351
|
+
--click-avatar-color-text-active: #ffffff;
|
|
352
|
+
--click-badge-space-md-x: 0.75rem;
|
|
353
|
+
--click-badge-space-md-y: 0.125rem;
|
|
354
|
+
--click-badge-space-md-gap: 0.25rem;
|
|
355
|
+
--click-badge-space-sm-x: 0.5rem;
|
|
356
|
+
--click-badge-space-sm-y: 0.1563rem;
|
|
357
|
+
--click-badge-space-sm-gap: 0.125rem;
|
|
358
|
+
--click-badge-typography-label-md-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
359
|
+
--click-badge-typography-label-sm-default: 500 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
360
|
+
--click-badge-radii-all: 9999px;
|
|
361
|
+
--click-badge-stroke: 1px;
|
|
362
|
+
--click-badge-icon-md-size-height: 0.75rem;
|
|
363
|
+
--click-badge-icon-md-size-width: 0.75rem;
|
|
364
|
+
--click-badge-icon-sm-size-height: 0.625rem;
|
|
365
|
+
--click-badge-icon-sm-size-width: 0.625rem;
|
|
366
|
+
--click-badge-opaque-color-background-default: #f6f7fa;
|
|
367
|
+
--click-badge-opaque-color-background-success: rgb(20% 100% 26.667% / 0.1);
|
|
368
|
+
--click-badge-opaque-color-background-neutral: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
369
|
+
--click-badge-opaque-color-background-danger: rgb(100% 13.725% 13.725% / 0.1);
|
|
370
|
+
--click-badge-opaque-color-background-disabled: #dfdfdf;
|
|
371
|
+
--click-badge-opaque-color-background-info: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
372
|
+
--click-badge-opaque-color-background-warning: rgb(100% 46.667% 16.078% / 0.1);
|
|
373
|
+
--click-badge-opaque-color-text-default: #696e79;
|
|
374
|
+
--click-badge-opaque-color-text-success: #008a0b;
|
|
375
|
+
--click-badge-opaque-color-text-neutral: #53575f;
|
|
376
|
+
--click-badge-opaque-color-text-danger: #c10000;
|
|
377
|
+
--click-badge-opaque-color-text-disabled: #a0a0a0;
|
|
378
|
+
--click-badge-opaque-color-text-info: #437eef;
|
|
379
|
+
--click-badge-opaque-color-text-warning: #a33c00;
|
|
380
|
+
--click-badge-opaque-color-stroke-default: #e6e7e9;
|
|
381
|
+
--click-badge-opaque-color-stroke-success: rgb(20% 100% 26.667% / 0.05);
|
|
382
|
+
--click-badge-opaque-color-stroke-neutral: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
383
|
+
--click-badge-opaque-color-stroke-danger: rgb(100% 13.725% 13.725% / 0.05);
|
|
384
|
+
--click-badge-opaque-color-stroke-disabled: rgb(83.078% 83.078% 83.078%);
|
|
385
|
+
--click-badge-opaque-color-stroke-info: rgb(26.275% 49.412% 93.725% / 0.05);
|
|
386
|
+
--click-badge-opaque-color-stroke-warning: rgb(100% 46.667% 16.078% / 0.05);
|
|
387
|
+
--click-badge-solid-color-background-default: #a0a0a0;
|
|
388
|
+
--click-badge-solid-color-background-success: #008a0b;
|
|
389
|
+
--click-badge-solid-color-background-neutral: #606060;
|
|
390
|
+
--click-badge-solid-color-background-danger: #c10000;
|
|
391
|
+
--click-badge-solid-color-background-disabled: #dfdfdf;
|
|
392
|
+
--click-badge-solid-color-background-info: #104ec6;
|
|
393
|
+
--click-badge-solid-color-background-warning: #d64f00;
|
|
394
|
+
--click-badge-solid-color-text-default: #ffffff;
|
|
395
|
+
--click-badge-solid-color-text-success: #ffffff;
|
|
396
|
+
--click-badge-solid-color-text-neutral: #ffffff;
|
|
397
|
+
--click-badge-solid-color-text-danger: #ffffff;
|
|
398
|
+
--click-badge-solid-color-text-disabled: #a0a0a0;
|
|
399
|
+
--click-badge-solid-color-text-info: #ffffff;
|
|
400
|
+
--click-badge-solid-color-text-warning: #ffffff;
|
|
401
|
+
--click-badge-solid-color-stroke-default: #e6e7e9;
|
|
402
|
+
--click-badge-solid-color-stroke-success: rgb(20% 100% 26.667% / 0.05);
|
|
403
|
+
--click-badge-solid-color-stroke-neutral: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
404
|
+
--click-badge-solid-color-stroke-danger: rgb(100% 13.725% 13.725% / 0.05);
|
|
405
|
+
--click-badge-solid-color-stroke-disabled: rgb(83.078% 83.078% 83.078%);
|
|
406
|
+
--click-badge-solid-color-stroke-info: rgb(26.275% 49.412% 93.725% / 0.05);
|
|
407
|
+
--click-badge-solid-color-stroke-warning: rgb(100% 46.667% 16.078% / 0.05);
|
|
408
|
+
--click-bigStat-space-all: 1rem;
|
|
409
|
+
--click-bigStat-space-sm-gap: 0;
|
|
410
|
+
--click-bigStat-space-lg-gap: 0.5rem;
|
|
411
|
+
--click-bigStat-radii-all: 0.25rem;
|
|
412
|
+
--click-bigStat-stroke: 1px;
|
|
413
|
+
--click-bigStat-typography-lg-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
414
|
+
--click-bigStat-typography-lg-label-muted: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
415
|
+
--click-bigStat-typography-lg-title-default: 700 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
416
|
+
--click-bigStat-typography-lg-title-muted: 700 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
417
|
+
--click-bigStat-typography-sm-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
418
|
+
--click-bigStat-typography-sm-label-muted: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
419
|
+
--click-bigStat-typography-sm-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
420
|
+
--click-bigStat-typography-sm-title-muted: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
421
|
+
--click-bigStat-color-stroke-default: #e6e7e9;
|
|
422
|
+
--click-bigStat-color-stroke-muted: #e6e7e9;
|
|
423
|
+
--click-bigStat-color-stroke-danger: #c10000;
|
|
424
|
+
--click-bigStat-color-background-default: #ffffff;
|
|
425
|
+
--click-bigStat-color-background-muted: #f6f7fa;
|
|
426
|
+
--click-bigStat-color-label-default: #696e79;
|
|
427
|
+
--click-bigStat-color-label-muted: #696e79;
|
|
428
|
+
--click-bigStat-color-label-danger: #c10000;
|
|
429
|
+
--click-bigStat-color-title-default: lch(11.126 1.374 305.43);
|
|
430
|
+
--click-bigStat-color-title-muted: lch(11.126 1.374 305.43);
|
|
431
|
+
--click-button-radii-all: 0.25rem;
|
|
432
|
+
--click-button-basic-space-x: 1rem;
|
|
433
|
+
--click-button-basic-space-y: 0.2813rem;
|
|
434
|
+
--click-button-basic-space-gap: 0.5rem;
|
|
435
|
+
--click-button-basic-space-group: 0.5rem;
|
|
436
|
+
--click-button-basic-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
437
|
+
--click-button-basic-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
438
|
+
--click-button-basic-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
439
|
+
--click-button-basic-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
440
|
+
--click-button-basic-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
441
|
+
--click-button-basic-typography-mobile-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
442
|
+
--click-button-basic-typography-mobile-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
443
|
+
--click-button-basic-size-icon-height: 0.9688rem;
|
|
444
|
+
--click-button-basic-size-icon-all: 0.9688rem;
|
|
445
|
+
--click-button-basic-size-icon-width: 0.9688rem;
|
|
446
|
+
--click-button-basic-color-primary-background-default: #302e32;
|
|
447
|
+
--click-button-basic-color-primary-background-hover: lch(29.47 4.1845 266.96);
|
|
448
|
+
--click-button-basic-color-primary-background-active: #161517;
|
|
449
|
+
--click-button-basic-color-primary-background-disabled: #dfdfdf;
|
|
450
|
+
--click-button-basic-color-primary-background-loading: linear-gradient(90deg, rgb(76, 76, 76, 0.1) 0%, rgb(76, 76, 76) 100%);
|
|
451
|
+
--click-button-basic-color-primary-stroke-default: #302e32;
|
|
452
|
+
--click-button-basic-color-primary-stroke-hover: lch(29.47 4.1845 266.96);
|
|
453
|
+
--click-button-basic-color-primary-stroke-active: #161517;
|
|
454
|
+
--click-button-basic-color-primary-stroke-disabled: #dfdfdf;
|
|
455
|
+
--click-button-basic-color-primary-text-default: #ffffff;
|
|
456
|
+
--click-button-basic-color-primary-text-hover: #ffffff;
|
|
457
|
+
--click-button-basic-color-primary-text-active: #ffffff;
|
|
458
|
+
--click-button-basic-color-primary-text-disabled: #a0a0a0;
|
|
459
|
+
--click-button-basic-color-secondary-background-default: rgba(0, 0, 0, 0);
|
|
460
|
+
--click-button-basic-color-secondary-background-hover: #f6f7fa;
|
|
461
|
+
--click-button-basic-color-secondary-background-active: lch(95.274 1.5364 271.98);
|
|
462
|
+
--click-button-basic-color-secondary-background-disabled: #dfdfdf;
|
|
463
|
+
--click-button-basic-color-secondary-background-loading: linear-gradient(90deg, rgb(232, 233, 235, 0.1) 0%, rgb(232, 233, 235) 100%);
|
|
464
|
+
--click-button-basic-color-secondary-stroke-default: #e6e7e9;
|
|
465
|
+
--click-button-basic-color-secondary-stroke-hover: #e6e7e9;
|
|
466
|
+
--click-button-basic-color-secondary-stroke-active: #cccfd3;
|
|
467
|
+
--click-button-basic-color-secondary-stroke-disabled: #dfdfdf;
|
|
468
|
+
--click-button-basic-color-secondary-text-default: #161517;
|
|
469
|
+
--click-button-basic-color-secondary-text-hover: #161517;
|
|
470
|
+
--click-button-basic-color-secondary-text-active: #161517;
|
|
471
|
+
--click-button-basic-color-secondary-text-disabled: #a0a0a0;
|
|
472
|
+
--click-button-basic-color-danger-text-default: #c10000;
|
|
473
|
+
--click-button-basic-color-danger-text-hover: #c10000;
|
|
474
|
+
--click-button-basic-color-danger-text-active: #c10000;
|
|
475
|
+
--click-button-basic-color-danger-text-disabled: #a0a0a0;
|
|
476
|
+
--click-button-basic-color-danger-background-default: rgb(100% 13.725% 13.725% / 0.1);
|
|
477
|
+
--click-button-basic-color-danger-background-hover: rgb(100% 13.725% 13.725% / 0.2);
|
|
478
|
+
--click-button-basic-color-danger-background-active: rgb(100% 13.725% 13.725% / 0.3);
|
|
479
|
+
--click-button-basic-color-danger-background-disabled: #dfdfdf;
|
|
480
|
+
--click-button-basic-color-danger-background-loading: linear-gradient(90deg, rgba(255, 211, 211, 0.1) 0%, rgb(255, 211, 211) 100%);
|
|
481
|
+
--click-button-basic-color-danger-stroke-default: rgb(100% 13.725% 13.725% / 0.1);
|
|
482
|
+
--click-button-basic-color-danger-stroke-hover: rgb(100% 13.725% 13.725% / 0.05);
|
|
483
|
+
--click-button-basic-color-danger-stroke-active: rgb(100% 13.725% 13.725% / 0.05);
|
|
484
|
+
--click-button-basic-color-danger-stroke-disabled: #dfdfdf;
|
|
485
|
+
--click-button-basic-color-empty-text-default: #437eef;
|
|
486
|
+
--click-button-basic-color-empty-text-hover: #104ec6;
|
|
487
|
+
--click-button-basic-color-empty-text-active: #437eef;
|
|
488
|
+
--click-button-basic-color-empty-text-disabled: #a0a0a0;
|
|
489
|
+
--click-button-basic-color-empty-background-default: rgba(0, 0, 0, 0);
|
|
490
|
+
--click-button-basic-color-empty-background-hover: #f6f7fa;
|
|
491
|
+
--click-button-basic-color-empty-background-active: rgba(0, 0, 0, 0);
|
|
492
|
+
--click-button-basic-color-empty-background-disabled: rgba(0, 0, 0, 0);
|
|
493
|
+
--click-button-basic-color-empty-background-loading: linear-gradient(90deg, rgba(240, 242, 248, 0.1) 0%, rgb(240, 242, 248) 100%);
|
|
494
|
+
--click-button-basic-color-empty-stroke-default: rgba(0, 0, 0, 0);
|
|
495
|
+
--click-button-basic-color-empty-stroke-hover: rgba(0, 0, 0, 0);
|
|
496
|
+
--click-button-basic-color-empty-stroke-active: rgba(0, 0, 0, 0);
|
|
497
|
+
--click-button-basic-color-empty-stroke-disabled: rgba(0, 0, 0, 0);
|
|
498
|
+
--click-button-iconButton-default-space-x: 0.4375rem;
|
|
499
|
+
--click-button-iconButton-default-space-y: 0.4375rem;
|
|
500
|
+
--click-button-iconButton-size-small: 0.75rem;
|
|
501
|
+
--click-button-iconButton-size-medium: 1rem;
|
|
502
|
+
--click-button-iconButton-size-large: 1.25rem;
|
|
503
|
+
--click-button-iconButton-radii-all: 0.25rem;
|
|
504
|
+
--click-button-iconButton-sm-space-x: 0.25rem;
|
|
505
|
+
--click-button-iconButton-sm-space-y: 0.25rem;
|
|
506
|
+
--click-button-iconButton-xs-space-x: 0;
|
|
507
|
+
--click-button-iconButton-xs-space-y: 0;
|
|
508
|
+
--click-button-iconButton-color-primary-background-default: rgba(0, 0, 0, 0);
|
|
509
|
+
--click-button-iconButton-color-primary-background-hover: #f6f7fa;
|
|
510
|
+
--click-button-iconButton-color-primary-background-active: rgb(86.824% 87.176% 88.235%);
|
|
511
|
+
--click-button-iconButton-color-primary-stroke-default: rgba(0, 0, 0, 0);
|
|
512
|
+
--click-button-iconButton-color-primary-stroke-hover: #f6f7fa;
|
|
513
|
+
--click-button-iconButton-color-primary-stroke-active: rgb(86.824% 87.176% 88.235%);
|
|
514
|
+
--click-button-iconButton-color-primary-text-default: #161517;
|
|
515
|
+
--click-button-iconButton-color-primary-text-hover: #161517;
|
|
516
|
+
--click-button-iconButton-color-primary-text-active: #161517;
|
|
517
|
+
--click-button-iconButton-color-secondary-background-default: #302e32;
|
|
518
|
+
--click-button-iconButton-color-secondary-background-hover: lch(29.47 4.1845 266.96);
|
|
519
|
+
--click-button-iconButton-color-secondary-background-active: lch(6.5908 1.3668 305.43);
|
|
520
|
+
--click-button-iconButton-color-secondary-stroke-default: rgba(0, 0, 0, 0);
|
|
521
|
+
--click-button-iconButton-color-secondary-stroke-hover: lch(29.47 4.1845 266.96);
|
|
522
|
+
--click-button-iconButton-color-secondary-stroke-active: lch(6.5908 1.3668 305.43);
|
|
523
|
+
--click-button-iconButton-color-secondary-text-default: #ffffff;
|
|
524
|
+
--click-button-iconButton-color-secondary-text-hover: #ffffff;
|
|
525
|
+
--click-button-iconButton-color-secondary-text-active: #ffffff;
|
|
526
|
+
--click-button-iconButton-color-disabled-background-default: #dfdfdf;
|
|
527
|
+
--click-button-iconButton-color-disabled-text-default: #a0a0a0;
|
|
528
|
+
--click-button-iconButton-color-danger-background-default: rgb(100% 13.725% 13.725% / 0.1);
|
|
529
|
+
--click-button-iconButton-color-danger-background-hover: rgb(100% 13.725% 13.725% / 0.2);
|
|
530
|
+
--click-button-iconButton-color-danger-background-active: rgb(100% 13.725% 13.725% / 0.3);
|
|
531
|
+
--click-button-iconButton-color-danger-text-default: #c10000;
|
|
532
|
+
--click-button-iconButton-color-danger-text-hover: #c10000;
|
|
533
|
+
--click-button-iconButton-color-danger-text-active: #c10000;
|
|
534
|
+
--click-button-iconButton-color-danger-stroke-default: rgb(100% 13.725% 13.725% / 0.1);
|
|
535
|
+
--click-button-iconButton-color-danger-stroke-hover: rgb(100% 13.725% 13.725% / 0.2);
|
|
536
|
+
--click-button-iconButton-color-danger-stroke-active: rgb(100% 13.725% 13.725% / 0.3);
|
|
537
|
+
--click-button-iconButton-color-ghost-background-default: rgba(0, 0, 0, 0);
|
|
538
|
+
--click-button-iconButton-color-ghost-background-hover: rgba(0, 0, 0, 0);
|
|
539
|
+
--click-button-iconButton-color-ghost-background-active: rgb(0% 0% 0% / 0);
|
|
540
|
+
--click-button-iconButton-color-ghost-stroke-default: rgba(0, 0, 0, 0);
|
|
541
|
+
--click-button-iconButton-color-ghost-stroke-hover: rgba(0, 0, 0, 0);
|
|
542
|
+
--click-button-iconButton-color-ghost-stroke-active: rgba(0, 0, 0, 0);
|
|
543
|
+
--click-button-iconButton-color-ghost-text-default: #696e79;
|
|
544
|
+
--click-button-iconButton-color-ghost-text-hover: #161517;
|
|
545
|
+
--click-button-iconButton-color-ghost-text-active: #161517;
|
|
546
|
+
--click-button-iconButton-color-info-background-default: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
547
|
+
--click-button-iconButton-color-info-background-hover: #d0dffb;
|
|
548
|
+
--click-button-iconButton-color-info-background-active: #a1bef7;
|
|
549
|
+
--click-button-iconButton-color-info-text-default: #437eef;
|
|
550
|
+
--click-button-iconButton-color-info-text-hover: #437eef;
|
|
551
|
+
--click-button-iconButton-color-info-text-active: #437eef;
|
|
552
|
+
--click-button-iconButton-color-info-stroke-default: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
553
|
+
--click-button-iconButton-color-info-stroke-hover: #d0dffb;
|
|
554
|
+
--click-button-iconButton-color-info-stroke-active: #a1bef7;
|
|
555
|
+
--click-button-stroke: 1px;
|
|
556
|
+
--click-button-split-icon-space-y: 0.4375rem;
|
|
557
|
+
--click-button-split-icon-space-x: 0.3438rem;
|
|
558
|
+
--click-button-split-space-x: 1rem;
|
|
559
|
+
--click-button-split-space-y: 0.2813rem;
|
|
560
|
+
--click-button-split-space-gap: 0.5rem;
|
|
561
|
+
--click-button-split-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
562
|
+
--click-button-split-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
563
|
+
--click-button-split-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
564
|
+
--click-button-split-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
565
|
+
--click-button-split-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
566
|
+
--click-button-split-typography-mobile-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
567
|
+
--click-button-split-typography-mobile-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
568
|
+
--click-button-split-primary-divide-default: lch(23.301 2.6341 306.08);
|
|
569
|
+
--click-button-split-primary-divide-active: lch(16.375 2.3568 306.08);
|
|
570
|
+
--click-button-split-primary-divide-hover: lch(33.055 3.2737 266.96);
|
|
571
|
+
--click-button-split-primary-divide-disabled: lch(75.5 0 none);
|
|
572
|
+
--click-button-split-primary-background-main-default: #302e32;
|
|
573
|
+
--click-button-split-primary-background-main-hover: lch(26.965 3.8288 266.96);
|
|
574
|
+
--click-button-split-primary-background-main-active: lch(6.348 1.3164 305.43);
|
|
575
|
+
--click-button-split-primary-background-main-disabled: #dfdfdf;
|
|
576
|
+
--click-button-split-primary-background-action-default: #161517;
|
|
577
|
+
--click-button-split-primary-background-action-hover: lch(25.617 3.6374 266.96);
|
|
578
|
+
--click-button-split-primary-background-action-active: lch(3.4689 0.71935 305.43);
|
|
579
|
+
--click-button-split-primary-background-action-disabled: lch(84.382 0 none);
|
|
580
|
+
--click-button-split-primary-text-default: #ffffff;
|
|
581
|
+
--click-button-split-primary-text-hover: #ffffff;
|
|
582
|
+
--click-button-split-primary-text-active: #ffffff;
|
|
583
|
+
--click-button-split-primary-text-disabled: #a0a0a0;
|
|
584
|
+
--click-button-split-primary-stroke-default: rgba(0, 0, 0, 0);
|
|
585
|
+
--click-button-split-primary-stroke-hover: rgba(0, 0, 0, 0);
|
|
586
|
+
--click-button-split-primary-stroke-active: rgba(0, 0, 0, 0);
|
|
587
|
+
--click-button-split-primary-stroke-disabled: rgba(0, 0, 0, 0);
|
|
588
|
+
--click-button-split-secondary-divide-default: lch(92.029 1.0472 265.86);
|
|
589
|
+
--click-button-split-secondary-divide-hover: lch(92.449 0.99207 265.86);
|
|
590
|
+
--click-button-split-secondary-divide-active: #cccfd3;
|
|
591
|
+
--click-button-split-secondary-divide-disabled: lch(75.5 0 none);
|
|
592
|
+
--click-button-split-secondary-background-main-default: rgba(0, 0, 0, 0);
|
|
593
|
+
--click-button-split-secondary-background-main-hover: #f6f7fa;
|
|
594
|
+
--click-button-split-secondary-background-main-active: lch(95.274 1.5364 271.98);
|
|
595
|
+
--click-button-split-secondary-background-main-disabled: #dfdfdf;
|
|
596
|
+
--click-button-split-secondary-background-action-default: #f6f7fa;
|
|
597
|
+
--click-button-split-secondary-background-action-hover: lch(94.788 1.5286 271.98);
|
|
598
|
+
--click-button-split-secondary-background-action-active: lch(92.892 1.498 271.98);
|
|
599
|
+
--click-button-split-secondary-background-action-disabled: lch(84.382 0 none);
|
|
600
|
+
--click-button-split-secondary-text-default: #161517;
|
|
601
|
+
--click-button-split-secondary-text-hover: #161517;
|
|
602
|
+
--click-button-split-secondary-text-active: #161517;
|
|
603
|
+
--click-button-split-secondary-text-disabled: #a0a0a0;
|
|
604
|
+
--click-button-split-secondary-stroke-default: #e6e7e9;
|
|
605
|
+
--click-button-split-secondary-stroke-hover: #e6e7e9;
|
|
606
|
+
--click-button-split-secondary-stroke-active: #cccfd3;
|
|
607
|
+
--click-button-split-secondary-stroke-disabled: rgba(0, 0, 0, 0);
|
|
608
|
+
--click-button-mobile-button-space-x: 0.75rem;
|
|
609
|
+
--click-button-mobile-button-space-y: 0.5rem;
|
|
610
|
+
--click-button-mobile-button-space-gap: 0.5rem;
|
|
611
|
+
--click-button-mobile-basic-size-icon-all: 1.25rem;
|
|
612
|
+
--click-button-group-radii-button-default-all: 2px;
|
|
613
|
+
--click-button-group-radii-button-borderless-all: 0.25rem;
|
|
614
|
+
--click-button-group-radii-panel-all: 0.25rem;
|
|
615
|
+
--click-button-group-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
616
|
+
--click-button-group-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
617
|
+
--click-button-group-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
618
|
+
--click-button-group-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
619
|
+
--click-button-group-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
620
|
+
--click-button-group-typography-mobile-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
621
|
+
--click-button-group-typography-mobile-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
622
|
+
--click-button-group-space-panel-default-x: 3px;
|
|
623
|
+
--click-button-group-space-panel-default-y: 3px;
|
|
624
|
+
--click-button-group-space-panel-default-gap: 3px;
|
|
625
|
+
--click-button-group-space-panel-borderless-x: 0;
|
|
626
|
+
--click-button-group-space-panel-borderless-y: 0;
|
|
627
|
+
--click-button-group-space-panel-borderless-gap: 0.25rem;
|
|
628
|
+
--click-button-group-space-button-default-y: 1.5px;
|
|
629
|
+
--click-button-group-space-button-default-x: 0.75rem;
|
|
630
|
+
--click-button-group-space-button-borderless-y: 5.5px;
|
|
631
|
+
--click-button-group-space-button-borderless-x: 1rem;
|
|
632
|
+
--click-button-group-color-background-default: rgba(0, 0, 0, 0);
|
|
633
|
+
--click-button-group-color-background-hover: #f6f7fa;
|
|
634
|
+
--click-button-group-color-background-active: lch(95.274 1.5364 271.98);
|
|
635
|
+
--click-button-group-color-background-disabled: rgba(0, 0, 0, 0);
|
|
636
|
+
--click-button-group-color-background-disabled-active: lch(76.219 1.2291 271.98);
|
|
637
|
+
--click-button-group-color-background-panel: rgba(0, 0, 0, 0);
|
|
638
|
+
--click-button-group-color-text-default: #505050;
|
|
639
|
+
--click-button-group-color-text-hover: #505050;
|
|
640
|
+
--click-button-group-color-text-active: #161517;
|
|
641
|
+
--click-button-group-color-text-disabled: #a0a0a0;
|
|
642
|
+
--click-button-group-color-text-disabled-active: #a0a0a0;
|
|
643
|
+
--click-button-group-color-stroke-default: rgba(0, 0, 0, 0);
|
|
644
|
+
--click-button-group-color-stroke-hover: rgba(0, 0, 0, 0);
|
|
645
|
+
--click-button-group-color-stroke-active: rgba(0, 0, 0, 0);
|
|
646
|
+
--click-button-group-color-stroke-disabled: rgba(0, 0, 0, 0);
|
|
647
|
+
--click-button-group-color-stroke-disabled-active: rgba(0, 0, 0, 0);
|
|
648
|
+
--click-button-group-color-stroke-panel: #e6e7e9;
|
|
649
|
+
--click-button-group-color-panel-stroke-default: #e6e7e9;
|
|
650
|
+
--click-button-group-color-panel-stroke-borderless: rgba(0, 0, 0, 0);
|
|
651
|
+
--click-button-alignLeft-size-icon-all: 0.9688rem;
|
|
652
|
+
--click-button-alignLeft-space-x: 1rem;
|
|
653
|
+
--click-button-alignLeft-space-y: 0.3438rem;
|
|
654
|
+
--click-button-alignLeft-space-gap: 0.5rem;
|
|
655
|
+
--click-button-alignLeft-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
656
|
+
--click-button-alignLeft-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
657
|
+
--click-button-alignLeft-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
658
|
+
--click-button-alignLeft-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
659
|
+
--click-button-alignLeft-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
660
|
+
--click-button-alignLeft-typography-mobile-label-hover: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
661
|
+
--click-button-alignLeft-typography-mobile-label-active: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
662
|
+
--click-button-alignedLeft-color-background-default: rgba(0, 0, 0, 0);
|
|
663
|
+
--click-button-alignedLeft-color-background-hover: #f6f7fa;
|
|
664
|
+
--click-button-alignedLeft-color-background-active: lch(95.274 1.5364 271.98);
|
|
665
|
+
--click-button-alignedLeft-color-stroke-default: #e6e7e9;
|
|
666
|
+
--click-button-alignedLeft-color-stroke-hover: #e6e7e9;
|
|
667
|
+
--click-button-alignedLeft-color-stroke-active: #cccfd3;
|
|
668
|
+
--click-button-alignedLeft-color-text-default: #161517;
|
|
669
|
+
--click-button-alignedLeft-color-text-hover: #161517;
|
|
670
|
+
--click-button-alignedLeft-color-text-active: #161517;
|
|
671
|
+
--click-card-secondary-space-all: 1rem;
|
|
672
|
+
--click-card-secondary-space-gap: 1rem;
|
|
673
|
+
--click-card-secondary-space-link-gap: 0.5rem;
|
|
674
|
+
--click-card-secondary-radii-all: 0.25rem;
|
|
675
|
+
--click-card-secondary-icon-size-all: 2rem;
|
|
676
|
+
--click-card-secondary-stroke: 1px;
|
|
677
|
+
--click-card-secondary-color-background-default: #ffffff;
|
|
678
|
+
--click-card-secondary-color-background-hover: #f6f7fa;
|
|
679
|
+
--click-card-secondary-color-background-active: lch(92.358 1.4894 271.98);
|
|
680
|
+
--click-card-secondary-color-background-disabled: #dfdfdf;
|
|
681
|
+
--click-card-secondary-color-title-default: lch(11.126 1.374 305.43);
|
|
682
|
+
--click-card-secondary-color-title-hover: lch(11.126 1.374 305.43);
|
|
683
|
+
--click-card-secondary-color-title-active: lch(11.126 1.374 305.43);
|
|
684
|
+
--click-card-secondary-color-title-disabled: #a0a0a0;
|
|
685
|
+
--click-card-secondary-color-description-default: #696e79;
|
|
686
|
+
--click-card-secondary-color-description-hover: #696e79;
|
|
687
|
+
--click-card-secondary-color-description-active: #696e79;
|
|
688
|
+
--click-card-secondary-color-description-disabled: #a0a0a0;
|
|
689
|
+
--click-card-secondary-color-link-default: #161517;
|
|
690
|
+
--click-card-secondary-color-link-hover: #437eef;
|
|
691
|
+
--click-card-secondary-color-link-active: #161517;
|
|
692
|
+
--click-card-secondary-color-link-disabled: #a0a0a0;
|
|
693
|
+
--click-card-secondary-color-stroke-default: #e6e7e9;
|
|
694
|
+
--click-card-secondary-color-stroke-hover: #e6e7e9;
|
|
695
|
+
--click-card-secondary-color-stroke-active: lch(87.029 1.0472 265.86);
|
|
696
|
+
--click-card-secondary-color-stroke-disabled: #dfdfdf;
|
|
697
|
+
--click-card-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
698
|
+
--click-card-typography-title-hover: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
699
|
+
--click-card-typography-title-active: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
700
|
+
--click-card-typography-title-disabled: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
701
|
+
--click-card-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
702
|
+
--click-card-typography-description-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
703
|
+
--click-card-typography-description-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
704
|
+
--click-card-typography-description-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
705
|
+
--click-card-typography-link-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
706
|
+
--click-card-typography-link-hover: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
707
|
+
--click-card-typography-link-active: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
708
|
+
--click-card-typography-link-disabled: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
709
|
+
--click-card-primary-size-icon-sm-all: 2rem;
|
|
710
|
+
--click-card-primary-size-icon-md-all: 4rem;
|
|
711
|
+
--click-card-primary-space-md-y: 1.5rem;
|
|
712
|
+
--click-card-primary-space-md-x: 1.5rem;
|
|
713
|
+
--click-card-primary-space-md-gap: 0.75rem;
|
|
714
|
+
--click-card-primary-space-sm-y: 1.5rem;
|
|
715
|
+
--click-card-primary-space-sm-x: 1.5rem;
|
|
716
|
+
--click-card-primary-space-sm-gap: 0.25rem;
|
|
717
|
+
--click-card-primary-radii-all: 0.25rem;
|
|
718
|
+
--click-card-primary-stroke: 1px;
|
|
719
|
+
--click-card-primary-color-background-default: #ffffff;
|
|
720
|
+
--click-card-primary-color-background-hover: #f6f7fa;
|
|
721
|
+
--click-card-primary-color-background-active: #ffffff;
|
|
722
|
+
--click-card-primary-color-background-disabled: #dfdfdf;
|
|
723
|
+
--click-card-primary-color-title-default: lch(11.126 1.374 305.43);
|
|
724
|
+
--click-card-primary-color-title-hover: lch(11.126 1.374 305.43);
|
|
725
|
+
--click-card-primary-color-title-active: lch(11.126 1.374 305.43);
|
|
726
|
+
--click-card-primary-color-title-disabled: #a0a0a0;
|
|
727
|
+
--click-card-primary-color-description-default: #696e79;
|
|
728
|
+
--click-card-primary-color-description-hover: #696e79;
|
|
729
|
+
--click-card-primary-color-description-active: #696e79;
|
|
730
|
+
--click-card-primary-color-description-disabled: #a0a0a0;
|
|
731
|
+
--click-card-primary-color-stroke-default: #e6e7e9;
|
|
732
|
+
--click-card-primary-color-stroke-hover: #e6e7e9;
|
|
733
|
+
--click-card-primary-color-stroke-active: #151515;
|
|
734
|
+
--click-card-primary-color-stroke-disabled: #dfdfdf;
|
|
735
|
+
--click-card-shadow: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
736
|
+
--click-card-horizontal-radii-all: 0.25rem;
|
|
737
|
+
--click-card-horizontal-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
738
|
+
--click-card-horizontal-typography-title-hover: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
739
|
+
--click-card-horizontal-typography-title-active: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
740
|
+
--click-card-horizontal-typography-title-disabled: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
741
|
+
--click-card-horizontal-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
742
|
+
--click-card-horizontal-typography-description-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
743
|
+
--click-card-horizontal-typography-description-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
744
|
+
--click-card-horizontal-typography-description-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
745
|
+
--click-card-horizontal-icon-size-all: 1.5rem;
|
|
746
|
+
--click-card-horizontal-space-md-y: 0.75rem;
|
|
747
|
+
--click-card-horizontal-space-md-x: 1rem;
|
|
748
|
+
--click-card-horizontal-space-md-gap: 1rem;
|
|
749
|
+
--click-card-horizontal-space-sm-y: 0.5rem;
|
|
750
|
+
--click-card-horizontal-space-sm-x: 0.75rem;
|
|
751
|
+
--click-card-horizontal-space-sm-gap: 0.75rem;
|
|
752
|
+
--click-card-horizontal-default-color-background-default: #ffffff;
|
|
753
|
+
--click-card-horizontal-default-color-background-hover: #f6f7fa;
|
|
754
|
+
--click-card-horizontal-default-color-background-active: #ffffff;
|
|
755
|
+
--click-card-horizontal-default-color-background-disabled: #dfdfdf;
|
|
756
|
+
--click-card-horizontal-default-color-title-default: lch(11.126 1.374 305.43);
|
|
757
|
+
--click-card-horizontal-default-color-title-hover: lch(11.126 1.374 305.43);
|
|
758
|
+
--click-card-horizontal-default-color-title-active: lch(11.126 1.374 305.43);
|
|
759
|
+
--click-card-horizontal-default-color-title-disabled: #a0a0a0;
|
|
760
|
+
--click-card-horizontal-default-color-description-default: #696e79;
|
|
761
|
+
--click-card-horizontal-default-color-description-hover: #696e79;
|
|
762
|
+
--click-card-horizontal-default-color-description-active: #696e79;
|
|
763
|
+
--click-card-horizontal-default-color-description-disabled: #a0a0a0;
|
|
764
|
+
--click-card-horizontal-default-color-stroke-default: #e6e7e9;
|
|
765
|
+
--click-card-horizontal-default-color-stroke-hover: #e6e7e9;
|
|
766
|
+
--click-card-horizontal-default-color-stroke-active: #151515;
|
|
767
|
+
--click-card-horizontal-default-color-stroke-disabled: #dfdfdf;
|
|
768
|
+
--click-card-horizontal-muted-color-background-default: #f6f7fa;
|
|
769
|
+
--click-card-horizontal-muted-color-background-hover: #ffffff;
|
|
770
|
+
--click-card-horizontal-muted-color-background-active: #f6f7fa;
|
|
771
|
+
--click-card-horizontal-muted-color-background-disabled: #dfdfdf;
|
|
772
|
+
--click-card-horizontal-muted-color-title-default: lch(11.126 1.374 305.43);
|
|
773
|
+
--click-card-horizontal-muted-color-title-hover: lch(11.126 1.374 305.43);
|
|
774
|
+
--click-card-horizontal-muted-color-title-active: lch(11.126 1.374 305.43);
|
|
775
|
+
--click-card-horizontal-muted-color-title-disabled: #a0a0a0;
|
|
776
|
+
--click-card-horizontal-muted-color-description-default: #696e79;
|
|
777
|
+
--click-card-horizontal-muted-color-description-hover: #696e79;
|
|
778
|
+
--click-card-horizontal-muted-color-description-active: #696e79;
|
|
779
|
+
--click-card-horizontal-muted-color-description-disabled: #a0a0a0;
|
|
780
|
+
--click-card-horizontal-muted-color-stroke-default: #e6e7e9;
|
|
781
|
+
--click-card-horizontal-muted-color-stroke-hover: #e6e7e9;
|
|
782
|
+
--click-card-horizontal-muted-color-stroke-active: #151515;
|
|
783
|
+
--click-card-horizontal-muted-color-stroke-disabled: #dfdfdf;
|
|
784
|
+
--click-card-promotion-radii-all: 0.25rem;
|
|
785
|
+
--click-card-promotion-typography-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
786
|
+
--click-card-promotion-space-y: 5.5px;
|
|
787
|
+
--click-card-promotion-space-x: 0.75rem;
|
|
788
|
+
--click-card-promotion-space-gap: 0.75rem;
|
|
789
|
+
--click-card-promotion-icon-size-all: 1rem;
|
|
790
|
+
--click-card-promotion-color-background-default: #f6f7fa;
|
|
791
|
+
--click-card-promotion-color-background-hover: #e6e7e9;
|
|
792
|
+
--click-card-promotion-color-background-active: lch(89.777 1.0803 265.86);
|
|
793
|
+
--click-card-promotion-color-icon-default: #161517;
|
|
794
|
+
--click-card-promotion-color-icon-hover: #161517;
|
|
795
|
+
--click-card-promotion-color-icon-active: #161517;
|
|
796
|
+
--click-card-promotion-color-stroke-default: linear-gradient(174deg, #ABABAB 7.59%, #D4D4D4 30.01%);
|
|
797
|
+
--click-card-promotion-color-stroke-hover: linear-gradient(174deg, #ABABAB 7.59%, #D4D4D4 30.01%);
|
|
798
|
+
--click-card-promotion-color-stroke-active: linear-gradient(174deg, #ABABAB 7.59%, #D4D4D4 30.01%);
|
|
799
|
+
--click-card-promotion-color-stroke-focus: #151515;
|
|
800
|
+
--click-card-promotion-color-text-default: #161517;
|
|
801
|
+
--click-card-promotion-color-text-hover: #161517;
|
|
802
|
+
--click-card-promotion-color-text-active: #161517;
|
|
803
|
+
--click-checkbox-radii-all: 0.125rem;
|
|
804
|
+
--click-checkbox-space-all: 1px;
|
|
805
|
+
--click-checkbox-space-gap: 0.5rem;
|
|
806
|
+
--click-checkbox-size-all: 1rem;
|
|
807
|
+
--click-checkbox-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
808
|
+
--click-checkbox-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
809
|
+
--click-checkbox-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
810
|
+
--click-checkbox-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
811
|
+
--click-checkbox-color-variations-default-background-default: #f6f7fa;
|
|
812
|
+
--click-checkbox-color-variations-default-background-hover: #f6f7fa;
|
|
813
|
+
--click-checkbox-color-variations-default-background-active: #161517;
|
|
814
|
+
--click-checkbox-color-variations-default-background-disabled: #dfdfdf;
|
|
815
|
+
--click-checkbox-color-variations-default-stroke-default: #b3b6bd;
|
|
816
|
+
--click-checkbox-color-variations-default-stroke-hover: #b3b6bd;
|
|
817
|
+
--click-checkbox-color-variations-default-stroke-active: #161517;
|
|
818
|
+
--click-checkbox-color-variations-default-stroke-disabled: #c0c0c0;
|
|
819
|
+
--click-checkbox-color-variations-default-check-default: #ffffff;
|
|
820
|
+
--click-checkbox-color-variations-default-check-hover: #ffffff;
|
|
821
|
+
--click-checkbox-color-variations-default-check-active: #ffffff;
|
|
822
|
+
--click-checkbox-color-variations-default-check-disabled: #a0a0a0;
|
|
823
|
+
--click-checkbox-color-variations-var1-background-default: #f6f7fa;
|
|
824
|
+
--click-checkbox-color-variations-var1-background-hover: #f6f7fa;
|
|
825
|
+
--click-checkbox-color-variations-var1-background-active: #00e513;
|
|
826
|
+
--click-checkbox-color-variations-var1-background-disabled: #dfdfdf;
|
|
827
|
+
--click-checkbox-color-variations-var1-stroke-default: #62de85;
|
|
828
|
+
--click-checkbox-color-variations-var1-stroke-hover: #62de85;
|
|
829
|
+
--click-checkbox-color-variations-var1-stroke-active: #62de85;
|
|
830
|
+
--click-checkbox-color-variations-var1-stroke-disabled: #c0c0c0;
|
|
831
|
+
--click-checkbox-color-variations-var1-check-default: #ffffff;
|
|
832
|
+
--click-checkbox-color-variations-var1-check-hover: #ffffff;
|
|
833
|
+
--click-checkbox-color-variations-var1-check-active: #ffffff;
|
|
834
|
+
--click-checkbox-color-variations-var1-check-disabled: #a0a0a0;
|
|
835
|
+
--click-checkbox-color-variations-var2-background-default: #f6f7fa;
|
|
836
|
+
--click-checkbox-color-variations-var2-background-hover: #f6f7fa;
|
|
837
|
+
--click-checkbox-color-variations-var2-background-active: #437eef;
|
|
838
|
+
--click-checkbox-color-variations-var2-background-disabled: #dfdfdf;
|
|
839
|
+
--click-checkbox-color-variations-var2-stroke-default: #6d9bf3;
|
|
840
|
+
--click-checkbox-color-variations-var2-stroke-hover: #6d9bf3;
|
|
841
|
+
--click-checkbox-color-variations-var2-stroke-active: #6d9bf3;
|
|
842
|
+
--click-checkbox-color-variations-var2-stroke-disabled: #c0c0c0;
|
|
843
|
+
--click-checkbox-color-variations-var2-check-default: #ffffff;
|
|
844
|
+
--click-checkbox-color-variations-var2-check-hover: #ffffff;
|
|
845
|
+
--click-checkbox-color-variations-var2-check-active: #ffffff;
|
|
846
|
+
--click-checkbox-color-variations-var2-check-disabled: #a0a0a0;
|
|
847
|
+
--click-checkbox-color-variations-var3-background-default: #f6f7fa;
|
|
848
|
+
--click-checkbox-color-variations-var3-background-hover: #f6f7fa;
|
|
849
|
+
--click-checkbox-color-variations-var3-background-active: #fb32c9;
|
|
850
|
+
--click-checkbox-color-variations-var3-background-disabled: #dfdfdf;
|
|
851
|
+
--click-checkbox-color-variations-var3-stroke-default: #fb64d6;
|
|
852
|
+
--click-checkbox-color-variations-var3-stroke-hover: #fb64d6;
|
|
853
|
+
--click-checkbox-color-variations-var3-stroke-active: #fb64d6;
|
|
854
|
+
--click-checkbox-color-variations-var3-stroke-disabled: #c0c0c0;
|
|
855
|
+
--click-checkbox-color-variations-var3-check-default: #ffffff;
|
|
856
|
+
--click-checkbox-color-variations-var3-check-hover: #ffffff;
|
|
857
|
+
--click-checkbox-color-variations-var3-check-active: #ffffff;
|
|
858
|
+
--click-checkbox-color-variations-var3-check-disabled: #a0a0a0;
|
|
859
|
+
--click-checkbox-color-variations-var4-background-default: #f6f7fa;
|
|
860
|
+
--click-checkbox-color-variations-var4-background-hover: #f6f7fa;
|
|
861
|
+
--click-checkbox-color-variations-var4-background-active: #ff7729;
|
|
862
|
+
--click-checkbox-color-variations-var4-background-disabled: #dfdfdf;
|
|
863
|
+
--click-checkbox-color-variations-var4-stroke-default: #ff9457;
|
|
864
|
+
--click-checkbox-color-variations-var4-stroke-hover: #ff9457;
|
|
865
|
+
--click-checkbox-color-variations-var4-stroke-active: #ff9457;
|
|
866
|
+
--click-checkbox-color-variations-var4-stroke-disabled: #c0c0c0;
|
|
867
|
+
--click-checkbox-color-variations-var4-check-default: #ffffff;
|
|
868
|
+
--click-checkbox-color-variations-var4-check-hover: #ffffff;
|
|
869
|
+
--click-checkbox-color-variations-var4-check-active: #ffffff;
|
|
870
|
+
--click-checkbox-color-variations-var4-check-disabled: #a0a0a0;
|
|
871
|
+
--click-checkbox-color-variations-var5-background-default: #f6f7fa;
|
|
872
|
+
--click-checkbox-color-variations-var5-background-hover: #f6f7fa;
|
|
873
|
+
--click-checkbox-color-variations-var5-background-active: #089b83;
|
|
874
|
+
--click-checkbox-color-variations-var5-background-disabled: #dfdfdf;
|
|
875
|
+
--click-checkbox-color-variations-var5-stroke-default: #089b83;
|
|
876
|
+
--click-checkbox-color-variations-var5-stroke-hover: #089b83;
|
|
877
|
+
--click-checkbox-color-variations-var5-stroke-active: #089b83;
|
|
878
|
+
--click-checkbox-color-variations-var5-stroke-disabled: #c0c0c0;
|
|
879
|
+
--click-checkbox-color-variations-var5-check-default: #ffffff;
|
|
880
|
+
--click-checkbox-color-variations-var5-check-hover: #ffffff;
|
|
881
|
+
--click-checkbox-color-variations-var5-check-active: #ffffff;
|
|
882
|
+
--click-checkbox-color-variations-var5-check-disabled: #a0a0a0;
|
|
883
|
+
--click-checkbox-color-variations-var6-background-default: #f6f7fa;
|
|
884
|
+
--click-checkbox-color-variations-var6-background-hover: #f6f7fa;
|
|
885
|
+
--click-checkbox-color-variations-var6-background-active: #bb33ff;
|
|
886
|
+
--click-checkbox-color-variations-var6-background-disabled: #dfdfdf;
|
|
887
|
+
--click-checkbox-color-variations-var6-stroke-default: #cc66ff;
|
|
888
|
+
--click-checkbox-color-variations-var6-stroke-hover: #bb33ff;
|
|
889
|
+
--click-checkbox-color-variations-var6-stroke-active: #bb33ff;
|
|
890
|
+
--click-checkbox-color-variations-var6-stroke-disabled: #c0c0c0;
|
|
891
|
+
--click-checkbox-color-variations-var6-check-default: #ffffff;
|
|
892
|
+
--click-checkbox-color-variations-var6-check-hover: #ffffff;
|
|
893
|
+
--click-checkbox-color-variations-var6-check-active: #ffffff;
|
|
894
|
+
--click-checkbox-color-variations-var6-check-disabled: #a0a0a0;
|
|
895
|
+
--click-checkbox-color-check-default: #ffffff;
|
|
896
|
+
--click-checkbox-color-check-hover: #ffffff;
|
|
897
|
+
--click-checkbox-color-check-active: #ffffff;
|
|
898
|
+
--click-checkbox-color-check-disabled: #a0a0a0;
|
|
899
|
+
--click-checkbox-color-background-default: #f6f7fa;
|
|
900
|
+
--click-checkbox-color-background-hover: #f6f7fa;
|
|
901
|
+
--click-checkbox-color-background-active: #161517;
|
|
902
|
+
--click-checkbox-color-background-disabled: #dfdfdf;
|
|
903
|
+
--click-checkbox-color-stroke-default: #b3b6bd;
|
|
904
|
+
--click-checkbox-color-stroke-hover: #b3b6bd;
|
|
905
|
+
--click-checkbox-color-stroke-active: #161517;
|
|
906
|
+
--click-checkbox-color-stroke-disabled: #c0c0c0;
|
|
907
|
+
--click-codeblock-space-x: 1rem;
|
|
908
|
+
--click-codeblock-space-y: 1rem;
|
|
909
|
+
--click-codeblock-space-gap: 1.5rem;
|
|
910
|
+
--click-codeblock-radii-all: 0.25rem;
|
|
911
|
+
--click-codeblock-stroke: 1px;
|
|
912
|
+
--click-codeblock-typography-text-default: 500 0.875rem/1.7 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
913
|
+
--click-codeblock-numbers-size-width: 1.5rem;
|
|
914
|
+
--click-codeblock-darkMode-color-background-default: #282828;
|
|
915
|
+
--click-codeblock-darkMode-color-text-default: #ffffff;
|
|
916
|
+
--click-codeblock-darkMode-color-numbers-default: #c0c0c0;
|
|
917
|
+
--click-codeblock-darkMode-color-button-background-default: #282828;
|
|
918
|
+
--click-codeblock-darkMode-color-button-background-hover: #53575f;
|
|
919
|
+
--click-codeblock-darkMode-color-button-foreground-default: #ffffff;
|
|
920
|
+
--click-codeblock-darkMode-color-stroke-default: #282828;
|
|
921
|
+
--click-codeblock-lightMode-color-background-default: #f6f7fa;
|
|
922
|
+
--click-codeblock-lightMode-color-text-default: #282828;
|
|
923
|
+
--click-codeblock-lightMode-color-numbers-default: #808080;
|
|
924
|
+
--click-codeblock-lightMode-color-button-background-default: #f6f7fa;
|
|
925
|
+
--click-codeblock-lightMode-color-button-background-hover: #53575f;
|
|
926
|
+
--click-codeblock-lightMode-color-button-foreground-default: #a0a0a0;
|
|
927
|
+
--click-codeblock-lightMode-color-stroke-default: #282828;
|
|
928
|
+
--click-codeblock-monacoTheme-parameter-foreground: #53575f;
|
|
929
|
+
--click-codeblock-monacoTheme-parameter-background: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
930
|
+
--click-codeInline-space-x: 0.25rem;
|
|
931
|
+
--click-codeInline-stroke: 1px;
|
|
932
|
+
--click-codeInline-typography-text-default: 500 0.875rem/1.7 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
933
|
+
--click-codeInline-radii-all: 0.25rem;
|
|
934
|
+
--click-codeInline-color-background-default: #f6f7fa;
|
|
935
|
+
--click-codeInline-color-text-default: #161517;
|
|
936
|
+
--click-codeInline-color-stroke-default: #e6e7e9;
|
|
937
|
+
--click-container-space-none: 0;
|
|
938
|
+
--click-container-space-xxs: 0.25rem;
|
|
939
|
+
--click-container-space-xs: 0.5rem;
|
|
940
|
+
--click-container-space-sm: 0.75rem;
|
|
941
|
+
--click-container-space-md: 1rem;
|
|
942
|
+
--click-container-space-lg: 1.5rem;
|
|
943
|
+
--click-container-space-xl: 2rem;
|
|
944
|
+
--click-container-space-xxl: 4rem;
|
|
945
|
+
--click-container-gap-none: 0;
|
|
946
|
+
--click-container-gap-xxs: 0.25rem;
|
|
947
|
+
--click-container-gap-xs: 0.5rem;
|
|
948
|
+
--click-container-gap-sm: 0.75rem;
|
|
949
|
+
--click-container-gap-md: 1rem;
|
|
950
|
+
--click-container-gap-lg: 1.5rem;
|
|
951
|
+
--click-container-gap-xl: 2rem;
|
|
952
|
+
--click-container-gap-xxl: 4rem;
|
|
953
|
+
--click-datePicker-dateOption-space-gap: 2px;
|
|
954
|
+
--click-datePicker-dateOption-radii-default: 0.25rem;
|
|
955
|
+
--click-datePicker-dateOption-radii-range: 0;
|
|
956
|
+
--click-datePicker-dateOption-stroke: 1px;
|
|
957
|
+
--click-datePicker-dateOption-size-height: 2rem;
|
|
958
|
+
--click-datePicker-dateOption-size-width: 2rem;
|
|
959
|
+
--click-datePicker-dateOption-typography-label-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
960
|
+
--click-datePicker-dateOption-typography-label-hover: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
961
|
+
--click-datePicker-dateOption-typography-label-active: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
962
|
+
--click-datePicker-dateOption-typography-label-disabled: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
963
|
+
--click-datePicker-dateOption-typography-label-range: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
964
|
+
--click-datePicker-dateOption-color-label-default: #161517;
|
|
965
|
+
--click-datePicker-dateOption-color-label-hover: #161517;
|
|
966
|
+
--click-datePicker-dateOption-color-label-active: #ffffff;
|
|
967
|
+
--click-datePicker-dateOption-color-label-disabled: #a0a0a0;
|
|
968
|
+
--click-datePicker-dateOption-color-label-range: #161517;
|
|
969
|
+
--click-datePicker-dateOption-color-background-default: #ffffff;
|
|
970
|
+
--click-datePicker-dateOption-color-background-hover: #ffffff;
|
|
971
|
+
--click-datePicker-dateOption-color-background-active: #151515;
|
|
972
|
+
--click-datePicker-dateOption-color-background-disabled: #ffffff;
|
|
973
|
+
--click-datePicker-dateOption-color-background-range: #e6e7e9;
|
|
974
|
+
--click-datePicker-dateOption-color-stroke-default: #ffffff;
|
|
975
|
+
--click-datePicker-dateOption-color-stroke-hover: #151515;
|
|
976
|
+
--click-datePicker-dateOption-color-stroke-active: #151515;
|
|
977
|
+
--click-datePicker-dateOption-color-stroke-disabled: #ffffff;
|
|
978
|
+
--click-datePicker-dateOption-color-stroke-range: #e6e7e9;
|
|
979
|
+
--click-datePicker-space-gap: 0.25rem;
|
|
980
|
+
--click-datePicker-typography-daytitle-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
981
|
+
--click-datePicker-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
982
|
+
--click-datePicker-color-title-default: lch(11.126 1.374 305.43);
|
|
983
|
+
--click-datePicker-color-daytitle-default: #696e79;
|
|
984
|
+
--click-dialog-space-y: 1.5rem;
|
|
985
|
+
--click-dialog-space-x: 2rem;
|
|
986
|
+
--click-dialog-space-gap: 1rem;
|
|
987
|
+
--click-dialog-title-space-gap: 0.25rem;
|
|
988
|
+
--click-dialog-radii-all: 0.5rem;
|
|
989
|
+
--click-dialog-shadow-default: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
990
|
+
--click-dialog-stroke-default: 1px solid #e6e7e9;
|
|
991
|
+
--click-dialog-typography-title-default: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
992
|
+
--click-dialog-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
993
|
+
--click-dialog-color-background-default: #ffffff;
|
|
994
|
+
--click-dialog-color-title-default: lch(11.126 1.374 305.43);
|
|
995
|
+
--click-dialog-color-description-default: #696e79;
|
|
996
|
+
--click-dialog-color-opaqueBackground-default: lch(6.7738 0 none / 0.75);
|
|
997
|
+
--click-docs-typography-titles-lg: 600 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
998
|
+
--click-docs-typography-titles-md: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
999
|
+
--click-docs-typography-titles-sm: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1000
|
+
--click-docs-typography-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1001
|
+
--click-docs-typography-breadcrumbs-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1002
|
+
--click-docs-typography-breadcrumbs-active: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1003
|
+
--click-docs-typography-toc-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1004
|
+
--click-docs-typography-toc-item-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1005
|
+
--click-docs-typography-toc-item-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1006
|
+
--click-docs-typography-toc-item-active: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1007
|
+
--click-field-typography-label-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1008
|
+
--click-field-typography-label-hover: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1009
|
+
--click-field-typography-label-active: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1010
|
+
--click-field-typography-label-disabled: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1011
|
+
--click-field-typography-label-error: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1012
|
+
--click-field-typography-fieldText-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1013
|
+
--click-field-typography-fieldText-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1014
|
+
--click-field-typography-fieldText-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1015
|
+
--click-field-typography-fieldText-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1016
|
+
--click-field-typography-fieldText-error: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1017
|
+
--click-field-typography-placeholder-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1018
|
+
--click-field-typography-format-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1019
|
+
--click-field-typography-format-hover: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1020
|
+
--click-field-typography-format-active: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1021
|
+
--click-field-typography-format-disabled: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1022
|
+
--click-field-typography-format-error: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1023
|
+
--click-field-typography-genericLabel-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1024
|
+
--click-field-typography-genericLabel-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1025
|
+
--click-field-typography-genericLabel-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1026
|
+
--click-field-typography-genericLabel-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1027
|
+
--click-field-typography-genericLabel-error: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1028
|
+
--click-field-type-mobile-label: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1029
|
+
--click-field-type-mobile-field-value: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1030
|
+
--click-field-space-x: 0.75rem;
|
|
1031
|
+
--click-field-space-y: 0.2813rem;
|
|
1032
|
+
--click-field-space-gap: 0.5rem;
|
|
1033
|
+
--click-field-size-icon: 1rem;
|
|
1034
|
+
--click-field-radii-all: 0.25rem;
|
|
1035
|
+
--click-field-mobile-space-x: 0.75rem;
|
|
1036
|
+
--click-field-mobile-space-y: 0.5rem;
|
|
1037
|
+
--click-field-mobile-space-gap: 0.5rem;
|
|
1038
|
+
--click-field-color-genericLabel-default: #161517;
|
|
1039
|
+
--click-field-color-genericLabel-hover: #161517;
|
|
1040
|
+
--click-field-color-genericLabel-active: #161517;
|
|
1041
|
+
--click-field-color-genericLabel-disabled: #a0a0a0;
|
|
1042
|
+
--click-field-color-background-default: #fbfcff;
|
|
1043
|
+
--click-field-color-background-hover: #f6f7fa;
|
|
1044
|
+
--click-field-color-background-active: #ffffff;
|
|
1045
|
+
--click-field-color-background-disabled: #dfdfdf;
|
|
1046
|
+
--click-field-color-background-error: #ffffff;
|
|
1047
|
+
--click-field-color-text-default: #302e32;
|
|
1048
|
+
--click-field-color-text-hover: #302e32;
|
|
1049
|
+
--click-field-color-text-active: #161517;
|
|
1050
|
+
--click-field-color-text-disabled: #a0a0a0;
|
|
1051
|
+
--click-field-color-text-error: #c10000;
|
|
1052
|
+
--click-field-color-stroke-default: #e6e7e9;
|
|
1053
|
+
--click-field-color-stroke-hover: #cccfd3;
|
|
1054
|
+
--click-field-color-stroke-active: #161517;
|
|
1055
|
+
--click-field-color-stroke-disabled: #dfdfdf;
|
|
1056
|
+
--click-field-color-stroke-error: #c10000;
|
|
1057
|
+
--click-field-color-label-default: #696e79;
|
|
1058
|
+
--click-field-color-label-hover: #696e79;
|
|
1059
|
+
--click-field-color-label-active: #161517;
|
|
1060
|
+
--click-field-color-label-disabled: #a0a0a0;
|
|
1061
|
+
--click-field-color-label-error: #c10000;
|
|
1062
|
+
--click-field-color-placeholder-default: #9a9ea7;
|
|
1063
|
+
--click-field-color-placeholder-disabled: #b3b6bd;
|
|
1064
|
+
--click-field-color-format-default: lch(71.998 4.1843 268.48);
|
|
1065
|
+
--click-field-color-format-hover: lch(71.998 4.1843 268.48);
|
|
1066
|
+
--click-field-color-format-active: lch(71.998 4.1843 268.48);
|
|
1067
|
+
--click-field-color-format-disabled: #a0a0a0;
|
|
1068
|
+
--click-field-color-format-error: lch(71.998 4.1843 268.48);
|
|
1069
|
+
--click-fileUpload-sm-icon-size-height: 1.5rem;
|
|
1070
|
+
--click-fileUpload-sm-icon-size-width: 1.5rem;
|
|
1071
|
+
--click-fileUpload-sm-space-gap: 0.75rem;
|
|
1072
|
+
--click-fileUpload-sm-space-x: 1rem;
|
|
1073
|
+
--click-fileUpload-sm-space-y: 0.5rem;
|
|
1074
|
+
--click-fileUpload-sm-radii-all: 0.25rem;
|
|
1075
|
+
--click-fileUpload-sm-color-icon-default: #696e79;
|
|
1076
|
+
--click-fileUpload-md-icon-size-height: 2rem;
|
|
1077
|
+
--click-fileUpload-md-icon-size-width: 2rem;
|
|
1078
|
+
--click-fileUpload-md-space-gap: 0.5rem;
|
|
1079
|
+
--click-fileUpload-md-space-x: 1rem;
|
|
1080
|
+
--click-fileUpload-md-space-y: 0.75rem;
|
|
1081
|
+
--click-fileUpload-md-radii-all: 0.5rem;
|
|
1082
|
+
--click-fileUpload-md-color-icon-default: #161517;
|
|
1083
|
+
--click-fileUpload-typography-title-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1084
|
+
--click-fileUpload-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1085
|
+
--click-fileUpload-hasFile-space-gap: 0.75rem;
|
|
1086
|
+
--click-fileUpload-hasFile-header-space-gap: 0.5rem;
|
|
1087
|
+
--click-fileUpload-transitions-all: all 100ms ease-in 0ms;
|
|
1088
|
+
--click-fileUpload-color-background-default: #ffffff;
|
|
1089
|
+
--click-fileUpload-color-background-hover: #ffffff;
|
|
1090
|
+
--click-fileUpload-color-background-active: #f6f7fa;
|
|
1091
|
+
--click-fileUpload-color-background-error: rgb(100% 13.725% 13.725% / 0.1);
|
|
1092
|
+
--click-fileUpload-color-stroke-default: #e6e7e9;
|
|
1093
|
+
--click-fileUpload-color-stroke-hover: #e6e7e9;
|
|
1094
|
+
--click-fileUpload-color-stroke-active: #b3b6bd;
|
|
1095
|
+
--click-fileUpload-color-stroke-error: rgba(0, 0, 0, 0);
|
|
1096
|
+
--click-fileUpload-color-title-default: #161517;
|
|
1097
|
+
--click-fileUpload-color-title-hover: #161517;
|
|
1098
|
+
--click-fileUpload-color-title-active: #161517;
|
|
1099
|
+
--click-fileUpload-color-title-error: #c10000;
|
|
1100
|
+
--click-fileUpload-color-description-default: #696e79;
|
|
1101
|
+
--click-fileUpload-color-description-hover: #696e79;
|
|
1102
|
+
--click-fileUpload-color-description-active: #696e79;
|
|
1103
|
+
--click-fileUpload-color-description-error: #c10000;
|
|
1104
|
+
--click-flyout-space-default-x: 0;
|
|
1105
|
+
--click-flyout-space-default-y: 1.5rem;
|
|
1106
|
+
--click-flyout-space-default-gap: 1rem;
|
|
1107
|
+
--click-flyout-space-default-top: 0;
|
|
1108
|
+
--click-flyout-space-default-content-x: 1.5rem;
|
|
1109
|
+
--click-flyout-space-default-content-y: 1.5rem;
|
|
1110
|
+
--click-flyout-space-default-content-row-gap: 0.25rem;
|
|
1111
|
+
--click-flyout-space-default-content-column-gap: 1rem;
|
|
1112
|
+
--click-flyout-space-inline-x: 0;
|
|
1113
|
+
--click-flyout-space-inline-y: 0.75rem;
|
|
1114
|
+
--click-flyout-space-inline-gap: 0.75rem;
|
|
1115
|
+
--click-flyout-space-inline-top: 3.5rem;
|
|
1116
|
+
--click-flyout-space-inline-content-x: 0.75rem;
|
|
1117
|
+
--click-flyout-space-inline-content-y: 0.75rem;
|
|
1118
|
+
--click-flyout-space-inline-content-row-gap: 0.25rem;
|
|
1119
|
+
--click-flyout-space-inline-content-column-gap: 0.75rem;
|
|
1120
|
+
--click-flyout-shadow-default: -5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
1121
|
+
--click-flyout-shadow-reverse: 5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
1122
|
+
--click-flyout-size-default-width: 27.5rem;
|
|
1123
|
+
--click-flyout-size-default-height: 100%;
|
|
1124
|
+
--click-flyout-size-wide-width: 37.5rem;
|
|
1125
|
+
--click-flyout-size-wide-height: 100vh;
|
|
1126
|
+
--click-flyout-size-narrow-width: 21rem;
|
|
1127
|
+
--click-flyout-size-narrow-height: 100%;
|
|
1128
|
+
--click-flyout-size-widest-width: 55rem;
|
|
1129
|
+
--click-flyout-size-widest-height: 100vh;
|
|
1130
|
+
--click-flyout-typography-default-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1131
|
+
--click-flyout-typography-default-title-default: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1132
|
+
--click-flyout-typography-inline-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1133
|
+
--click-flyout-typography-inline-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1134
|
+
--click-flyout-color-background-default: #ffffff;
|
|
1135
|
+
--click-flyout-color-title-default: lch(11.126 1.374 305.43);
|
|
1136
|
+
--click-flyout-color-description-default: #696e79;
|
|
1137
|
+
--click-flyout-color-stroke-default: #e6e7e9;
|
|
1138
|
+
--click-genericMenu-item-space-x: 1rem;
|
|
1139
|
+
--click-genericMenu-item-space-y: 0.3438rem;
|
|
1140
|
+
--click-genericMenu-item-space-gap: 0.5rem;
|
|
1141
|
+
--click-genericMenu-item-icon-size-height: 0.9688rem;
|
|
1142
|
+
--click-genericMenu-item-icon-size-width: 0.9688rem;
|
|
1143
|
+
--click-genericMenu-item-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1144
|
+
--click-genericMenu-item-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1145
|
+
--click-genericMenu-item-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1146
|
+
--click-genericMenu-item-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1147
|
+
--click-genericMenu-item-typography-sectionHeader-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1148
|
+
--click-genericMenu-item-typography-subtext-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1149
|
+
--click-genericMenu-item-typography-subtext-hover: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1150
|
+
--click-genericMenu-item-typography-subtext-active: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1151
|
+
--click-genericMenu-item-typography-subtext-disabled: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1152
|
+
--click-genericMenu-item-two-lines-space-x: 1rem;
|
|
1153
|
+
--click-genericMenu-item-two-lines-space-y: 0.3438rem;
|
|
1154
|
+
--click-genericMenu-item-two-lines-space-gap: 0.75rem;
|
|
1155
|
+
--click-genericMenu-item-size-minWidth: 180px;
|
|
1156
|
+
--click-genericMenu-item-color-default-text-default: #161517;
|
|
1157
|
+
--click-genericMenu-item-color-default-text-hover: #161517;
|
|
1158
|
+
--click-genericMenu-item-color-default-text-active: #161517;
|
|
1159
|
+
--click-genericMenu-item-color-default-text-disabled: #a0a0a0;
|
|
1160
|
+
--click-genericMenu-item-color-default-text-muted: #696e79;
|
|
1161
|
+
--click-genericMenu-item-color-default-background-default: #ffffff;
|
|
1162
|
+
--click-genericMenu-item-color-default-background-hover: #f6f7fa;
|
|
1163
|
+
--click-genericMenu-item-color-default-background-active: #ffffff;
|
|
1164
|
+
--click-genericMenu-item-color-default-background-disabled: #ffffff;
|
|
1165
|
+
--click-genericMenu-item-color-default-stroke-default: #e6e7e9;
|
|
1166
|
+
--click-genericMenu-item-color-format-default: lch(71.998 4.1843 268.48);
|
|
1167
|
+
--click-genericMenu-item-color-format-hover: lch(71.998 4.1843 268.48);
|
|
1168
|
+
--click-genericMenu-item-color-format-active: lch(71.998 4.1843 268.48);
|
|
1169
|
+
--click-genericMenu-item-color-format-disabled: #a0a0a0;
|
|
1170
|
+
--click-genericMenu-item-color-subtext-default: #696e79;
|
|
1171
|
+
--click-genericMenu-item-color-subtext-hover: #696e79;
|
|
1172
|
+
--click-genericMenu-item-color-subtext-active: #696e79;
|
|
1173
|
+
--click-genericMenu-item-color-subtext-disabled: #c0c0c0;
|
|
1174
|
+
--click-genericMenu-item-color-danger-text-default: #c10000;
|
|
1175
|
+
--click-genericMenu-item-color-danger-text-hover: #c10000;
|
|
1176
|
+
--click-genericMenu-item-color-danger-text-active: #c10000;
|
|
1177
|
+
--click-genericMenu-item-color-danger-text-disabled: #a0a0a0;
|
|
1178
|
+
--click-genericMenu-item-color-danger-background-default: #ffffff;
|
|
1179
|
+
--click-genericMenu-item-color-danger-background-hover: rgb(100% 13.725% 13.725% / 0.2);
|
|
1180
|
+
--click-genericMenu-item-color-danger-background-active: rgb(100% 13.725% 13.725% / 0.3);
|
|
1181
|
+
--click-genericMenu-item-color-danger-background-disabled: #ffffff;
|
|
1182
|
+
--click-genericMenu-itemCustom-typography-label-sm: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1183
|
+
--click-genericMenu-itemCustom-typography-label-lg: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1184
|
+
--click-genericMenu-button-space-gap: 0.25rem;
|
|
1185
|
+
--click-genericMenu-button-space-y: 0.5rem;
|
|
1186
|
+
--click-genericMenu-button-typography-label-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1187
|
+
--click-genericMenu-button-typography-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1188
|
+
--click-genericMenu-button-typography-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1189
|
+
--click-genericMenu-button-color-background-default: #f6f7fa;
|
|
1190
|
+
--click-genericMenu-button-color-label-default: #696e79;
|
|
1191
|
+
--click-genericMenu-button-color-stroke-default: #e6e7e9;
|
|
1192
|
+
--click-genericMenu-panel-radii-all: 0.25rem;
|
|
1193
|
+
--click-genericMenu-panel-shadow-default: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
1194
|
+
--click-genericMenu-panel-size-height: 2rem;
|
|
1195
|
+
--click-genericMenu-panel-color-background-default: #ffffff;
|
|
1196
|
+
--click-genericMenu-panel-color-stroke-default: #e6e7e9;
|
|
1197
|
+
--click-genericMenu-autocomplete-typography-results-label-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1198
|
+
--click-genericMenu-autocomplete-typography-search-placeholder-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1199
|
+
--click-genericMenu-autocomplete-typography-search-term-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1200
|
+
--click-genericMenu-autocomplete-search-stroke-default: 2px solid #e6e7e9;
|
|
1201
|
+
--click-genericMenu-autocomplete-color-placeholder-default: #9a9ea7;
|
|
1202
|
+
--click-genericMenu-autocomplete-color-searchTerm-default: #161517;
|
|
1203
|
+
--click-genericMenu-autocomplete-color-background-default: #ffffff;
|
|
1204
|
+
--click-genericMenu-autocomplete-color-stroke-default: #e6e7e9;
|
|
1205
|
+
--click-genericMenu-sectionHeader-space-bottom: 0.3438rem;
|
|
1206
|
+
--click-genericMenu-sectionHeader-space-top: 0.5rem;
|
|
1207
|
+
--click-genericMenu-placeholder-space-gap: 0.5rem;
|
|
1208
|
+
--click-grid-header-cell-space-y: 0.4375rem;
|
|
1209
|
+
--click-grid-header-cell-space-x: 0.5rem;
|
|
1210
|
+
--click-grid-header-cell-size-height: 2rem;
|
|
1211
|
+
--click-grid-header-cell-color-background-default: #f6f7fa;
|
|
1212
|
+
--click-grid-header-cell-color-background-selectIndirect: lch(95.61 5.8361 264.18);
|
|
1213
|
+
--click-grid-header-cell-color-background-selectDirect: #e7effd;
|
|
1214
|
+
--click-grid-header-cell-color-title-default: #696e79;
|
|
1215
|
+
--click-grid-header-cell-color-title-selectIndirect: #161517;
|
|
1216
|
+
--click-grid-header-cell-color-title-selectDirect: #161517;
|
|
1217
|
+
--click-grid-header-cell-color-stroke-default: lch(89.319 1.0747 265.86);
|
|
1218
|
+
--click-grid-header-cell-color-stroke-selectIndirect: #e7effd;
|
|
1219
|
+
--click-grid-header-cell-color-stroke-selectDirect: lch(86.135 15.126 266.4);
|
|
1220
|
+
--click-grid-header-title-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1221
|
+
--click-grid-body-cell-space-y: 5.5px;
|
|
1222
|
+
--click-grid-body-cell-space-x: 0.5rem;
|
|
1223
|
+
--click-grid-body-cell-size-height: 2rem;
|
|
1224
|
+
--click-grid-body-cell-color-background-default: #ffffff;
|
|
1225
|
+
--click-grid-body-cell-color-background-selectIndirect: lch(94.146 7.7815 264.18 / 0.2);
|
|
1226
|
+
--click-grid-body-cell-color-background-selectDirect: lch(94.146 7.7815 264.18 / 0.2);
|
|
1227
|
+
--click-grid-body-cell-color-stroke-default: #e6e7e9;
|
|
1228
|
+
--click-grid-body-cell-color-stroke-selectIndirect: #d0dffb;
|
|
1229
|
+
--click-grid-body-cell-color-stroke-selectDirect: #437eef;
|
|
1230
|
+
--click-grid-body-cell-color-text-default: lch(7.1704 1.4351 305.43);
|
|
1231
|
+
--click-grid-body-cell-color-text-selectIndirect: #161517;
|
|
1232
|
+
--click-grid-body-cell-color-text-selectDirect: #161517;
|
|
1233
|
+
--click-grid-cell-text-default: 500 0.875rem/1.5 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
1234
|
+
--click-grid-radii-none: 0;
|
|
1235
|
+
--click-grid-radii-sm: 0.25rem;
|
|
1236
|
+
--click-grid-radii-md: 0.5rem;
|
|
1237
|
+
--click-grid-radii-lg: 0.75rem;
|
|
1238
|
+
--click-grid-global-color-stroke-default: #e6e7e9;
|
|
1239
|
+
--click-grid-global-color-background-default: #ffffff;
|
|
1240
|
+
--click-gridContainer-gap-none: 0;
|
|
1241
|
+
--click-gridContainer-gap-xxs: 0.25rem;
|
|
1242
|
+
--click-gridContainer-gap-xs: 0.5rem;
|
|
1243
|
+
--click-gridContainer-gap-sm: 0.75rem;
|
|
1244
|
+
--click-gridContainer-gap-md: 1rem;
|
|
1245
|
+
--click-gridContainer-gap-lg: 1.5rem;
|
|
1246
|
+
--click-gridContainer-gap-xl: 2rem;
|
|
1247
|
+
--click-gridContainer-gap-xxl: 4rem;
|
|
1248
|
+
--click-gridContainer-gap-unset: '';
|
|
1249
|
+
--click-icon-space-xs-all: 0.25rem;
|
|
1250
|
+
--click-icon-space-sm-all: 0.25rem;
|
|
1251
|
+
--click-icon-space-md-all: 0.365rem;
|
|
1252
|
+
--click-icon-space-lg-all: 0.5rem;
|
|
1253
|
+
--click-icon-space-xl-all: 0.75rem;
|
|
1254
|
+
--click-icon-space-xxl-all: 1rem;
|
|
1255
|
+
--click-icon-color-background-default: rgba(0, 0, 0, 0);
|
|
1256
|
+
--click-icon-color-background-success: rgb(20% 100% 26.667% / 0.1);
|
|
1257
|
+
--click-icon-color-background-neutral: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
1258
|
+
--click-icon-color-background-danger: rgb(100% 13.725% 13.725% / 0.1);
|
|
1259
|
+
--click-icon-color-background-info: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
1260
|
+
--click-icon-color-background-warning: rgb(100% 46.667% 16.078% / 0.1);
|
|
1261
|
+
--click-icon-color-text-default: rgba(0, 0, 0, 0);
|
|
1262
|
+
--click-icon-color-text-success: #008a0b;
|
|
1263
|
+
--click-icon-color-text-neutral: #53575f;
|
|
1264
|
+
--click-icon-color-text-danger: #c10000;
|
|
1265
|
+
--click-icon-color-text-info: #437eef;
|
|
1266
|
+
--click-icon-color-text-warning: #a33c00;
|
|
1267
|
+
--click-icon-color-stroke-default: rgba(0, 0, 0, 0);
|
|
1268
|
+
--click-icon-color-stroke-success: rgb(20% 100% 26.667% / 0.05);
|
|
1269
|
+
--click-icon-color-stroke-neutral: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
1270
|
+
--click-icon-color-stroke-danger: rgb(100% 13.725% 13.725% / 0.05);
|
|
1271
|
+
--click-icon-color-stroke-info: rgb(26.275% 49.412% 93.725% / 0.05);
|
|
1272
|
+
--click-icon-color-stroke-warning: rgb(100% 46.667% 16.078% / 0.05);
|
|
1273
|
+
--click-image-sm-size-height: 1rem;
|
|
1274
|
+
--click-image-sm-size-width: 1rem;
|
|
1275
|
+
--click-image-xs-size-height: 0.75rem;
|
|
1276
|
+
--click-image-xs-size-width: 0.75rem;
|
|
1277
|
+
--click-image-md-size-height: 1.25rem;
|
|
1278
|
+
--click-image-md-size-width: 1.25rem;
|
|
1279
|
+
--click-image-lg-size-height: 1.5rem;
|
|
1280
|
+
--click-image-lg-size-width: 1.5rem;
|
|
1281
|
+
--click-image-xl-size-height: 2rem;
|
|
1282
|
+
--click-image-xl-size-width: 2rem;
|
|
1283
|
+
--click-image-xxl-size-height: 4rem;
|
|
1284
|
+
--click-image-xxl-size-width: 4rem;
|
|
1285
|
+
--click-image-borderWidth-default: 1.5px;
|
|
1286
|
+
--click-image-borderWidth-thin: 1px;
|
|
1287
|
+
--click-image-color-stroke: #161517;
|
|
1288
|
+
--click-link-space-md-gap: 0.25rem;
|
|
1289
|
+
--click-link-space-sm-gap: 2px;
|
|
1290
|
+
--click-link-icon-size-sm-height: 0.75rem;
|
|
1291
|
+
--click-link-icon-size-sm-width: 0.75rem;
|
|
1292
|
+
--click-link-icon-size-md-height: 1rem;
|
|
1293
|
+
--click-link-icon-size-md-width: 1rem;
|
|
1294
|
+
--click-panel-strokeWidth-default: 1px;
|
|
1295
|
+
--click-panel-radii-none: 0;
|
|
1296
|
+
--click-panel-radii-sm: 0.25rem;
|
|
1297
|
+
--click-panel-radii-md: 0.5rem;
|
|
1298
|
+
--click-panel-radii-lg: 0.75rem;
|
|
1299
|
+
--click-panel-stroke-default: 1px solid #e6e7e9;
|
|
1300
|
+
--click-panel-shadow-default: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
1301
|
+
--click-panel-space-y-none: 0;
|
|
1302
|
+
--click-panel-space-y-xs: 0.5rem;
|
|
1303
|
+
--click-panel-space-y-sm: 0.75rem;
|
|
1304
|
+
--click-panel-space-y-md: 1rem;
|
|
1305
|
+
--click-panel-space-y-lg: 1.5rem;
|
|
1306
|
+
--click-panel-space-y-xl: 2rem;
|
|
1307
|
+
--click-panel-space-x-none: 0;
|
|
1308
|
+
--click-panel-space-x-xs: 0.5rem;
|
|
1309
|
+
--click-panel-space-x-sm: 0.75rem;
|
|
1310
|
+
--click-panel-space-x-md: 1rem;
|
|
1311
|
+
--click-panel-space-x-lg: 1.5rem;
|
|
1312
|
+
--click-panel-space-x-xl: 2rem;
|
|
1313
|
+
--click-panel-space-gap-none: 0;
|
|
1314
|
+
--click-panel-space-gap-xs: 0.5rem;
|
|
1315
|
+
--click-panel-space-gap-sm: 0.75rem;
|
|
1316
|
+
--click-panel-space-gap-md: 1rem;
|
|
1317
|
+
--click-panel-space-gap-lg: 1.5rem;
|
|
1318
|
+
--click-panel-space-gap-xl: 2rem;
|
|
1319
|
+
--click-panel-color-background-default: #ffffff;
|
|
1320
|
+
--click-panel-color-background-muted: #f6f7fa;
|
|
1321
|
+
--click-panel-color-background-transparent: rgba(0, 0, 0, 0);
|
|
1322
|
+
--click-panel-color-stroke-default: #e6e7e9;
|
|
1323
|
+
--click-popover-space-y: 1rem;
|
|
1324
|
+
--click-popover-space-x: 1.5rem;
|
|
1325
|
+
--click-popover-space-gap: 0.75rem;
|
|
1326
|
+
--click-popover-radii-all: 0.25rem;
|
|
1327
|
+
--click-popover-shadow-default: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
1328
|
+
--click-popover-icon-size-height: 1.25rem;
|
|
1329
|
+
--click-popover-icon-size-width: 1.25rem;
|
|
1330
|
+
--click-popover-color-panel-background-default: #ffffff;
|
|
1331
|
+
--click-popover-color-panel-stroke-default: #e6e7e9;
|
|
1332
|
+
--click-radio-radii-all: 9999px;
|
|
1333
|
+
--click-radio-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1334
|
+
--click-radio-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1335
|
+
--click-radio-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1336
|
+
--click-radio-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1337
|
+
--click-radio-color-background-default: #f6f7fa;
|
|
1338
|
+
--click-radio-color-background-hover: #f6f7fa;
|
|
1339
|
+
--click-radio-color-background-active: #161517;
|
|
1340
|
+
--click-radio-color-background-disabled: #dfdfdf;
|
|
1341
|
+
--click-radio-color-stroke-default: #b3b6bd;
|
|
1342
|
+
--click-radio-color-stroke-hover: #b3b6bd;
|
|
1343
|
+
--click-radio-color-stroke-active: #151515;
|
|
1344
|
+
--click-radio-color-stroke-disabled: #c0c0c0;
|
|
1345
|
+
--click-radio-color-indicator-default: #ffffff;
|
|
1346
|
+
--click-radio-color-indicator-hover: #f6f7fa;
|
|
1347
|
+
--click-radio-color-indicator-active: #ffffff;
|
|
1348
|
+
--click-radio-color-indicator-disabled: #a0a0a0;
|
|
1349
|
+
--click-separator-horizontal-space-y-xs: 0;
|
|
1350
|
+
--click-separator-horizontal-space-y-sm: 0.25rem;
|
|
1351
|
+
--click-separator-horizontal-space-y-md: 0.5rem;
|
|
1352
|
+
--click-separator-horizontal-space-y-ml: 0.75rem;
|
|
1353
|
+
--click-separator-horizontal-space-y-lg: 1rem;
|
|
1354
|
+
--click-separator-horizontal-space-y-xl: 1.5rem;
|
|
1355
|
+
--click-separator-horizontal-space-y-xxl: 2rem;
|
|
1356
|
+
--click-separator-horizontal-space-x-all: 0;
|
|
1357
|
+
--click-separator-vertical-space-x-xs: 0;
|
|
1358
|
+
--click-separator-vertical-space-x-sm: 0.25rem;
|
|
1359
|
+
--click-separator-vertical-space-x-md: 0.5rem;
|
|
1360
|
+
--click-separator-vertical-space-x-lg: 1rem;
|
|
1361
|
+
--click-separator-vertical-space-x-xl: 1.5rem;
|
|
1362
|
+
--click-separator-vertical-space-x-xxl: 2rem;
|
|
1363
|
+
--click-separator-vertical-space-y-all: 0;
|
|
1364
|
+
--click-separator-color-stroke-default: #e6e7e9;
|
|
1365
|
+
--click-sidebar-navigation-item-radii-all: 0.25rem;
|
|
1366
|
+
--click-sidebar-navigation-item-default-space-right: 0.75rem;
|
|
1367
|
+
--click-sidebar-navigation-item-default-space-y: 0.2813rem;
|
|
1368
|
+
--click-sidebar-navigation-item-default-space-gap: 0.75rem;
|
|
1369
|
+
--click-sidebar-navigation-item-default-space-left: 0;
|
|
1370
|
+
--click-sidebar-navigation-item-typography-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1371
|
+
--click-sidebar-navigation-item-typography-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1372
|
+
--click-sidebar-navigation-item-typography-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1373
|
+
--click-sidebar-navigation-item-typography-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1374
|
+
--click-sidebar-navigation-item-mobile-typography-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1375
|
+
--click-sidebar-navigation-item-mobile-typography-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1376
|
+
--click-sidebar-navigation-item-mobile-typography-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1377
|
+
--click-sidebar-navigation-item-mobile-space-left: 0;
|
|
1378
|
+
--click-sidebar-navigation-item-mobile-space-right: 0.75rem;
|
|
1379
|
+
--click-sidebar-navigation-item-mobile-space-y: 0.75rem;
|
|
1380
|
+
--click-sidebar-navigation-item-mobile-space-gap: 0.75rem;
|
|
1381
|
+
--click-sidebar-navigation-item-collapsible-space-left: 0;
|
|
1382
|
+
--click-sidebar-navigation-item-collapsible-space-right: 0.75rem;
|
|
1383
|
+
--click-sidebar-navigation-item-collapsible-space-y: 0.2813rem;
|
|
1384
|
+
--click-sidebar-navigation-item-collapsible-space-gap: 0.75rem;
|
|
1385
|
+
--click-sidebar-navigation-item-icon-size-height: 1rem;
|
|
1386
|
+
--click-sidebar-navigation-item-icon-size-width: 1rem;
|
|
1387
|
+
--click-sidebar-navigation-item-global-gap: 2px;
|
|
1388
|
+
--click-sidebar-navigation-title-typography-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1389
|
+
--click-sidebar-navigation-title-typography-hover: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1390
|
+
--click-sidebar-navigation-title-typography-active: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1391
|
+
--click-sidebar-navigation-title-typography-disabled: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1392
|
+
--click-sidebar-navigation-subItem-default-space-left: 2.75rem;
|
|
1393
|
+
--click-sidebar-navigation-subItem-default-space-right: 0.75rem;
|
|
1394
|
+
--click-sidebar-navigation-subItem-default-space-y: 0.2813rem;
|
|
1395
|
+
--click-sidebar-navigation-subItem-mobile-space-left: 2.75rem;
|
|
1396
|
+
--click-sidebar-navigation-subItem-mobile-space-right: 0.75rem;
|
|
1397
|
+
--click-sidebar-navigation-subItem-mobile-space-y: 0.75rem;
|
|
1398
|
+
--click-sidebar-navigation-subItem-mobile-space-gap: 0.75rem;
|
|
1399
|
+
--click-sidebar-navigation-subItem-mobile-typography-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1400
|
+
--click-sidebar-navigation-subItem-mobile-typography-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1401
|
+
--click-sidebar-navigation-subItem-mobile-typography-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1402
|
+
--click-sidebar-navigation-subItem-radii-all: 0.25rem;
|
|
1403
|
+
--click-sidebar-navigation-subItem-typography-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1404
|
+
--click-sidebar-navigation-subItem-typography-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1405
|
+
--click-sidebar-navigation-subItem-typography-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1406
|
+
--click-sidebar-navigation-subItem-typography-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1407
|
+
--click-sidebar-navigation-dragControl-separator-size-height: 0.125rem;
|
|
1408
|
+
--click-sidebar-main-color-background-default: #ffffff;
|
|
1409
|
+
--click-sidebar-main-color-text-default: #161517;
|
|
1410
|
+
--click-sidebar-main-color-text-muted: #696e79;
|
|
1411
|
+
--click-sidebar-main-color-stroke-default: #e6e7e9;
|
|
1412
|
+
--click-sidebar-main-navigation-item-color-background-default: rgba(0, 0, 0, 0);
|
|
1413
|
+
--click-sidebar-main-navigation-item-color-background-hover: lch(91.609 1.1023 265.86 / 0.6);
|
|
1414
|
+
--click-sidebar-main-navigation-item-color-background-active: #e6e7e9;
|
|
1415
|
+
--click-sidebar-main-navigation-item-color-text-default: #161517;
|
|
1416
|
+
--click-sidebar-main-navigation-item-color-text-hover: #161517;
|
|
1417
|
+
--click-sidebar-main-navigation-item-color-text-active: #161517;
|
|
1418
|
+
--click-sidebar-main-navigation-item-color-text-muted: #696e79;
|
|
1419
|
+
--click-sidebar-main-navigation-item-color-text-disabled: #a0a0a0;
|
|
1420
|
+
--click-sidebar-main-navigation-item-color-icon-default: #696e79;
|
|
1421
|
+
--click-sidebar-main-navigation-item-color-icon-disabled: #a0a0a0;
|
|
1422
|
+
--click-sidebar-main-navigation-title-color-default: #696e79;
|
|
1423
|
+
--click-sidebar-main-navigation-title-color-hover: #696e79;
|
|
1424
|
+
--click-sidebar-main-navigation-title-color-active: #696e79;
|
|
1425
|
+
--click-sidebar-main-navigation-subItem-color-text-default: #696e79;
|
|
1426
|
+
--click-sidebar-main-navigation-subItem-color-text-hover: #161517;
|
|
1427
|
+
--click-sidebar-main-navigation-subItem-color-text-active: #161517;
|
|
1428
|
+
--click-sidebar-main-navigation-subItem-color-text-disabled: #a0a0a0;
|
|
1429
|
+
--click-sidebar-main-navigation-subItem-color-background-default: rgba(0, 0, 0, 0);
|
|
1430
|
+
--click-sidebar-main-navigation-subItem-color-background-hover: lch(91.609 1.1023 265.86 / 0.6);
|
|
1431
|
+
--click-sidebar-main-navigation-subItem-color-background-active: rgba(0, 0, 0, 0);
|
|
1432
|
+
--click-sidebar-main-navigation-subItem-color-background-disabled: rgba(0, 0, 0, 0);
|
|
1433
|
+
--click-sidebar-main-navigation-subItem-color-icon-default: #696e79;
|
|
1434
|
+
--click-sidebar-main-navigation-subItem-color-icon-disabled: #a0a0a0;
|
|
1435
|
+
--click-sidebar-main-navigation-dragControl-separator-color-default: #161517;
|
|
1436
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-disabled: #a0a0a0;
|
|
1437
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-default: #161517;
|
|
1438
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-hover: #161517;
|
|
1439
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-active: #161517;
|
|
1440
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-muted: #696e79;
|
|
1441
|
+
--click-sidebar-sqlSidebar-navigation-item-color-background-default: rgba(0, 0, 0, 0);
|
|
1442
|
+
--click-sidebar-sqlSidebar-navigation-item-color-background-hover: lch(91.609 1.1023 265.86 / 0.6);
|
|
1443
|
+
--click-sidebar-sqlSidebar-navigation-item-color-background-active: #e6e7e9;
|
|
1444
|
+
--click-sidebar-sqlSidebar-navigation-item-color-icon-default: #696e79;
|
|
1445
|
+
--click-sidebar-sqlSidebar-navigation-title-color-default: #696e79;
|
|
1446
|
+
--click-sidebar-sqlSidebar-navigation-title-color-hover: #696e79;
|
|
1447
|
+
--click-sidebar-sqlSidebar-navigation-title-color-active: #696e79;
|
|
1448
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-default: #696e79;
|
|
1449
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-hover: #161517;
|
|
1450
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-active: #161517;
|
|
1451
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-disabled: #a0a0a0;
|
|
1452
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-background-default: rgba(0, 0, 0, 0);
|
|
1453
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-background-hover: lch(91.609 1.1023 265.86 / 0.6);
|
|
1454
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-background-active: rgba(0, 0, 0, 0);
|
|
1455
|
+
--click-sidebar-sqlSidebar-navigation-dragControl-separator-color-default: #161517;
|
|
1456
|
+
--click-sidebar-sqlSidebar-color-background-default: #f6f7fa;
|
|
1457
|
+
--click-sidebar-sqlSidebar-color-stroke-default: #e6e7e9;
|
|
1458
|
+
--click-spacer-horizontal-space-y-xs: 0;
|
|
1459
|
+
--click-spacer-horizontal-space-y-sm: 0.25rem;
|
|
1460
|
+
--click-spacer-horizontal-space-y-md: 0.5rem;
|
|
1461
|
+
--click-spacer-horizontal-space-y-ml: 0.75rem;
|
|
1462
|
+
--click-spacer-horizontal-space-y-lg: 1rem;
|
|
1463
|
+
--click-spacer-horizontal-space-y-xl: 1.5rem;
|
|
1464
|
+
--click-spacer-horizontal-space-y-xxl: 2rem;
|
|
1465
|
+
--click-spacer-horizontal-space-x-all: 0;
|
|
1466
|
+
--click-stepper-vertical-numbered-connector-size-width: 0.1875rem;
|
|
1467
|
+
--click-stepper-vertical-numbered-connector-stroke-default: 2px;
|
|
1468
|
+
--click-stepper-vertical-numbered-connector-color-stroke-incomplete: #c0c0c0;
|
|
1469
|
+
--click-stepper-vertical-numbered-connector-color-stroke-complete: #1f1f1c;
|
|
1470
|
+
--click-stepper-vertical-numbered-connector-color-stroke-active: #c0c0c0;
|
|
1471
|
+
--click-stepper-vertical-numbered-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1472
|
+
--click-stepper-vertical-numbered-step-typography-number-default: 700 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1473
|
+
--click-stepper-vertical-numbered-step-size-height: 1.5rem;
|
|
1474
|
+
--click-stepper-vertical-numbered-step-size-width: 1.5rem;
|
|
1475
|
+
--click-stepper-vertical-numbered-step-size-icon-height: 0.75rem;
|
|
1476
|
+
--click-stepper-vertical-numbered-step-size-icon-width: 0.75rem;
|
|
1477
|
+
--click-stepper-vertical-numbered-step-stroke-default: 2px;
|
|
1478
|
+
--click-stepper-vertical-numbered-step-radii-default: 9999px;
|
|
1479
|
+
--click-stepper-vertical-numbered-step-color-stroke-incomplete: #c0c0c0;
|
|
1480
|
+
--click-stepper-vertical-numbered-step-color-stroke-complete: #1f1f1c;
|
|
1481
|
+
--click-stepper-vertical-numbered-step-color-stroke-active: #1f1f1c;
|
|
1482
|
+
--click-stepper-vertical-numbered-step-color-background-incomplete: #ffffff;
|
|
1483
|
+
--click-stepper-vertical-numbered-step-color-background-complete: #ffffff;
|
|
1484
|
+
--click-stepper-vertical-numbered-step-color-background-active: #1f1f1c;
|
|
1485
|
+
--click-stepper-vertical-numbered-step-color-icon-incomplete: #1f1f1c;
|
|
1486
|
+
--click-stepper-vertical-numbered-step-color-icon-complete: #1f1f1c;
|
|
1487
|
+
--click-stepper-vertical-numbered-step-color-icon-active: #ffffff;
|
|
1488
|
+
--click-stepper-vertical-numbered-content-space-gap-x: 1rem;
|
|
1489
|
+
--click-stepper-vertical-numbered-content-space-gap-y: 0.5rem;
|
|
1490
|
+
--click-stepper-vertical-numbered-content-space-left: 2.75rem;
|
|
1491
|
+
--click-stepper-vertical-numbered-content-space-bottom-default: 2.5rem;
|
|
1492
|
+
--click-stepper-vertical-numbered-content-space-bottom-active: 1.5rem;
|
|
1493
|
+
--click-stepper-vertical-numbered-color-title-incomplete: #c0c0c0;
|
|
1494
|
+
--click-stepper-vertical-numbered-color-title-complete: #696e79;
|
|
1495
|
+
--click-stepper-vertical-numbered-color-title-active: #161517;
|
|
1496
|
+
--click-stepper-vertical-bulleted-connector-size-width: 0.1875rem;
|
|
1497
|
+
--click-stepper-vertical-bulleted-connector-stroke-default: 2px;
|
|
1498
|
+
--click-stepper-vertical-bulleted-connector-color-stroke-incomplete: #c0c0c0;
|
|
1499
|
+
--click-stepper-vertical-bulleted-connector-color-stroke-complete: #1f1f1c;
|
|
1500
|
+
--click-stepper-vertical-bulleted-connector-color-stroke-active: #c0c0c0;
|
|
1501
|
+
--click-stepper-vertical-bulleted-step-size-height: 1rem;
|
|
1502
|
+
--click-stepper-vertical-bulleted-step-size-width: 1rem;
|
|
1503
|
+
--click-stepper-vertical-bulleted-step-size-icon-height: 0.75rem;
|
|
1504
|
+
--click-stepper-vertical-bulleted-step-size-icon-width: 0.75rem;
|
|
1505
|
+
--click-stepper-vertical-bulleted-step-radii-default: 9999px;
|
|
1506
|
+
--click-stepper-vertical-bulleted-step-stroke-default: 2px;
|
|
1507
|
+
--click-stepper-vertical-bulleted-step-color-stroke-incomplete: #c0c0c0;
|
|
1508
|
+
--click-stepper-vertical-bulleted-step-color-stroke-complete: #1f1f1c;
|
|
1509
|
+
--click-stepper-vertical-bulleted-step-color-stroke-active: #1f1f1c;
|
|
1510
|
+
--click-stepper-vertical-bulleted-step-color-background-incomplete: #ffffff;
|
|
1511
|
+
--click-stepper-vertical-bulleted-step-color-background-complete: #ffffff;
|
|
1512
|
+
--click-stepper-vertical-bulleted-step-color-background-active: #ffffff;
|
|
1513
|
+
--click-stepper-vertical-bulleted-step-color-icon-incomplete: #ffffff;
|
|
1514
|
+
--click-stepper-vertical-bulleted-step-color-icon-complete: #1f1f1c;
|
|
1515
|
+
--click-stepper-vertical-bulleted-step-color-icon-active: #ffffff;
|
|
1516
|
+
--click-stepper-vertical-bulleted-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1517
|
+
--click-stepper-vertical-bulleted-content-space-gap-x: 1rem;
|
|
1518
|
+
--click-stepper-vertical-bulleted-content-space-gap-y: 0.5rem;
|
|
1519
|
+
--click-stepper-vertical-bulleted-content-space-left: 2.25rem;
|
|
1520
|
+
--click-stepper-vertical-bulleted-content-space-bottom-default: 2.5rem;
|
|
1521
|
+
--click-stepper-vertical-bulleted-content-space-bottom-active: 1.5rem;
|
|
1522
|
+
--click-stepper-vertical-bulleted-color-title-incomplete: #c0c0c0;
|
|
1523
|
+
--click-stepper-vertical-bulleted-color-title-complete: #696e79;
|
|
1524
|
+
--click-stepper-vertical-bulleted-color-title-active: #161517;
|
|
1525
|
+
--click-switch-space-gap: 0.5rem;
|
|
1526
|
+
--click-switch-radii-all: 9999px;
|
|
1527
|
+
--click-switch-size-width: 2rem;
|
|
1528
|
+
--click-switch-size-height: 1rem;
|
|
1529
|
+
--click-switch-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1530
|
+
--click-switch-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1531
|
+
--click-switch-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1532
|
+
--click-switch-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1533
|
+
--click-switch-color-background-default: #cccfd3;
|
|
1534
|
+
--click-switch-color-background-active: #151515;
|
|
1535
|
+
--click-switch-color-background-disabled: #dfdfdf;
|
|
1536
|
+
--click-switch-color-stroke-default: #cccfd3;
|
|
1537
|
+
--click-switch-color-stroke-active: #161517;
|
|
1538
|
+
--click-switch-color-stroke-disabled: #dfdfdf;
|
|
1539
|
+
--click-switch-color-indicator-default: #ffffff;
|
|
1540
|
+
--click-switch-color-indicator-active: #ffffff;
|
|
1541
|
+
--click-switch-color-indicator-disabled: #a0a0a0;
|
|
1542
|
+
--click-table-header-title-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1543
|
+
--click-table-header-cell-space-md-y: 0.75rem;
|
|
1544
|
+
--click-table-header-cell-space-md-x: 1rem;
|
|
1545
|
+
--click-table-header-cell-space-sm-y: 0.5rem;
|
|
1546
|
+
--click-table-header-cell-space-sm-x: 1rem;
|
|
1547
|
+
--click-table-header-color-background-default: #f6f7fa;
|
|
1548
|
+
--click-table-header-color-background-hover: #f6f7fa;
|
|
1549
|
+
--click-table-header-color-background-active: #e7effd;
|
|
1550
|
+
--click-table-header-color-title-default: #161517;
|
|
1551
|
+
--click-table-header-color-icon-default: #161517;
|
|
1552
|
+
--click-table-header-color-checkbox-background-default: #cccfd3;
|
|
1553
|
+
--click-table-header-color-checkbox-border-default: #808691;
|
|
1554
|
+
--click-table-cell-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1555
|
+
--click-table-cell-label-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1556
|
+
--click-table-cell-stroke: 1px;
|
|
1557
|
+
--click-table-radii-all: 0.25rem;
|
|
1558
|
+
--click-table-body-cell-space-md-y: 1rem;
|
|
1559
|
+
--click-table-body-cell-space-md-x: 1rem;
|
|
1560
|
+
--click-table-body-cell-space-sm-y: 0.5rem;
|
|
1561
|
+
--click-table-body-cell-space-sm-x: 1rem;
|
|
1562
|
+
--click-table-mobile-cell-space-y: 1rem;
|
|
1563
|
+
--click-table-mobile-cell-space-x: 1rem;
|
|
1564
|
+
--click-table-mobile-cell-space-gap: 0.5rem;
|
|
1565
|
+
--click-table-row-color-background-default: #ffffff;
|
|
1566
|
+
--click-table-row-color-background-hover: lch(94.146 7.7815 264.18 / 0.2);
|
|
1567
|
+
--click-table-row-color-background-active: lch(94.146 7.7815 264.18 / 0.2);
|
|
1568
|
+
--click-table-row-color-stroke-default: #e6e7e9;
|
|
1569
|
+
--click-table-row-color-text-default: #161517;
|
|
1570
|
+
--click-table-row-color-text-disabled: #a0a0a0;
|
|
1571
|
+
--click-table-row-color-link-default: #437eef;
|
|
1572
|
+
--click-table-row-color-label-default: #696e79;
|
|
1573
|
+
--click-table-row-color-barChart-default: #dfdfdf;
|
|
1574
|
+
--click-table-row-color-barChart-hover: #c0c0c0;
|
|
1575
|
+
--click-table-global-color-stroke-default: #e6e7e9;
|
|
1576
|
+
--click-table-global-color-background-default: #ffffff;
|
|
1577
|
+
--click-tabs-space-y: 0.5rem;
|
|
1578
|
+
--click-tabs-space-x: 0.75rem;
|
|
1579
|
+
--click-tabs-radii-all: 0.25rem;
|
|
1580
|
+
--click-tabs-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1581
|
+
--click-tabs-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1582
|
+
--click-tabs-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1583
|
+
--click-tabs-basic-strokeWidth-default: 1px;
|
|
1584
|
+
--click-tabs-basic-strokeWidth-hover: 1px;
|
|
1585
|
+
--click-tabs-basic-strokeWidth-active: 2px;
|
|
1586
|
+
--click-tabs-basic-strokeWidth-global: 1px;
|
|
1587
|
+
--click-tabs-basic-color-background-default: rgba(0, 0, 0, 0);
|
|
1588
|
+
--click-tabs-basic-color-background-hover: #f6f7fa;
|
|
1589
|
+
--click-tabs-basic-color-background-active: rgba(0, 0, 0, 0);
|
|
1590
|
+
--click-tabs-basic-color-text-default: #696e79;
|
|
1591
|
+
--click-tabs-basic-color-text-hover: #161517;
|
|
1592
|
+
--click-tabs-basic-color-text-active: #161517;
|
|
1593
|
+
--click-tabs-basic-color-stroke-default: rgba(0, 0, 0, 0);
|
|
1594
|
+
--click-tabs-basic-color-stroke-hover: rgba(0, 0, 0, 0);
|
|
1595
|
+
--click-tabs-basic-color-stroke-active: #151515;
|
|
1596
|
+
--click-tabs-basic-color-global-default: #e6e7e9;
|
|
1597
|
+
--click-tabs-fileTabs-icon-size-height: 1rem;
|
|
1598
|
+
--click-tabs-fileTabs-icon-size-width: 1rem;
|
|
1599
|
+
--click-tabs-fileTabs-space-y: 1.0625rem;
|
|
1600
|
+
--click-tabs-fileTabs-space-x: 1rem;
|
|
1601
|
+
--click-tabs-fileTabs-space-gap: 0.75rem;
|
|
1602
|
+
--click-tabs-fileTabs-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1603
|
+
--click-tabs-fileTabs-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1604
|
+
--click-tabs-fileTabs-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1605
|
+
--click-tabs-fileTabs-radii-all: 0;
|
|
1606
|
+
--click-tabs-fileTabs-color-background-default: #f6f7fa;
|
|
1607
|
+
--click-tabs-fileTabs-color-background-hover: #ffffff;
|
|
1608
|
+
--click-tabs-fileTabs-color-background-active: #ffffff;
|
|
1609
|
+
--click-tabs-fileTabs-color-text-default: #696e79;
|
|
1610
|
+
--click-tabs-fileTabs-color-text-hover: #161517;
|
|
1611
|
+
--click-tabs-fileTabs-color-text-active: #161517;
|
|
1612
|
+
--click-tabs-fileTabs-color-stroke-default: #e6e7e9;
|
|
1613
|
+
--click-tabs-fileTabs-color-stroke-hover: #e6e7e9;
|
|
1614
|
+
--click-tabs-fileTabs-color-stroke-active: #e6e7e9;
|
|
1615
|
+
--click-tabs-fileTabs-color-closeButton-background-default: rgba(0, 0, 0, 0);
|
|
1616
|
+
--click-tabs-fileTabs-color-closeButton-background-hover: #e6e7e9;
|
|
1617
|
+
--click-toast-icon-size-height: 1rem;
|
|
1618
|
+
--click-toast-icon-size-width: 1rem;
|
|
1619
|
+
--click-toast-space-title-gap: 0.5rem;
|
|
1620
|
+
--click-toast-space-y: 0.75rem;
|
|
1621
|
+
--click-toast-space-x: 0.75rem;
|
|
1622
|
+
--click-toast-space-gap: 0.5rem;
|
|
1623
|
+
--click-toast-radii-all: 0.25rem;
|
|
1624
|
+
--click-toast-shadow: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
1625
|
+
--click-toast-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1626
|
+
--click-toast-typography-description-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1627
|
+
--click-toast-size-width: 20.75rem;
|
|
1628
|
+
--click-toast-color-title-default: lch(11.126 1.374 305.43);
|
|
1629
|
+
--click-toast-color-description-default: #696e79;
|
|
1630
|
+
--click-toast-color-stroke-default: #e6e7e9;
|
|
1631
|
+
--click-toast-color-icon-default: lch(11.126 1.374 305.43);
|
|
1632
|
+
--click-toast-color-icon-success: #008a0b;
|
|
1633
|
+
--click-toast-color-icon-warning: #a33c00;
|
|
1634
|
+
--click-toast-color-icon-danger: #c10000;
|
|
1635
|
+
--click-tooltip-radii-all: 0.25rem;
|
|
1636
|
+
--click-tooltip-space-x: 0.75rem;
|
|
1637
|
+
--click-tooltip-space-y: 0.5rem;
|
|
1638
|
+
--click-tooltip-typography-label-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1639
|
+
--click-tooltip-color-background-default: lch(10.767 0 none / 0.85);
|
|
1640
|
+
--click-tooltip-color-label-default: #ffffff;
|
|
1641
|
+
--click-dashboards-chartWidget-space-gap: 1rem;
|
|
1642
|
+
--click-dashboards-chartWidget-space-element-gap: 0.5rem;
|
|
1643
|
+
--click-dashboards-chartWidget-borderWidth-default: 1px;
|
|
1644
|
+
--click-dashboards-chartWidget-stroke-default: 1px solid #e6e7e9;
|
|
1645
|
+
--click-dashboards-chartWidget-stroke-element-default: 1px solid #e6e7e9;
|
|
1646
|
+
--click-dashboards-chartWidget-stroke-hover: 1px solid #b3b6bd;
|
|
1647
|
+
--click-dashboards-chartWidget-stroke-selected: 1px solid #151515;
|
|
1648
|
+
--click-dashboards-chartWidget-element-radii-all: 0.25rem;
|
|
1649
|
+
--click-dashboards-chartWidget-radii-all: 0.25rem;
|
|
1650
|
+
--click-dashboards-chartWidget-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1651
|
+
--click-dashboards-chartWidget-typography-description-default-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1652
|
+
--click-dashboards-chartWidget-typography-label-default-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1653
|
+
--click-dashboards-chartWidget-shadow-default: 0;
|
|
1654
|
+
--click-dashboards-chartWidget-shadow-hover: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
1655
|
+
--click-dashboards-chartWidget-size-icon-all-drag: 1.25rem;
|
|
1656
|
+
--click-dashboards-chartWidget-size-icon-all-menu: 1.5rem;
|
|
1657
|
+
--click-dashboards-chartWidget-size-icon-all-resize: 0.75rem;
|
|
1658
|
+
--click-dashboards-chartWidget-color-background-default: #ffffff;
|
|
1659
|
+
--click-dashboards-chartWidget-color-background-hover: #ffffff;
|
|
1660
|
+
--click-dashboards-chartWidget-color-background-selected: #ffffff;
|
|
1661
|
+
--click-dashboards-chartWidget-color-stroke-default: #e6e7e9;
|
|
1662
|
+
--click-dashboards-chartWidget-color-stroke-hover: #b3b6bd;
|
|
1663
|
+
--click-dashboards-chartWidget-color-stroke-selected: #151515;
|
|
1664
|
+
--click-dashboards-chartWidget-color-title-default: lch(11.126 1.374 305.43);
|
|
1665
|
+
--click-dashboards-chartWidget-color-description-default: #696e79;
|
|
1666
|
+
--click-dashboards-chartWidget-color-legend-default: #696e79;
|
|
1667
|
+
--click-dashboards-chartWidget-color-legend-hover: #696e79;
|
|
1668
|
+
--click-dashboards-chartWidget-color-legend-selected: #161517;
|
|
1669
|
+
--click-dashboards-chartWidget-color-element-stroke-default: #e6e7e9;
|
|
1670
|
+
--click-dashboards-chartWidget-color-icon-default: #161517;
|
|
1671
|
+
--click-dashboards-chartWidget-color-icon-hover: #161517;
|
|
1672
|
+
--click-dashboards-chartWidget-color-icon-selected: #151515;
|
|
1673
|
+
--click-dashboards-chartWidget-color-opacity-bar-default: 0.2;
|
|
1674
|
+
--click-dashboards-chartWidget-color-opacity-bar-hover: 0.5;
|
|
1675
|
+
--click-dashboards-chartWidget-color-label-default: #696e79;
|
|
1676
|
+
--click-dashboards-chartWidget-color-label-hover: #696e79;
|
|
1677
|
+
--click-dashboards-chartWidget-color-label-selected: #696e79;
|
|
1678
|
+
--click-global-color-stroke-default: #e6e7e9;
|
|
1679
|
+
--click-global-color-stroke-muted: lch(91.609 1.1023 265.86);
|
|
1680
|
+
--click-global-color-stroke-intense: #b3b6bd;
|
|
1681
|
+
--click-global-color-accent-default: #151515;
|
|
1682
|
+
--click-global-color-background-default: #ffffff;
|
|
1683
|
+
--click-global-color-background-muted: #f6f7fa;
|
|
1684
|
+
--click-global-color-text-default: #161517;
|
|
1685
|
+
--click-global-color-text-muted: #696e79;
|
|
1686
|
+
--click-global-color-text-disabled: #a0a0a0;
|
|
1687
|
+
--click-global-color-text-link-default: #437eef;
|
|
1688
|
+
--click-global-color-text-link-hover: #104ec6;
|
|
1689
|
+
--click-global-color-text-danger: #c10000;
|
|
1690
|
+
--click-global-color-title-default: lch(11.126 1.374 305.43);
|
|
1691
|
+
--click-global-color-title-muted: #696e79;
|
|
1692
|
+
--click-global-color-outline-default: #437eef;
|
|
1693
|
+
--click-global-color-shadow-default: lch(6.7738 0 none / 0.15);
|
|
1694
|
+
--click-feedback-color-info-background: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
1695
|
+
--click-feedback-color-info-foreground: #437eef;
|
|
1696
|
+
--click-feedback-color-success-background: rgb(20% 100% 26.667% / 0.1);
|
|
1697
|
+
--click-feedback-color-success-foreground: #008a0b;
|
|
1698
|
+
--click-feedback-color-warning-background: rgb(100% 46.667% 16.078% / 0.1);
|
|
1699
|
+
--click-feedback-color-warning-foreground: #a33c00;
|
|
1700
|
+
--click-feedback-color-danger-background: rgb(100% 13.725% 13.725% / 0.1);
|
|
1701
|
+
--click-feedback-color-danger-foreground: #c10000;
|
|
1702
|
+
--click-feedback-color-neutral-background: rgb(41.176% 43.137% 47.451% / 0.1);
|
|
1703
|
+
--click-feedback-color-neutral-foreground: #53575f;
|
|
1704
|
+
--click-feedback-color-neutral-stroke: #e6e7e9;
|
|
1705
|
+
--click-storybook-global-background: #ffffff;
|
|
1706
|
+
--click-chart-color-default-blue: #437eef;
|
|
1707
|
+
--click-chart-color-default-orange: #ff7729;
|
|
1708
|
+
--click-chart-color-default-green: #00e513;
|
|
1709
|
+
--click-chart-color-default-fuchsia: #fb32c9;
|
|
1710
|
+
--click-chart-color-default-yellow: #eef400;
|
|
1711
|
+
--click-chart-color-default-violet: #bb33ff;
|
|
1712
|
+
--click-chart-color-default-babyblue: #00cbeb;
|
|
1713
|
+
--click-chart-color-default-red: #ff2323;
|
|
1714
|
+
--click-chart-color-default-teal: #089b83;
|
|
1715
|
+
--click-chart-color-default-sunrise: #ffc300;
|
|
1716
|
+
--click-chart-color-default-slate: #9a9ea7;
|
|
1717
|
+
--click-chart-color-label-default: #161517;
|
|
1718
|
+
--click-chart-color-label-deselected: lch(6.9377 1.4387 305.43 / 0.3);
|
|
1719
|
+
--click-chart-bars-color-blue: #437eef;
|
|
1720
|
+
--click-chart-bars-color-orange: #ff7729;
|
|
1721
|
+
--click-chart-bars-color-green: #00e513;
|
|
1722
|
+
--click-chart-bars-color-fuchsia: #fb32c9;
|
|
1723
|
+
--click-chart-bars-color-yellow: #eef400;
|
|
1724
|
+
--click-chart-bars-color-violet: #bb33ff;
|
|
1725
|
+
--click-chart-bars-color-babyblue: #00cbeb;
|
|
1726
|
+
--click-chart-bars-color-red: #ff2323;
|
|
1727
|
+
--click-chart-bars-color-teal: #089b83;
|
|
1728
|
+
--click-chart-bars-color-sunrise: #ffc300;
|
|
1729
|
+
--click-chart-bars-color-slate: #9a9ea7;
|
|
1730
|
+
--click-serviceCard-color-background-default: #fbfcff;
|
|
1731
|
+
--click-serviceCard-color-background-hover: #fbfcff;
|
|
1732
|
+
--click-serviceCard-color-stroke-default: #e6e7e9;
|
|
1733
|
+
--click-serviceCard-color-stroke-hover: #cccfd3;
|
|
1734
|
+
--click-gareth-test-main-text: #161517;
|
|
1735
|
+
--click-gareth-test-main-danger: #c10000;
|
|
1736
|
+
--transition-default: all 100ms ease-in 0ms;
|
|
1737
|
+
--transition-duration-slow: 300ms;
|
|
1738
|
+
--transition-duration-smooth: 150ms;
|
|
1739
|
+
--transition-duration-medium: 100ms;
|
|
1740
|
+
--transition-duration-fast: 50ms;
|
|
1741
|
+
--transition-delay-slow: 100ms;
|
|
1742
|
+
--transition-delay-fast: 0ms;
|
|
1743
|
+
--transition-function-ease: ease;
|
|
1744
|
+
--transition-function-ease-in: ease-in;
|
|
1745
|
+
--transition-function-ease-in-out: ease-in-out;
|
|
1746
|
+
--transition-function-linear: linear;
|
|
1747
|
+
--grid-header-cell-borderWidth-default: 1px;
|
|
1748
|
+
--grid-header-cell-borderWidth-selectIndirect: 1px;
|
|
1749
|
+
--grid-header-cell-borderWidth-selectDirect: 1px;
|
|
1750
|
+
--grid-body-cell-borderWidth-default: 1px;
|
|
1751
|
+
--grid-body-cell-borderWidth-selectIndirect: 1px;
|
|
1752
|
+
--grid-body-cell-borderWidth-selectDirect: 2px;
|
|
1753
|
+
--palette-brand-50: #ffffe8;
|
|
1754
|
+
--palette-brand-100: #feffc2;
|
|
1755
|
+
--palette-brand-200: #fdffa3;
|
|
1756
|
+
--palette-brand-300: #faff69;
|
|
1757
|
+
--palette-brand-400: #eef400;
|
|
1758
|
+
--palette-brand-500: #c7cc00;
|
|
1759
|
+
--palette-brand-600: #959900;
|
|
1760
|
+
--palette-brand-700: #686b00;
|
|
1761
|
+
--palette-brand-800: #3c4601;
|
|
1762
|
+
--palette-brand-900: #333300;
|
|
1763
|
+
--palette-brand-base: #fbff46;
|
|
1764
|
+
--palette-neutral-0: #ffffff;
|
|
1765
|
+
--palette-neutral-100: #f9f9f9;
|
|
1766
|
+
--palette-neutral-200: #dfdfdf;
|
|
1767
|
+
--palette-neutral-300: #c0c0c0;
|
|
1768
|
+
--palette-neutral-400: #a0a0a0;
|
|
1769
|
+
--palette-neutral-500: #808080;
|
|
1770
|
+
--palette-neutral-600: #606060;
|
|
1771
|
+
--palette-neutral-650: #505050;
|
|
1772
|
+
--palette-neutral-700: #414141;
|
|
1773
|
+
--palette-neutral-712: #323232;
|
|
1774
|
+
--palette-neutral-725: #282828;
|
|
1775
|
+
--palette-neutral-750: #1f1f1c;
|
|
1776
|
+
--palette-neutral-800: #1d1d1d;
|
|
1777
|
+
--palette-neutral-900: #151515;
|
|
1778
|
+
--palette-neutral-base: #212121;
|
|
1779
|
+
--palette-slate-25: #fbfcff;
|
|
1780
|
+
--palette-slate-50: #f6f7fa;
|
|
1781
|
+
--palette-slate-100: #e6e7e9;
|
|
1782
|
+
--palette-slate-200: #cccfd3;
|
|
1783
|
+
--palette-slate-300: #b3b6bd;
|
|
1784
|
+
--palette-slate-400: #9a9ea7;
|
|
1785
|
+
--palette-slate-500: #808691;
|
|
1786
|
+
--palette-slate-600: #696e79;
|
|
1787
|
+
--palette-slate-700: #53575f;
|
|
1788
|
+
--palette-slate-800: #302e32;
|
|
1789
|
+
--palette-slate-900: #161517;
|
|
1790
|
+
--palette-slate-base: #373439;
|
|
1791
|
+
--palette-slate-50a: lch(49.809 30.506 276.77 / 0.06);
|
|
1792
|
+
--palette-indigo-50: #f4f1fc;
|
|
1793
|
+
--palette-indigo-100: #e4e2e9;
|
|
1794
|
+
--palette-indigo-200: #c8c5d3;
|
|
1795
|
+
--palette-indigo-300: #ada8bd;
|
|
1796
|
+
--palette-indigo-400: #918ba7;
|
|
1797
|
+
--palette-indigo-500: #766e91;
|
|
1798
|
+
--palette-indigo-600: #5e5874;
|
|
1799
|
+
--palette-indigo-700: #474257;
|
|
1800
|
+
--palette-indigo-800: #23212c;
|
|
1801
|
+
--palette-indigo-900: #18161d;
|
|
1802
|
+
--palette-indigo-base: #2f2c3a;
|
|
1803
|
+
--palette-info-50: #e7effd;
|
|
1804
|
+
--palette-info-100: #d0dffb;
|
|
1805
|
+
--palette-info-200: #a1bef7;
|
|
1806
|
+
--palette-info-300: #6d9bf3;
|
|
1807
|
+
--palette-info-400: #437eef;
|
|
1808
|
+
--palette-info-500: #1d64ec;
|
|
1809
|
+
--palette-info-600: #104ec6;
|
|
1810
|
+
--palette-info-650: #0d3e9b;
|
|
1811
|
+
--palette-info-700: #0d3e9b;
|
|
1812
|
+
--palette-info-800: #092b6c;
|
|
1813
|
+
--palette-info-900: #061c47;
|
|
1814
|
+
--palette-info-base: #4781f0;
|
|
1815
|
+
--palette-success-50: #e5ffe8;
|
|
1816
|
+
--palette-success-100: #ccffd0;
|
|
1817
|
+
--palette-success-200: #99ffa1;
|
|
1818
|
+
--palette-success-300: #66ff73;
|
|
1819
|
+
--palette-success-400: #33ff44;
|
|
1820
|
+
--palette-success-500: #00e513;
|
|
1821
|
+
--palette-success-600: #00bd10;
|
|
1822
|
+
--palette-success-700: #008a0b;
|
|
1823
|
+
--palette-success-800: #006108;
|
|
1824
|
+
--palette-success-850: #004206;
|
|
1825
|
+
--palette-success-900: #004206;
|
|
1826
|
+
--palette-success-base: #62de85;
|
|
1827
|
+
--palette-warning-50: #ffe2d1;
|
|
1828
|
+
--palette-warning-100: #ffcbad;
|
|
1829
|
+
--palette-warning-200: #ffb88f;
|
|
1830
|
+
--palette-warning-300: #ff9457;
|
|
1831
|
+
--palette-warning-400: #ff7729;
|
|
1832
|
+
--palette-warning-500: #f55a00;
|
|
1833
|
+
--palette-warning-600: #d64f00;
|
|
1834
|
+
--palette-warning-700: #a33c00;
|
|
1835
|
+
--palette-warning-800: #7a2d00;
|
|
1836
|
+
--palette-warning-900: #471a00;
|
|
1837
|
+
--palette-warning-base: #ffa63d;
|
|
1838
|
+
--palette-danger-50: #ffdddd;
|
|
1839
|
+
--palette-danger-100: #ffbaba;
|
|
1840
|
+
--palette-danger-200: #ff9898;
|
|
1841
|
+
--palette-danger-300: #ff7575;
|
|
1842
|
+
--palette-danger-400: #ff2323;
|
|
1843
|
+
--palette-danger-500: #f10000;
|
|
1844
|
+
--palette-danger-600: #c10000;
|
|
1845
|
+
--palette-danger-700: #910000;
|
|
1846
|
+
--palette-danger-800: #610000;
|
|
1847
|
+
--palette-danger-900: #300000;
|
|
1848
|
+
--palette-danger-base: #ff5353;
|
|
1849
|
+
--palette-gradients-base: linear-gradient(229.65deg, #292924 15.78%, #0F0F0F 88.39%);
|
|
1850
|
+
--palette-gradients-yellowToblack: linear-gradient(132deg, #FAFF69 8%, #292929 30%);
|
|
1851
|
+
--palette-gradients-whiteToblack: linear-gradient(132deg, #FFFFFF 8%, #292929 30%);
|
|
1852
|
+
--palette-gradients-transparent: rgba(0, 0, 0, 0);
|
|
1853
|
+
--palette-utility-transparent: rgba(0, 0, 0, 0);
|
|
1854
|
+
--palette-teal-50: #e6fefa;
|
|
1855
|
+
--palette-teal-100: #cffcf4;
|
|
1856
|
+
--palette-teal-200: #a3faec;
|
|
1857
|
+
--palette-teal-300: #6df8e1;
|
|
1858
|
+
--palette-teal-400: #0cedc8;
|
|
1859
|
+
--palette-teal-500: #0bd0af;
|
|
1860
|
+
--palette-teal-600: #089b83;
|
|
1861
|
+
--palette-teal-700: #067462;
|
|
1862
|
+
--palette-teal-800: #045245;
|
|
1863
|
+
--palette-teal-850: #004237;
|
|
1864
|
+
--palette-teal-900: #03352d;
|
|
1865
|
+
--palette-violet-50: #f6e5ff;
|
|
1866
|
+
--palette-violet-100: #eeccff;
|
|
1867
|
+
--palette-violet-200: #dd99ff;
|
|
1868
|
+
--palette-violet-300: #cc66ff;
|
|
1869
|
+
--palette-violet-400: #bb33ff;
|
|
1870
|
+
--palette-violet-500: #aa00ff;
|
|
1871
|
+
--palette-violet-600: #8800cc;
|
|
1872
|
+
--palette-violet-700: #660099;
|
|
1873
|
+
--palette-violet-800: #440066;
|
|
1874
|
+
--palette-violet-850: #33004d;
|
|
1875
|
+
--palette-violet-900: #220033;
|
|
1876
|
+
--palette-fuchsia-50: #fbeff8;
|
|
1877
|
+
--palette-fuchsia-100: #fbc9ef;
|
|
1878
|
+
--palette-fuchsia-200: #fb97e2;
|
|
1879
|
+
--palette-fuchsia-300: #fb64d6;
|
|
1880
|
+
--palette-fuchsia-400: #fb32c9;
|
|
1881
|
+
--palette-fuchsia-500: #fb00bc;
|
|
1882
|
+
--palette-fuchsia-600: #cc0099;
|
|
1883
|
+
--palette-fuchsia-700: #990073;
|
|
1884
|
+
--palette-fuchsia-800: #66004d;
|
|
1885
|
+
--palette-fuchsia-850: #4d0039;
|
|
1886
|
+
--palette-fuchsia-900: #330026;
|
|
1887
|
+
--palette-sunrise-50: #fff3cc;
|
|
1888
|
+
--palette-sunrise-100: #ffe799;
|
|
1889
|
+
--palette-sunrise-200: #ffdb66;
|
|
1890
|
+
--palette-sunrise-300: #ffcf33;
|
|
1891
|
+
--palette-sunrise-400: #ffc300;
|
|
1892
|
+
--palette-sunrise-500: #e0ac00;
|
|
1893
|
+
--palette-sunrise-600: #b28800;
|
|
1894
|
+
--palette-sunrise-700: #8a6900;
|
|
1895
|
+
--palette-sunrise-800: #574200;
|
|
1896
|
+
--palette-sunrise-900: #332700;
|
|
1897
|
+
--palette-babyblue-50: #dbfaff;
|
|
1898
|
+
--palette-babyblue-100: #bdf6ff;
|
|
1899
|
+
--palette-babyblue-200: #8aefff;
|
|
1900
|
+
--palette-babyblue-300: #33e4ff;
|
|
1901
|
+
--palette-babyblue-400: #00cbeb;
|
|
1902
|
+
--palette-babyblue-500: #00b5d1;
|
|
1903
|
+
--palette-babyblue-600: #008599;
|
|
1904
|
+
--palette-babyblue-700: #006170;
|
|
1905
|
+
--palette-babyblue-800: #00424d;
|
|
1906
|
+
--palette-babyblue-900: #002c33;
|
|
1907
|
+
--sizes-0: 0;
|
|
1908
|
+
--sizes-1: 1px;
|
|
1909
|
+
--sizes-2: 0.25rem;
|
|
1910
|
+
--sizes-3: 0.5rem;
|
|
1911
|
+
--sizes-4: 0.75rem;
|
|
1912
|
+
--sizes-5: 1rem;
|
|
1913
|
+
--sizes-6: 1.25rem;
|
|
1914
|
+
--sizes-7: 1.5rem;
|
|
1915
|
+
--sizes-8: 1.75rem;
|
|
1916
|
+
--sizes-9: 2rem;
|
|
1917
|
+
--sizes-10: 2.5rem;
|
|
1918
|
+
--sizes-11: 4rem;
|
|
1919
|
+
--typography-font-families-regular: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1920
|
+
--typography-font-families-mono: "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
1921
|
+
--typography-font-families-display: 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1922
|
+
--typography-font-weights-1: 400;
|
|
1923
|
+
--typography-font-weights-2: 500;
|
|
1924
|
+
--typography-font-weights-3: 600;
|
|
1925
|
+
--typography-font-weights-4: 700;
|
|
1926
|
+
--typography-font-sizes-0: 0.625rem;
|
|
1927
|
+
--typography-font-sizes-1: 0.75rem;
|
|
1928
|
+
--typography-font-sizes-2: 0.875rem;
|
|
1929
|
+
--typography-font-sizes-3: 1rem;
|
|
1930
|
+
--typography-font-sizes-4: 1.125rem;
|
|
1931
|
+
--typography-font-sizes-5: 1.25rem;
|
|
1932
|
+
--typography-font-sizes-6: 2rem;
|
|
1933
|
+
--typography-font-sizes-base: 16px;
|
|
1934
|
+
--typography-font-line-height-1: 1.5;
|
|
1935
|
+
--typography-font-line-height-2: 1.6;
|
|
1936
|
+
--typography-font-line-height-3: 1.7;
|
|
1937
|
+
--typography-font-line-height-4: 1.3;
|
|
1938
|
+
--typography-styles-product-titles-xs: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1939
|
+
--typography-styles-product-titles-sm: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1940
|
+
--typography-styles-product-titles-md: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1941
|
+
--typography-styles-product-titles-lg: 700 1.125rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1942
|
+
--typography-styles-product-titles-xl: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1943
|
+
--typography-styles-product-titles-2xl: 600 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1944
|
+
--typography-styles-product-text-normal-xs: 400 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1945
|
+
--typography-styles-product-text-normal-sm: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1946
|
+
--typography-styles-product-text-normal-md: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1947
|
+
--typography-styles-product-text-normal-lg: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1948
|
+
--typography-styles-product-text-medium-xs: 500 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1949
|
+
--typography-styles-product-text-medium-sm: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1950
|
+
--typography-styles-product-text-medium-md: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1951
|
+
--typography-styles-product-text-medium-lg: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1952
|
+
--typography-styles-product-text-semibold-xs: 600 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1953
|
+
--typography-styles-product-text-semibold-sm: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1954
|
+
--typography-styles-product-text-semibold-md: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1955
|
+
--typography-styles-product-text-semibold-lg: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1956
|
+
--typography-styles-product-text-mono-xs: 500 0.625rem/1.6 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
1957
|
+
--typography-styles-product-text-mono-sm: 500 0.75rem/1.6 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
1958
|
+
--typography-styles-product-text-mono-md: 500 0.875rem/1.7 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
1959
|
+
--typography-styles-product-text-mono-lg: 500 1rem/1.6 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
1960
|
+
--typography-styles-product-text-bold-xs: 700 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1961
|
+
--typography-styles-product-text-bold-sm: 700 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1962
|
+
--typography-styles-product-text-bold-md: 700 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1963
|
+
--typography-styles-product-text-bold-lg: 700 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1964
|
+
--typography-styles-brand-titles-xs: 600 20px/1.5 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1965
|
+
--typography-styles-brand-titles-sm: 600 24px/1.5 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1966
|
+
--typography-styles-brand-titles-md: 600 36px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1967
|
+
--typography-styles-brand-titles-lg: 600 56px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1968
|
+
--typography-styles-brand-titles-xl: 700 64px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1969
|
+
--typography-styles-brand-titles-2xl: 700 80px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1970
|
+
--typography-styles-field-md: 400 0.875rem/1.6 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
1971
|
+
--border-radii-0: 0;
|
|
1972
|
+
--border-radii-1: 0.25rem;
|
|
1973
|
+
--border-radii-2: 0.5rem;
|
|
1974
|
+
--border-radii-3: 0.75rem;
|
|
1975
|
+
--border-radii-full: 9999px;
|
|
1976
|
+
--border-width-1: 1px;
|
|
1977
|
+
--border-width-2: 2px;
|
|
1978
|
+
--spaces-0: 0;
|
|
1979
|
+
--spaces-1: 0.25rem;
|
|
1980
|
+
--spaces-2: 0.5rem;
|
|
1981
|
+
--spaces-3: 0.75rem;
|
|
1982
|
+
--spaces-4: 1rem;
|
|
1983
|
+
--spaces-5: 1.5rem;
|
|
1984
|
+
--spaces-6: 2rem;
|
|
1985
|
+
--spaces-7: 2.5rem;
|
|
1986
|
+
--spaces-8: 4rem;
|
|
1987
|
+
--shadow-1: 0 4px 6px -1px lch(6.7738 0 none / 0.15), 0 2px 4px -1px lch(6.7738 0 none / 0.15);
|
|
1988
|
+
--shadow-2: 0 4px 4px 0 rgba(88, 92, 98, 0.06), inset 5px 0 10px 0 rgba(104, 105, 111, 0.1);
|
|
1989
|
+
--shadow-3: -5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
1990
|
+
--shadow-4: 5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
1991
|
+
--shadow-5: 0 2px 2px 0 rgba(0, 0, 0, 0.03);
|
|
1992
|
+
--breakpoint-sizes-sm: 640px;
|
|
1993
|
+
--breakpoint-sizes-md: 768px;
|
|
1994
|
+
--breakpoint-sizes-lg: 1024px;
|
|
1995
|
+
--breakpoint-sizes-xl: 1280px;
|
|
1996
|
+
--breakpoint-sizes-2xl: 1536px;
|
|
1997
|
+
--global-color-gradients-yellowToBlack: linear-gradient(132deg, #faff69 8%, #292929 30%);
|
|
1998
|
+
--global-color-gradients-whiteToBlack: linear-gradient(132deg, #ffffff 8%, #292929 30%);
|
|
1999
|
+
--global-color-background-default: #ffffff;
|
|
2000
|
+
--global-color-background-muted: #f6f7fa;
|
|
2001
|
+
--global-color-background-sidebar: #ffffff;
|
|
2002
|
+
--global-color-background-split: #f6f7fa;
|
|
2003
|
+
--global-color-background-muted_a: lch(49.809 30.506 276.77 / 0.06);
|
|
2004
|
+
--global-color-stroke-default: #e6e7e9;
|
|
2005
|
+
--global-color-stroke-muted: #e6e7e9;
|
|
2006
|
+
--global-color-stroke-intense: #b3b6bd;
|
|
2007
|
+
--global-color-stroke-split: #e6e7e9;
|
|
2008
|
+
--global-color-accent-default: #151515;
|
|
2009
|
+
--global-color-text-default: #161517;
|
|
2010
|
+
--global-color-text-muted: #696e79;
|
|
2011
|
+
--global-color-text-disabled: #a0a0a0;
|
|
2012
|
+
--global-color-text-link-default: #437eef;
|
|
2013
|
+
--global-color-text-link-hover: #104ec6;
|
|
2014
|
+
--global-color-outline-default: #437eef;
|
|
2015
|
+
--global-color-shadow-default: lch(6.7738 0 none / 0.15);
|
|
2016
|
+
--global-color-feedback-info-background: #e7effd;
|
|
2017
|
+
--global-color-feedback-info-foreground: #437eef;
|
|
2018
|
+
--global-color-feedback-success-background: #e5ffe8;
|
|
2019
|
+
--global-color-feedback-success-foreground: #008a0b;
|
|
2020
|
+
--global-color-feedback-warning-background: #ffe2d1;
|
|
2021
|
+
--global-color-feedback-warning-foreground: #a33c00;
|
|
2022
|
+
--global-color-feedback-danger-background: #ffdddd;
|
|
2023
|
+
--global-color-feedback-danger-foreground: #c10000;
|
|
2024
|
+
--global-color-feedback-neutral-background: #f6f7fa;
|
|
2025
|
+
--global-color-feedback-neutral-foreground: #53575f;
|
|
2026
|
+
--global-color-feedback-neutral-stroke: #e6e7e9;
|
|
2027
|
+
--global-color-chart-default-blue: #437eef;
|
|
2028
|
+
--global-color-chart-default-orange: #ff7729;
|
|
2029
|
+
--global-color-chart-default-green: #00e513;
|
|
2030
|
+
--global-color-chart-default-fuchsia: #fb32c9;
|
|
2031
|
+
--global-color-chart-default-yellow: #eef400;
|
|
2032
|
+
--global-color-chart-default-violet: #bb33ff;
|
|
2033
|
+
--global-color-chart-default-babyblue: #00cbeb;
|
|
2034
|
+
--global-color-chart-default-red: #ff2323;
|
|
2035
|
+
--global-color-chart-default-danger: #ff2323;
|
|
2036
|
+
--global-color-chart-default-teal: #089b83;
|
|
2037
|
+
--global-color-chart-default-sunrise: #ffc300;
|
|
2038
|
+
--global-color-chart-default-slate: #9a9ea7;
|
|
2039
|
+
--global-color-chart-bars-blue: #437eef;
|
|
2040
|
+
--global-color-chart-bars-orange: #ff7729;
|
|
2041
|
+
--global-color-chart-bars-green: #00e513;
|
|
2042
|
+
--global-color-chart-bars-fuchsia: #fb32c9;
|
|
2043
|
+
--global-color-chart-bars-yellow: #eef400;
|
|
2044
|
+
--global-color-chart-bars-violet: #bb33ff;
|
|
2045
|
+
--global-color-chart-bars-babyblue: #00cbeb;
|
|
2046
|
+
--global-color-chart-bars-red: #ff2323;
|
|
2047
|
+
--global-color-chart-bars-teal: #089b83;
|
|
2048
|
+
--global-color-chart-bars-sunrise: #ffc300;
|
|
2049
|
+
--global-color-chart-bars-slate: #9a9ea7;
|
|
2050
|
+
--global-color-chart-label-default: #161517;
|
|
2051
|
+
--global-color-chart-label-deselected: lch(6.9377 1.4387 305.43 / 0.3);
|
|
2052
|
+
--global-color-iconButton-badge-foreground: #437eef;
|
|
2053
|
+
--global-color-iconButton-badge-background: #e7effd;
|
|
2054
|
+
--global-color-icon-background: linear-gradient(132deg, #FFFFFF 8%, #292929 30%);
|
|
2055
|
+
--name: light;
|
|
2056
|
+
}[data-cui-theme="dark"] {
|
|
2057
|
+
--click-accordion-sm-icon-size-height: 1rem;
|
|
2058
|
+
--click-accordion-sm-icon-size-width: 1rem;
|
|
2059
|
+
--click-accordion-sm-space-gap: 0.25rem;
|
|
2060
|
+
--click-accordion-sm-typography-label-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2061
|
+
--click-accordion-sm-typography-label-hover: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2062
|
+
--click-accordion-sm-typography-label-active: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2063
|
+
--click-accordion-md-icon-size-height: 1.25rem;
|
|
2064
|
+
--click-accordion-md-icon-size-width: 1.25rem;
|
|
2065
|
+
--click-accordion-md-space-gap: 0.25rem;
|
|
2066
|
+
--click-accordion-md-typography-label-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2067
|
+
--click-accordion-md-typography-label-hover: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2068
|
+
--click-accordion-md-typography-label-active: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2069
|
+
--click-accordion-lg-icon-size-height: 1.5rem;
|
|
2070
|
+
--click-accordion-lg-icon-size-width: 1.5rem;
|
|
2071
|
+
--click-accordion-lg-space-gap: 0.25rem;
|
|
2072
|
+
--click-accordion-lg-typography-label-default: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2073
|
+
--click-accordion-lg-typography-label-hover: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2074
|
+
--click-accordion-lg-typography-label-active: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2075
|
+
--click-accordion-color-default-label-default: #ffffff;
|
|
2076
|
+
--click-accordion-color-default-label-hover: rgb(100% 100% 100%);
|
|
2077
|
+
--click-accordion-color-default-label-active: #ffffff;
|
|
2078
|
+
--click-accordion-color-default-icon-default: #ffffff;
|
|
2079
|
+
--click-accordion-color-default-icon-hover: rgb(100% 100% 100%);
|
|
2080
|
+
--click-accordion-color-default-icon-active: #ffffff;
|
|
2081
|
+
--click-accordion-color-link-label-default: #faff69;
|
|
2082
|
+
--click-accordion-color-link-label-hover: #feffc2;
|
|
2083
|
+
--click-accordion-color-link-label-active: #faff69;
|
|
2084
|
+
--click-accordion-color-link-icon-default: #faff69;
|
|
2085
|
+
--click-accordion-color-link-icon-hover: rgb(99.637% 100% 77.873%);
|
|
2086
|
+
--click-accordion-color-link-icon-active: #faff69;
|
|
2087
|
+
--click-alert-medium-space-y: 0.75rem;
|
|
2088
|
+
--click-alert-medium-space-x: 0.75rem;
|
|
2089
|
+
--click-alert-medium-space-gap: 0;
|
|
2090
|
+
--click-alert-medium-space-banner: 0.5rem;
|
|
2091
|
+
--click-alert-medium-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2092
|
+
--click-alert-medium-typography-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2093
|
+
--click-alert-medium-icon-height: 1.25rem;
|
|
2094
|
+
--click-alert-medium-icon-width: 1.25rem;
|
|
2095
|
+
--click-alert-small-space-y: 0.5rem;
|
|
2096
|
+
--click-alert-small-space-x: 0.75rem;
|
|
2097
|
+
--click-alert-small-space-gap: 0;
|
|
2098
|
+
--click-alert-small-space-banner: 0.25rem;
|
|
2099
|
+
--click-alert-small-icon-height: 1rem;
|
|
2100
|
+
--click-alert-small-icon-width: 1rem;
|
|
2101
|
+
--click-alert-small-typography-title-default: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2102
|
+
--click-alert-small-typography-text-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2103
|
+
--click-alert-radii-center: 0;
|
|
2104
|
+
--click-alert-radii-end: 0.25rem;
|
|
2105
|
+
--click-alert-color-background-default: #1f1f1c;
|
|
2106
|
+
--click-alert-color-background-success: rgb(20% 100% 26.667% / 0.2);
|
|
2107
|
+
--click-alert-color-background-neutral: rgb(62.745% 62.745% 62.745% / 0.2);
|
|
2108
|
+
--click-alert-color-background-danger: rgb(100% 13.725% 13.725% / 0.2);
|
|
2109
|
+
--click-alert-color-background-warning: rgb(100% 46.667% 16.078% / 0.2);
|
|
2110
|
+
--click-alert-color-background-info: rgb(26.275% 49.412% 93.725% / 0.2);
|
|
2111
|
+
--click-alert-color-text-default: #b3b6bd;
|
|
2112
|
+
--click-alert-color-text-success: #ccffd0;
|
|
2113
|
+
--click-alert-color-text-neutral: #c0c0c0;
|
|
2114
|
+
--click-alert-color-text-danger: #ffbaba;
|
|
2115
|
+
--click-alert-color-text-warning: #ffb88f;
|
|
2116
|
+
--click-alert-color-text-info: #d0dffb;
|
|
2117
|
+
--click-alert-color-iconBackground-default: #1f1f1c;
|
|
2118
|
+
--click-alert-color-iconBackground-success: rgb(20% 100% 26.667% / 0);
|
|
2119
|
+
--click-alert-color-iconBackground-neutral: rgb(62.745% 62.745% 62.745% / 0);
|
|
2120
|
+
--click-alert-color-iconBackground-danger: rgb(100% 13.725% 13.725% / 0);
|
|
2121
|
+
--click-alert-color-iconBackground-warning: rgb(100% 46.667% 16.078% / 0);
|
|
2122
|
+
--click-alert-color-iconBackground-info: rgb(26.275% 49.412% 93.725% / 0);
|
|
2123
|
+
--click-alert-color-iconForeground-default: #b3b6bd;
|
|
2124
|
+
--click-alert-color-iconForeground-success: lch(95.558 28.893 143.93 / 0.75);
|
|
2125
|
+
--click-alert-color-iconForeground-neutral: lch(77.704 0 none / 0.75);
|
|
2126
|
+
--click-alert-color-iconForeground-danger: lch(82.069 27.695 22.026 / 0.75);
|
|
2127
|
+
--click-alert-color-iconForeground-warning: lch(80.892 39.042 53.918 / 0.75);
|
|
2128
|
+
--click-alert-color-iconForeground-info: lch(88.343 15.514 266.4 / 0.75);
|
|
2129
|
+
--click-avatar-typography-label-sm-default: 600 0.6875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2130
|
+
--click-avatar-typography-label-sm-hover: 600 0.6875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2131
|
+
--click-avatar-typography-label-sm-active: 600 0.6875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2132
|
+
--click-avatar-typography-label-md-default: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2133
|
+
--click-avatar-typography-label-md-hover: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2134
|
+
--click-avatar-typography-label-md-active: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2135
|
+
--click-avatar-size-label-width: 1.5rem;
|
|
2136
|
+
--click-avatar-size-width: 1.5rem;
|
|
2137
|
+
--click-avatar-size-height: 1.5rem;
|
|
2138
|
+
--click-avatar-radii-all: 9999px;
|
|
2139
|
+
--click-avatar-color-background-default: #808691;
|
|
2140
|
+
--click-avatar-color-background-hover: #b3b6bd;
|
|
2141
|
+
--click-avatar-color-background-active: #b3b6bd;
|
|
2142
|
+
--click-avatar-color-text-default: #1f1f1c;
|
|
2143
|
+
--click-avatar-color-text-hover: #1f1f1c;
|
|
2144
|
+
--click-avatar-color-text-active: #1f1f1c;
|
|
2145
|
+
--click-badge-space-md-x: 0.75rem;
|
|
2146
|
+
--click-badge-space-md-y: 0.125rem;
|
|
2147
|
+
--click-badge-space-md-gap: 0.25rem;
|
|
2148
|
+
--click-badge-space-sm-x: 0.5rem;
|
|
2149
|
+
--click-badge-space-sm-y: 0.1563rem;
|
|
2150
|
+
--click-badge-space-sm-gap: 0.125rem;
|
|
2151
|
+
--click-badge-typography-label-md-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2152
|
+
--click-badge-typography-label-sm-default: 500 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2153
|
+
--click-badge-radii-all: 9999px;
|
|
2154
|
+
--click-badge-stroke: 1px;
|
|
2155
|
+
--click-badge-icon-md-size-height: 0.75rem;
|
|
2156
|
+
--click-badge-icon-md-size-width: 0.75rem;
|
|
2157
|
+
--click-badge-icon-sm-size-height: 0.625rem;
|
|
2158
|
+
--click-badge-icon-sm-size-width: 0.625rem;
|
|
2159
|
+
--click-badge-opaque-color-background-default: #1f1f1c;
|
|
2160
|
+
--click-badge-opaque-color-background-success: rgb(20% 100% 26.667% / 0.2);
|
|
2161
|
+
--click-badge-opaque-color-background-neutral: rgb(62.745% 62.745% 62.745% / 0.2);
|
|
2162
|
+
--click-badge-opaque-color-background-danger: rgb(100% 13.725% 13.725% / 0.2);
|
|
2163
|
+
--click-badge-opaque-color-background-disabled: #414141;
|
|
2164
|
+
--click-badge-opaque-color-background-info: rgb(26.275% 49.412% 93.725% / 0.2);
|
|
2165
|
+
--click-badge-opaque-color-background-warning: rgb(100% 46.667% 16.078% / 0.2);
|
|
2166
|
+
--click-badge-opaque-color-text-default: #b3b6bd;
|
|
2167
|
+
--click-badge-opaque-color-text-success: #ccffd0;
|
|
2168
|
+
--click-badge-opaque-color-text-neutral: #c0c0c0;
|
|
2169
|
+
--click-badge-opaque-color-text-danger: #ffbaba;
|
|
2170
|
+
--click-badge-opaque-color-text-disabled: #808080;
|
|
2171
|
+
--click-badge-opaque-color-text-info: #d0dffb;
|
|
2172
|
+
--click-badge-opaque-color-text-warning: #ffb88f;
|
|
2173
|
+
--click-badge-opaque-color-stroke-default: #323232;
|
|
2174
|
+
--click-badge-opaque-color-stroke-success: rgb(20% 100% 26.667% / 0.1);
|
|
2175
|
+
--click-badge-opaque-color-stroke-neutral: rgb(62.745% 62.745% 62.745% / 0.1);
|
|
2176
|
+
--click-badge-opaque-color-stroke-danger: rgb(100% 22.353% 22.353% / 0.2);
|
|
2177
|
+
--click-badge-opaque-color-stroke-disabled: rgb(24.216% 24.216% 24.216%);
|
|
2178
|
+
--click-badge-opaque-color-stroke-info: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
2179
|
+
--click-badge-opaque-color-stroke-warning: rgb(100% 46.667% 16.078% / 0.1);
|
|
2180
|
+
--click-badge-solid-color-background-default: #c0c0c0;
|
|
2181
|
+
--click-badge-solid-color-background-success: #99ffa1;
|
|
2182
|
+
--click-badge-solid-color-background-neutral: #c0c0c0;
|
|
2183
|
+
--click-badge-solid-color-background-danger: #ff9898;
|
|
2184
|
+
--click-badge-solid-color-background-disabled: #414141;
|
|
2185
|
+
--click-badge-solid-color-background-info: #a1bef7;
|
|
2186
|
+
--click-badge-solid-color-background-warning: #ff9457;
|
|
2187
|
+
--click-badge-solid-color-text-default: #1f1f1c;
|
|
2188
|
+
--click-badge-solid-color-text-success: #1f1f1c;
|
|
2189
|
+
--click-badge-solid-color-text-neutral: #1f1f1c;
|
|
2190
|
+
--click-badge-solid-color-text-danger: #1f1f1c;
|
|
2191
|
+
--click-badge-solid-color-text-disabled: #808080;
|
|
2192
|
+
--click-badge-solid-color-text-info: #1f1f1c;
|
|
2193
|
+
--click-badge-solid-color-text-warning: #1f1f1c;
|
|
2194
|
+
--click-badge-solid-color-stroke-default: rgb(19.608% 19.608% 19.608% / 0.1);
|
|
2195
|
+
--click-badge-solid-color-stroke-success: rgb(20% 100% 26.667% / 0.1);
|
|
2196
|
+
--click-badge-solid-color-stroke-neutral: rgb(62.745% 62.745% 62.745% / 0.1);
|
|
2197
|
+
--click-badge-solid-color-stroke-danger: rgb(100% 22.353% 22.353% / 0.2);
|
|
2198
|
+
--click-badge-solid-color-stroke-disabled: rgb(24.216% 24.216% 24.216%);
|
|
2199
|
+
--click-badge-solid-color-stroke-info: rgb(26.275% 49.412% 93.725% / 0.1);
|
|
2200
|
+
--click-badge-solid-color-stroke-warning: rgb(100% 46.667% 16.078% / 0.1);
|
|
2201
|
+
--click-bigStat-space-all: 1rem;
|
|
2202
|
+
--click-bigStat-space-sm-gap: 0;
|
|
2203
|
+
--click-bigStat-space-lg-gap: 0.5rem;
|
|
2204
|
+
--click-bigStat-radii-all: 0.25rem;
|
|
2205
|
+
--click-bigStat-stroke: 1px;
|
|
2206
|
+
--click-bigStat-typography-lg-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2207
|
+
--click-bigStat-typography-lg-label-muted: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2208
|
+
--click-bigStat-typography-lg-title-default: 700 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2209
|
+
--click-bigStat-typography-lg-title-muted: 700 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2210
|
+
--click-bigStat-typography-sm-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2211
|
+
--click-bigStat-typography-sm-label-muted: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2212
|
+
--click-bigStat-typography-sm-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2213
|
+
--click-bigStat-typography-sm-title-muted: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2214
|
+
--click-bigStat-color-stroke-default: #323232;
|
|
2215
|
+
--click-bigStat-color-stroke-muted: #323232;
|
|
2216
|
+
--click-bigStat-color-stroke-danger: #ffbaba;
|
|
2217
|
+
--click-bigStat-color-background-default: #1f1f1c;
|
|
2218
|
+
--click-bigStat-color-background-muted: #282828;
|
|
2219
|
+
--click-bigStat-color-label-default: #b3b6bd;
|
|
2220
|
+
--click-bigStat-color-label-muted: #b3b6bd;
|
|
2221
|
+
--click-bigStat-color-label-danger: #ffbaba;
|
|
2222
|
+
--click-bigStat-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2223
|
+
--click-bigStat-color-title-muted: rgb(97.5% 97.5% 97.5%);
|
|
2224
|
+
--click-button-radii-all: 0.25rem;
|
|
2225
|
+
--click-button-basic-space-x: 1rem;
|
|
2226
|
+
--click-button-basic-space-y: 0.2813rem;
|
|
2227
|
+
--click-button-basic-space-gap: 0.5rem;
|
|
2228
|
+
--click-button-basic-space-group: 0.5rem;
|
|
2229
|
+
--click-button-basic-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2230
|
+
--click-button-basic-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2231
|
+
--click-button-basic-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2232
|
+
--click-button-basic-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2233
|
+
--click-button-basic-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2234
|
+
--click-button-basic-typography-mobile-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2235
|
+
--click-button-basic-typography-mobile-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2236
|
+
--click-button-basic-size-icon-height: 0.9688rem;
|
|
2237
|
+
--click-button-basic-size-icon-all: 0.9688rem;
|
|
2238
|
+
--click-button-basic-size-icon-width: 0.9688rem;
|
|
2239
|
+
--click-button-basic-color-primary-background-default: #faff69;
|
|
2240
|
+
--click-button-basic-color-primary-background-hover: rgb(98.627% 100% 58.824%);
|
|
2241
|
+
--click-button-basic-color-primary-background-active: rgb(90.686% 92.5% 38.088%);
|
|
2242
|
+
--click-button-basic-color-primary-background-disabled: #414141;
|
|
2243
|
+
--click-button-basic-color-primary-background-loading: linear-gradient(90deg, rgb(206, 211, 84, 0.1) 0%, rgb(206, 211, 84) 100%);
|
|
2244
|
+
--click-button-basic-color-primary-text-default: #1f1f1c;
|
|
2245
|
+
--click-button-basic-color-primary-text-hover: #1f1f1c;
|
|
2246
|
+
--click-button-basic-color-primary-text-active: #1f1f1c;
|
|
2247
|
+
--click-button-basic-color-primary-text-disabled: #808080;
|
|
2248
|
+
--click-button-basic-color-primary-stroke-default: #faff69;
|
|
2249
|
+
--click-button-basic-color-primary-stroke-hover: #faff69;
|
|
2250
|
+
--click-button-basic-color-primary-stroke-active: rgb(82.978% 84.638% 34.851%);
|
|
2251
|
+
--click-button-basic-color-primary-stroke-disabled: #414141;
|
|
2252
|
+
--click-button-basic-color-secondary-background-default: #1f1f1c;
|
|
2253
|
+
--click-button-basic-color-secondary-background-hover: #282828;
|
|
2254
|
+
--click-button-basic-color-secondary-background-active: rgb(19.902% 19.902% 19.902%);
|
|
2255
|
+
--click-button-basic-color-secondary-background-disabled: #414141;
|
|
2256
|
+
--click-button-basic-color-secondary-background-loading: linear-gradient(90deg, rgb(48, 48, 43, 0.1) 0%, rgb(48, 48, 43) 100%);
|
|
2257
|
+
--click-button-basic-color-secondary-stroke-default: #414141;
|
|
2258
|
+
--click-button-basic-color-secondary-stroke-hover: #53575f;
|
|
2259
|
+
--click-button-basic-color-secondary-stroke-active: rgb(22.882% 22.137% 23.627%);
|
|
2260
|
+
--click-button-basic-color-secondary-stroke-disabled: #414141;
|
|
2261
|
+
--click-button-basic-color-secondary-text-default: #ffffff;
|
|
2262
|
+
--click-button-basic-color-secondary-text-hover: #ffffff;
|
|
2263
|
+
--click-button-basic-color-secondary-text-active: #ffffff;
|
|
2264
|
+
--click-button-basic-color-secondary-text-disabled: #808080;
|
|
2265
|
+
--click-button-basic-color-danger-background-default: rgb(100% 13.725% 13.725% / 0.2);
|
|
2266
|
+
--click-button-basic-color-danger-background-hover: rgb(100% 13.725% 13.725% / 0.3);
|
|
2267
|
+
--click-button-basic-color-danger-background-active: rgb(100% 13.725% 13.725% / 0.45);
|
|
2268
|
+
--click-button-basic-color-danger-background-disabled: #414141;
|
|
2269
|
+
--click-button-basic-color-danger-background-loading: linear-gradient(90deg, rgb(93, 45, 42, 0.1) 0%, rgb(93, 45, 42) 100%);
|
|
2270
|
+
--click-button-basic-color-danger-text-default: #ffbaba;
|
|
2271
|
+
--click-button-basic-color-danger-text-hover: #ffbaba;
|
|
2272
|
+
--click-button-basic-color-danger-text-active: #ffbaba;
|
|
2273
|
+
--click-button-basic-color-danger-text-disabled: #808080;
|
|
2274
|
+
--click-button-basic-color-danger-stroke-default: rgb(100% 22.353% 22.353% / 0.2);
|
|
2275
|
+
--click-button-basic-color-danger-stroke-hover: rgb(100% 13.725% 13.725% / 0.05);
|
|
2276
|
+
--click-button-basic-color-danger-stroke-active: rgb(100% 13.725% 13.725% / 0.05);
|
|
2277
|
+
--click-button-basic-color-danger-stroke-disabled: #414141;
|
|
2278
|
+
--click-button-basic-color-empty-text-default: #faff69;
|
|
2279
|
+
--click-button-basic-color-empty-text-hover: #feffc2;
|
|
2280
|
+
--click-button-basic-color-empty-text-active: #faff69;
|
|
2281
|
+
--click-button-basic-color-empty-text-disabled: #a0a0a0;
|
|
2282
|
+
--click-button-basic-color-empty-background-default: rgba(0, 0, 0, 0);
|
|
2283
|
+
--click-button-basic-color-empty-background-hover: #282828;
|
|
2284
|
+
--click-button-basic-color-empty-background-active: rgba(0, 0, 0, 0);
|
|
2285
|
+
--click-button-basic-color-empty-background-disabled: rgba(0, 0, 0, 0);
|
|
2286
|
+
--click-button-basic-color-empty-background-loading: linear-gradient(90deg, rgb(50, 51, 27, 0.1) 0%, rgb(50, 51, 27, 0.5) 100%);
|
|
2287
|
+
--click-button-basic-color-empty-stroke-default: rgba(0, 0, 0, 0);
|
|
2288
|
+
--click-button-basic-color-empty-stroke-hover: rgba(0, 0, 0, 0);
|
|
2289
|
+
--click-button-basic-color-empty-stroke-active: rgba(0, 0, 0, 0);
|
|
2290
|
+
--click-button-basic-color-empty-stroke-disabled: rgba(0, 0, 0, 0);
|
|
2291
|
+
--click-button-iconButton-default-space-x: 0.4375rem;
|
|
2292
|
+
--click-button-iconButton-default-space-y: 0.4375rem;
|
|
2293
|
+
--click-button-iconButton-size-small: 0.75rem;
|
|
2294
|
+
--click-button-iconButton-size-medium: 1rem;
|
|
2295
|
+
--click-button-iconButton-size-large: 1.25rem;
|
|
2296
|
+
--click-button-iconButton-radii-all: 0.25rem;
|
|
2297
|
+
--click-button-iconButton-sm-space-x: 0.25rem;
|
|
2298
|
+
--click-button-iconButton-sm-space-y: 0.25rem;
|
|
2299
|
+
--click-button-iconButton-xs-space-x: 0;
|
|
2300
|
+
--click-button-iconButton-xs-space-y: 0;
|
|
2301
|
+
--click-button-iconButton-color-primary-background-default: rgba(0, 0, 0, 0);
|
|
2302
|
+
--click-button-iconButton-color-primary-background-hover: #282828;
|
|
2303
|
+
--click-button-iconButton-color-primary-background-active: rgb(14.118% 14.118% 14.118%);
|
|
2304
|
+
--click-button-iconButton-color-primary-stroke-default: rgba(0, 0, 0, 0);
|
|
2305
|
+
--click-button-iconButton-color-primary-stroke-hover: #282828;
|
|
2306
|
+
--click-button-iconButton-color-primary-stroke-active: rgb(14.118% 14.118% 14.118%);
|
|
2307
|
+
--click-button-iconButton-color-primary-text-default: #ffffff;
|
|
2308
|
+
--click-button-iconButton-color-primary-text-hover: #ffffff;
|
|
2309
|
+
--click-button-iconButton-color-primary-text-active: #ffffff;
|
|
2310
|
+
--click-button-iconButton-color-secondary-background-default: #faff69;
|
|
2311
|
+
--click-button-iconButton-color-secondary-background-hover: rgb(98.627% 100% 58.824%);
|
|
2312
|
+
--click-button-iconButton-color-secondary-background-active: rgb(86.152% 87.875% 36.184%);
|
|
2313
|
+
--click-button-iconButton-color-secondary-stroke-default: rgba(0, 0, 0, 0);
|
|
2314
|
+
--click-button-iconButton-color-secondary-stroke-hover: rgb(98.627% 100% 58.824%);
|
|
2315
|
+
--click-button-iconButton-color-secondary-stroke-active: rgb(86.152% 87.875% 36.184%);
|
|
2316
|
+
--click-button-iconButton-color-secondary-text-default: #1f1f1c;
|
|
2317
|
+
--click-button-iconButton-color-secondary-text-hover: #1f1f1c;
|
|
2318
|
+
--click-button-iconButton-color-secondary-text-active: #1f1f1c;
|
|
2319
|
+
--click-button-iconButton-color-disabled-background-default: #414141;
|
|
2320
|
+
--click-button-iconButton-color-disabled-text-default: #808080;
|
|
2321
|
+
--click-button-iconButton-color-danger-background-default: rgb(100% 13.725% 13.725% / 0.2);
|
|
2322
|
+
--click-button-iconButton-color-danger-background-hover: #ff9898;
|
|
2323
|
+
--click-button-iconButton-color-danger-background-active: #c10000;
|
|
2324
|
+
--click-button-iconButton-color-danger-text-default: #ffbaba;
|
|
2325
|
+
--click-button-iconButton-color-danger-text-hover: #ffbaba;
|
|
2326
|
+
--click-button-iconButton-color-danger-text-active: #ffbaba;
|
|
2327
|
+
--click-button-iconButton-color-danger-stroke-default: rgb(100% 13.725% 13.725% / 0.2);
|
|
2328
|
+
--click-button-iconButton-color-danger-stroke-hover: rgb(100% 13.725% 13.725% / 0.3);
|
|
2329
|
+
--click-button-iconButton-color-danger-stroke-active: rgb(100% 13.725% 13.725% / 0.45);
|
|
2330
|
+
--click-button-iconButton-color-ghost-background-default: rgba(0, 0, 0, 0);
|
|
2331
|
+
--click-button-iconButton-color-ghost-background-hover: rgba(0, 0, 0, 0);
|
|
2332
|
+
--click-button-iconButton-color-ghost-background-active: rgb(0% 0% 0% / 0);
|
|
2333
|
+
--click-button-iconButton-color-ghost-stroke-default: rgba(0, 0, 0, 0);
|
|
2334
|
+
--click-button-iconButton-color-ghost-stroke-hover: rgba(0, 0, 0, 0);
|
|
2335
|
+
--click-button-iconButton-color-ghost-stroke-active: rgba(0, 0, 0, 0);
|
|
2336
|
+
--click-button-iconButton-color-ghost-text-default: #b3b6bd;
|
|
2337
|
+
--click-button-iconButton-color-ghost-text-hover: #ffffff;
|
|
2338
|
+
--click-button-iconButton-color-ghost-text-active: #ffffff;
|
|
2339
|
+
--click-button-iconButton-color-info-background-default: rgb(26.275% 49.412% 93.725% / 0.2);
|
|
2340
|
+
--click-button-iconButton-color-info-background-hover: #1d64ec;
|
|
2341
|
+
--click-button-iconButton-color-info-background-active: #437eef;
|
|
2342
|
+
--click-button-iconButton-color-info-text-default: #d0dffb;
|
|
2343
|
+
--click-button-iconButton-color-info-text-hover: #d0dffb;
|
|
2344
|
+
--click-button-iconButton-color-info-text-active: #d0dffb;
|
|
2345
|
+
--click-button-iconButton-color-info-stroke-default: rgb(26.275% 49.412% 93.725% / 0.2);
|
|
2346
|
+
--click-button-iconButton-color-info-stroke-hover: #1d64ec;
|
|
2347
|
+
--click-button-iconButton-color-info-stroke-active: #437eef;
|
|
2348
|
+
--click-button-stroke: 1px;
|
|
2349
|
+
--click-button-split-icon-space-y: 0.4375rem;
|
|
2350
|
+
--click-button-split-icon-space-x: 0.3438rem;
|
|
2351
|
+
--click-button-split-space-x: 1rem;
|
|
2352
|
+
--click-button-split-space-y: 0.2813rem;
|
|
2353
|
+
--click-button-split-space-gap: 0.5rem;
|
|
2354
|
+
--click-button-split-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2355
|
+
--click-button-split-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2356
|
+
--click-button-split-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2357
|
+
--click-button-split-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2358
|
+
--click-button-split-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2359
|
+
--click-button-split-typography-mobile-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2360
|
+
--click-button-split-typography-mobile-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2361
|
+
--click-button-split-primary-background-main-default: #faff69;
|
|
2362
|
+
--click-button-split-primary-background-main-hover: rgb(98.627% 100% 58.824%);
|
|
2363
|
+
--click-button-split-primary-background-main-active: rgb(82.978% 84.638% 34.851%);
|
|
2364
|
+
--click-button-split-primary-background-main-disabled: rgb(23.324% 23.324% 23.324%);
|
|
2365
|
+
--click-button-split-primary-background-action-default: rgb(88.235% 90% 37.059%);
|
|
2366
|
+
--click-button-split-primary-background-action-hover: rgb(90.737% 92% 54.118%);
|
|
2367
|
+
--click-button-split-primary-background-action-active: rgb(73.021% 74.481% 30.669%);
|
|
2368
|
+
--click-button-split-primary-background-action-disabled: rgb(20.525% 20.525% 20.525%);
|
|
2369
|
+
--click-button-split-primary-text-default: #1f1f1c;
|
|
2370
|
+
--click-button-split-primary-text-hover: #1f1f1c;
|
|
2371
|
+
--click-button-split-primary-text-active: #1f1f1c;
|
|
2372
|
+
--click-button-split-primary-text-disabled: #808080;
|
|
2373
|
+
--click-button-split-primary-stroke-default: rgba(0, 0, 0, 0);
|
|
2374
|
+
--click-button-split-primary-stroke-hover: rgba(0, 0, 0, 0);
|
|
2375
|
+
--click-button-split-primary-stroke-active: rgba(0, 0, 0, 0);
|
|
2376
|
+
--click-button-split-primary-stroke-disabled: rgba(0, 0, 0, 0);
|
|
2377
|
+
--click-button-split-primary-divide-default: rgb(85.784% 87.5% 36.029%);
|
|
2378
|
+
--click-button-split-primary-divide-hover: rgb(86.299% 87.5% 51.471%);
|
|
2379
|
+
--click-button-split-primary-divide-active: rgb(72.606% 74.058% 30.495%);
|
|
2380
|
+
--click-button-split-primary-divide-disabled: rgb(21.341% 21.341% 21.341%);
|
|
2381
|
+
--click-button-split-secondary-divide-default: #414141;
|
|
2382
|
+
--click-button-split-secondary-divide-hover: #414141;
|
|
2383
|
+
--click-button-split-secondary-divide-active: rgb(23.653% 22.916% 24.391%);
|
|
2384
|
+
--click-button-split-secondary-divide-disabled: #414141;
|
|
2385
|
+
--click-button-split-secondary-background-main-default: #1f1f1c;
|
|
2386
|
+
--click-button-split-secondary-background-main-hover: #282828;
|
|
2387
|
+
--click-button-split-secondary-background-main-active: rgb(19.902% 19.902% 19.902%);
|
|
2388
|
+
--click-button-split-secondary-background-main-disabled: #414141;
|
|
2389
|
+
--click-button-split-secondary-background-action-default: #282828;
|
|
2390
|
+
--click-button-split-secondary-background-action-hover: rgb(17.794% 17.794% 17.794%);
|
|
2391
|
+
--click-button-split-secondary-background-action-active: rgb(20.703% 20.703% 20.703%);
|
|
2392
|
+
--click-button-split-secondary-background-action-disabled: rgb(22.158% 22.158% 22.158%);
|
|
2393
|
+
--click-button-split-secondary-text-default: #ffffff;
|
|
2394
|
+
--click-button-split-secondary-text-hover: #ffffff;
|
|
2395
|
+
--click-button-split-secondary-text-active: #ffffff;
|
|
2396
|
+
--click-button-split-secondary-text-disabled: #808080;
|
|
2397
|
+
--click-button-split-secondary-stroke-default: #414141;
|
|
2398
|
+
--click-button-split-secondary-stroke-hover: #414141;
|
|
2399
|
+
--click-button-split-secondary-stroke-active: rgb(23.653% 22.916% 24.391%);
|
|
2400
|
+
--click-button-split-secondary-stroke-disabled: rgba(0, 0, 0, 0);
|
|
2401
|
+
--click-button-mobile-button-space-x: 0.75rem;
|
|
2402
|
+
--click-button-mobile-button-space-y: 0.5rem;
|
|
2403
|
+
--click-button-mobile-button-space-gap: 0.5rem;
|
|
2404
|
+
--click-button-mobile-basic-size-icon-all: 1.25rem;
|
|
2405
|
+
--click-button-group-radii-button-default-all: 2px;
|
|
2406
|
+
--click-button-group-radii-button-borderless-all: 0.25rem;
|
|
2407
|
+
--click-button-group-radii-panel-all: 0.25rem;
|
|
2408
|
+
--click-button-group-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2409
|
+
--click-button-group-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2410
|
+
--click-button-group-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2411
|
+
--click-button-group-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2412
|
+
--click-button-group-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2413
|
+
--click-button-group-typography-mobile-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2414
|
+
--click-button-group-typography-mobile-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2415
|
+
--click-button-group-space-panel-default-x: 3px;
|
|
2416
|
+
--click-button-group-space-panel-default-y: 3px;
|
|
2417
|
+
--click-button-group-space-panel-default-gap: 3px;
|
|
2418
|
+
--click-button-group-space-panel-borderless-x: 0;
|
|
2419
|
+
--click-button-group-space-panel-borderless-y: 0;
|
|
2420
|
+
--click-button-group-space-panel-borderless-gap: 0.25rem;
|
|
2421
|
+
--click-button-group-space-button-default-y: 1.5px;
|
|
2422
|
+
--click-button-group-space-button-default-x: 0.75rem;
|
|
2423
|
+
--click-button-group-space-button-borderless-y: 5.5px;
|
|
2424
|
+
--click-button-group-space-button-borderless-x: 1rem;
|
|
2425
|
+
--click-button-group-color-background-default: rgba(0, 0, 0, 0);
|
|
2426
|
+
--click-button-group-color-background-hover: #282828;
|
|
2427
|
+
--click-button-group-color-background-active: #414141;
|
|
2428
|
+
--click-button-group-color-background-disabled: rgba(0, 0, 0, 0);
|
|
2429
|
+
--click-button-group-color-background-disabled-active: lch(0 0 none / 0);
|
|
2430
|
+
--click-button-group-color-background-panel: rgba(0, 0, 0, 0);
|
|
2431
|
+
--click-button-group-color-text-default: #c0c0c0;
|
|
2432
|
+
--click-button-group-color-text-hover: #c0c0c0;
|
|
2433
|
+
--click-button-group-color-text-active: #ffffff;
|
|
2434
|
+
--click-button-group-color-text-disabled: #414141;
|
|
2435
|
+
--click-button-group-color-text-disabled-active: #808080;
|
|
2436
|
+
--click-button-group-color-stroke-default: rgba(0, 0, 0, 0);
|
|
2437
|
+
--click-button-group-color-stroke-hover: rgba(0, 0, 0, 0);
|
|
2438
|
+
--click-button-group-color-stroke-active: rgba(0, 0, 0, 0);
|
|
2439
|
+
--click-button-group-color-stroke-disabled: rgba(0, 0, 0, 0);
|
|
2440
|
+
--click-button-group-color-stroke-disabled-active: rgba(0, 0, 0, 0);
|
|
2441
|
+
--click-button-group-color-stroke-panel: #323232;
|
|
2442
|
+
--click-button-group-color-panel-stroke-default: #323232;
|
|
2443
|
+
--click-button-group-color-panel-stroke-borderless: rgba(0, 0, 0, 0);
|
|
2444
|
+
--click-button-alignLeft-size-icon-all: 0.9688rem;
|
|
2445
|
+
--click-button-alignLeft-space-x: 1rem;
|
|
2446
|
+
--click-button-alignLeft-space-y: 0.3438rem;
|
|
2447
|
+
--click-button-alignLeft-space-gap: 0.5rem;
|
|
2448
|
+
--click-button-alignLeft-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2449
|
+
--click-button-alignLeft-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2450
|
+
--click-button-alignLeft-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2451
|
+
--click-button-alignLeft-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2452
|
+
--click-button-alignLeft-typography-mobile-label-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2453
|
+
--click-button-alignLeft-typography-mobile-label-hover: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2454
|
+
--click-button-alignLeft-typography-mobile-label-active: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2455
|
+
--click-button-alignedLeft-color-background-default: rgba(0, 0, 0, 0);
|
|
2456
|
+
--click-button-alignedLeft-color-background-hover: #282828;
|
|
2457
|
+
--click-button-alignedLeft-color-background-active: rgb(15.373% 15.373% 15.373%);
|
|
2458
|
+
--click-button-alignedLeft-color-stroke-default: #323232;
|
|
2459
|
+
--click-button-alignedLeft-color-stroke-hover: #53575f;
|
|
2460
|
+
--click-button-alignedLeft-color-stroke-active: rgb(22.882% 22.137% 23.627%);
|
|
2461
|
+
--click-button-alignedLeft-color-text-default: #ffffff;
|
|
2462
|
+
--click-button-alignedLeft-color-text-hover: #ffffff;
|
|
2463
|
+
--click-button-alignedLeft-color-text-active: #ffffff;
|
|
2464
|
+
--click-card-secondary-space-all: 1rem;
|
|
2465
|
+
--click-card-secondary-space-gap: 1rem;
|
|
2466
|
+
--click-card-secondary-space-link-gap: 0.5rem;
|
|
2467
|
+
--click-card-secondary-radii-all: 0.25rem;
|
|
2468
|
+
--click-card-secondary-icon-size-all: 2rem;
|
|
2469
|
+
--click-card-secondary-stroke: 1px;
|
|
2470
|
+
--click-card-secondary-color-background-default: #1f1f1c;
|
|
2471
|
+
--click-card-secondary-color-background-hover: #282828;
|
|
2472
|
+
--click-card-secondary-color-background-active: rgb(14.902% 14.902% 14.902%);
|
|
2473
|
+
--click-card-secondary-color-background-disabled: #414141;
|
|
2474
|
+
--click-card-secondary-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2475
|
+
--click-card-secondary-color-title-hover: rgb(97.5% 97.5% 97.5%);
|
|
2476
|
+
--click-card-secondary-color-title-active: rgb(97.5% 97.5% 97.5%);
|
|
2477
|
+
--click-card-secondary-color-title-disabled: #808080;
|
|
2478
|
+
--click-card-secondary-color-description-default: #b3b6bd;
|
|
2479
|
+
--click-card-secondary-color-description-hover: #b3b6bd;
|
|
2480
|
+
--click-card-secondary-color-description-active: #b3b6bd;
|
|
2481
|
+
--click-card-secondary-color-description-disabled: #808080;
|
|
2482
|
+
--click-card-secondary-color-link-default: #ffffff;
|
|
2483
|
+
--click-card-secondary-color-link-hover: #faff69;
|
|
2484
|
+
--click-card-secondary-color-link-active: #ffffff;
|
|
2485
|
+
--click-card-secondary-color-link-disabled: #808080;
|
|
2486
|
+
--click-card-secondary-color-stroke-default: #323232;
|
|
2487
|
+
--click-card-secondary-color-stroke-hover: #323232;
|
|
2488
|
+
--click-card-secondary-color-stroke-active: rgb(18.627% 18.627% 18.627%);
|
|
2489
|
+
--click-card-secondary-color-stroke-disabled: #414141;
|
|
2490
|
+
--click-card-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2491
|
+
--click-card-typography-title-hover: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2492
|
+
--click-card-typography-title-active: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2493
|
+
--click-card-typography-title-disabled: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2494
|
+
--click-card-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2495
|
+
--click-card-typography-description-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2496
|
+
--click-card-typography-description-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2497
|
+
--click-card-typography-description-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2498
|
+
--click-card-typography-link-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2499
|
+
--click-card-typography-link-hover: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2500
|
+
--click-card-typography-link-active: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2501
|
+
--click-card-typography-link-disabled: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2502
|
+
--click-card-primary-size-icon-sm-all: 2rem;
|
|
2503
|
+
--click-card-primary-size-icon-md-all: 4rem;
|
|
2504
|
+
--click-card-primary-space-md-y: 1.5rem;
|
|
2505
|
+
--click-card-primary-space-md-x: 1.5rem;
|
|
2506
|
+
--click-card-primary-space-md-gap: 0.75rem;
|
|
2507
|
+
--click-card-primary-space-sm-y: 1.5rem;
|
|
2508
|
+
--click-card-primary-space-sm-x: 1.5rem;
|
|
2509
|
+
--click-card-primary-space-sm-gap: 0.25rem;
|
|
2510
|
+
--click-card-primary-radii-all: 0.25rem;
|
|
2511
|
+
--click-card-primary-stroke: 1px;
|
|
2512
|
+
--click-card-primary-color-background-default: #1f1f1c;
|
|
2513
|
+
--click-card-primary-color-background-hover: #282828;
|
|
2514
|
+
--click-card-primary-color-background-active: rgb(14.902% 14.902% 14.902%);
|
|
2515
|
+
--click-card-primary-color-background-disabled: #414141;
|
|
2516
|
+
--click-card-primary-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2517
|
+
--click-card-primary-color-title-hover: rgb(97.5% 97.5% 97.5%);
|
|
2518
|
+
--click-card-primary-color-title-active: rgb(97.5% 97.5% 97.5%);
|
|
2519
|
+
--click-card-primary-color-title-disabled: #808080;
|
|
2520
|
+
--click-card-primary-color-description-default: #b3b6bd;
|
|
2521
|
+
--click-card-primary-color-description-hover: #b3b6bd;
|
|
2522
|
+
--click-card-primary-color-description-active: #b3b6bd;
|
|
2523
|
+
--click-card-primary-color-description-disabled: #808080;
|
|
2524
|
+
--click-card-primary-color-stroke-default: #323232;
|
|
2525
|
+
--click-card-primary-color-stroke-hover: #323232;
|
|
2526
|
+
--click-card-primary-color-stroke-active: #faff69;
|
|
2527
|
+
--click-card-primary-color-stroke-disabled: #414141;
|
|
2528
|
+
--click-card-shadow: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
2529
|
+
--click-card-horizontal-radii-all: 0.25rem;
|
|
2530
|
+
--click-card-horizontal-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2531
|
+
--click-card-horizontal-typography-title-hover: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2532
|
+
--click-card-horizontal-typography-title-active: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2533
|
+
--click-card-horizontal-typography-title-disabled: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2534
|
+
--click-card-horizontal-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2535
|
+
--click-card-horizontal-typography-description-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2536
|
+
--click-card-horizontal-typography-description-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2537
|
+
--click-card-horizontal-typography-description-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2538
|
+
--click-card-horizontal-icon-size-all: 1.5rem;
|
|
2539
|
+
--click-card-horizontal-space-md-y: 0.75rem;
|
|
2540
|
+
--click-card-horizontal-space-md-x: 1rem;
|
|
2541
|
+
--click-card-horizontal-space-md-gap: 1rem;
|
|
2542
|
+
--click-card-horizontal-space-sm-y: 0.5rem;
|
|
2543
|
+
--click-card-horizontal-space-sm-x: 0.75rem;
|
|
2544
|
+
--click-card-horizontal-space-sm-gap: 0.75rem;
|
|
2545
|
+
--click-card-horizontal-default-color-background-default: #1f1f1c;
|
|
2546
|
+
--click-card-horizontal-default-color-background-hover: #282828;
|
|
2547
|
+
--click-card-horizontal-default-color-background-active: #282828;
|
|
2548
|
+
--click-card-horizontal-default-color-background-disabled: #414141;
|
|
2549
|
+
--click-card-horizontal-default-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2550
|
+
--click-card-horizontal-default-color-title-hover: rgb(97.5% 97.5% 97.5%);
|
|
2551
|
+
--click-card-horizontal-default-color-title-active: rgb(97.5% 97.5% 97.5%);
|
|
2552
|
+
--click-card-horizontal-default-color-title-disabled: #808080;
|
|
2553
|
+
--click-card-horizontal-default-color-description-default: #b3b6bd;
|
|
2554
|
+
--click-card-horizontal-default-color-description-hover: #b3b6bd;
|
|
2555
|
+
--click-card-horizontal-default-color-description-active: #b3b6bd;
|
|
2556
|
+
--click-card-horizontal-default-color-description-disabled: #808080;
|
|
2557
|
+
--click-card-horizontal-default-color-stroke-default: #323232;
|
|
2558
|
+
--click-card-horizontal-default-color-stroke-hover: #323232;
|
|
2559
|
+
--click-card-horizontal-default-color-stroke-active: #faff69;
|
|
2560
|
+
--click-card-horizontal-default-color-stroke-disabled: #414141;
|
|
2561
|
+
--click-card-horizontal-muted-color-background-default: #282828;
|
|
2562
|
+
--click-card-horizontal-muted-color-background-hover: #1f1f1c;
|
|
2563
|
+
--click-card-horizontal-muted-color-background-active: #282828;
|
|
2564
|
+
--click-card-horizontal-muted-color-background-disabled: #414141;
|
|
2565
|
+
--click-card-horizontal-muted-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2566
|
+
--click-card-horizontal-muted-color-title-hover: rgb(97.5% 97.5% 97.5%);
|
|
2567
|
+
--click-card-horizontal-muted-color-title-active: rgb(97.5% 97.5% 97.5%);
|
|
2568
|
+
--click-card-horizontal-muted-color-title-disabled: #808080;
|
|
2569
|
+
--click-card-horizontal-muted-color-description-default: #b3b6bd;
|
|
2570
|
+
--click-card-horizontal-muted-color-description-hover: #b3b6bd;
|
|
2571
|
+
--click-card-horizontal-muted-color-description-active: #b3b6bd;
|
|
2572
|
+
--click-card-horizontal-muted-color-description-disabled: #808080;
|
|
2573
|
+
--click-card-horizontal-muted-color-stroke-default: #323232;
|
|
2574
|
+
--click-card-horizontal-muted-color-stroke-hover: #323232;
|
|
2575
|
+
--click-card-horizontal-muted-color-stroke-active: #faff69;
|
|
2576
|
+
--click-card-horizontal-muted-color-stroke-disabled: #414141;
|
|
2577
|
+
--click-card-promotion-radii-all: 0.25rem;
|
|
2578
|
+
--click-card-promotion-typography-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2579
|
+
--click-card-promotion-space-y: 5.5px;
|
|
2580
|
+
--click-card-promotion-space-x: 0.75rem;
|
|
2581
|
+
--click-card-promotion-space-gap: 0.75rem;
|
|
2582
|
+
--click-card-promotion-icon-size-all: 1rem;
|
|
2583
|
+
--click-card-promotion-color-text-default: #ffffff;
|
|
2584
|
+
--click-card-promotion-color-text-hover: #ffffff;
|
|
2585
|
+
--click-card-promotion-color-text-active: #ffffff;
|
|
2586
|
+
--click-card-promotion-color-icon-default: #faff69;
|
|
2587
|
+
--click-card-promotion-color-icon-hover: #faff69;
|
|
2588
|
+
--click-card-promotion-color-icon-active: #faff69;
|
|
2589
|
+
--click-card-promotion-color-background-default: rgb(15.686% 15.686% 15.686% / 0.9);
|
|
2590
|
+
--click-card-promotion-color-background-hover: rgb(17.794% 17.794% 17.794% / 0.9);
|
|
2591
|
+
--click-card-promotion-color-background-active: rgb(19.849% 19.849% 19.849% / 0.9);
|
|
2592
|
+
--click-card-promotion-color-stroke-default: linear-gradient(174deg, #FAFF69 8.31%, #2C2E31 22.92%);
|
|
2593
|
+
--click-card-promotion-color-stroke-hover: linear-gradient(174deg, #FAFF69 8.31%, #2C2E31 22.92%);
|
|
2594
|
+
--click-card-promotion-color-stroke-active: linear-gradient(174deg, #FAFF69 8.31%, #2C2E31 22.92%);
|
|
2595
|
+
--click-card-promotion-color-stroke-focus: #faff69;
|
|
2596
|
+
--click-checkbox-radii-all: 0.125rem;
|
|
2597
|
+
--click-checkbox-space-all: 1px;
|
|
2598
|
+
--click-checkbox-space-gap: 0.5rem;
|
|
2599
|
+
--click-checkbox-size-all: 1rem;
|
|
2600
|
+
--click-checkbox-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2601
|
+
--click-checkbox-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2602
|
+
--click-checkbox-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2603
|
+
--click-checkbox-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2604
|
+
--click-checkbox-color-variations-default-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2605
|
+
--click-checkbox-color-variations-default-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2606
|
+
--click-checkbox-color-variations-default-background-active: #faff69;
|
|
2607
|
+
--click-checkbox-color-variations-default-background-disabled: #414141;
|
|
2608
|
+
--click-checkbox-color-variations-default-stroke-default: #414141;
|
|
2609
|
+
--click-checkbox-color-variations-default-stroke-hover: #414141;
|
|
2610
|
+
--click-checkbox-color-variations-default-stroke-active: #faff69;
|
|
2611
|
+
--click-checkbox-color-variations-default-stroke-disabled: #606060;
|
|
2612
|
+
--click-checkbox-color-variations-default-check-default: #ffffff;
|
|
2613
|
+
--click-checkbox-color-variations-default-check-hover: #ffffff;
|
|
2614
|
+
--click-checkbox-color-variations-default-check-active: #151515;
|
|
2615
|
+
--click-checkbox-color-variations-default-check-disabled: #808080;
|
|
2616
|
+
--click-checkbox-color-variations-default-label-default: #ffffff;
|
|
2617
|
+
--click-checkbox-color-variations-default-label-hover: #ffffff;
|
|
2618
|
+
--click-checkbox-color-variations-default-label-active: #ffffff;
|
|
2619
|
+
--click-checkbox-color-variations-default-label-disabled: #606060;
|
|
2620
|
+
--click-checkbox-color-variations-var1-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2621
|
+
--click-checkbox-color-variations-var1-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2622
|
+
--click-checkbox-color-variations-var1-background-active: #33ff44;
|
|
2623
|
+
--click-checkbox-color-variations-var1-background-disabled: rgb(17.794% 17.794% 17.794%);
|
|
2624
|
+
--click-checkbox-color-variations-var1-stroke-default: #00bd10;
|
|
2625
|
+
--click-checkbox-color-variations-var1-stroke-hover: #66ff73;
|
|
2626
|
+
--click-checkbox-color-variations-var1-stroke-active: #66ff73;
|
|
2627
|
+
--click-checkbox-color-variations-var1-stroke-disabled: #606060;
|
|
2628
|
+
--click-checkbox-color-variations-var1-check-default: #ffffff;
|
|
2629
|
+
--click-checkbox-color-variations-var1-check-hover: #ffffff;
|
|
2630
|
+
--click-checkbox-color-variations-var1-check-active: #ffffff;
|
|
2631
|
+
--click-checkbox-color-variations-var1-check-disabled: #a0a0a0;
|
|
2632
|
+
--click-checkbox-color-variations-var2-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2633
|
+
--click-checkbox-color-variations-var2-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2634
|
+
--click-checkbox-color-variations-var2-background-active: #437eef;
|
|
2635
|
+
--click-checkbox-color-variations-var2-background-disabled: rgb(17.794% 17.794% 17.794%);
|
|
2636
|
+
--click-checkbox-color-variations-var2-stroke-default: #6d9bf3;
|
|
2637
|
+
--click-checkbox-color-variations-var2-stroke-hover: #a1bef7;
|
|
2638
|
+
--click-checkbox-color-variations-var2-stroke-active: #a1bef7;
|
|
2639
|
+
--click-checkbox-color-variations-var2-stroke-disabled: #606060;
|
|
2640
|
+
--click-checkbox-color-variations-var2-check-default: #ffffff;
|
|
2641
|
+
--click-checkbox-color-variations-var2-check-hover: #ffffff;
|
|
2642
|
+
--click-checkbox-color-variations-var2-check-active: #ffffff;
|
|
2643
|
+
--click-checkbox-color-variations-var2-check-disabled: #a0a0a0;
|
|
2644
|
+
--click-checkbox-color-variations-var3-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2645
|
+
--click-checkbox-color-variations-var3-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2646
|
+
--click-checkbox-color-variations-var3-background-active: #fb64d6;
|
|
2647
|
+
--click-checkbox-color-variations-var3-background-disabled: rgb(17.794% 17.794% 17.794%);
|
|
2648
|
+
--click-checkbox-color-variations-var3-stroke-default: #fb64d6;
|
|
2649
|
+
--click-checkbox-color-variations-var3-stroke-hover: #fb64d6;
|
|
2650
|
+
--click-checkbox-color-variations-var3-stroke-active: #fb64d6;
|
|
2651
|
+
--click-checkbox-color-variations-var3-stroke-disabled: #606060;
|
|
2652
|
+
--click-checkbox-color-variations-var3-check-default: #ffffff;
|
|
2653
|
+
--click-checkbox-color-variations-var3-check-hover: #ffffff;
|
|
2654
|
+
--click-checkbox-color-variations-var3-check-active: #ffffff;
|
|
2655
|
+
--click-checkbox-color-variations-var3-check-disabled: #a0a0a0;
|
|
2656
|
+
--click-checkbox-color-variations-var4-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2657
|
+
--click-checkbox-color-variations-var4-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2658
|
+
--click-checkbox-color-variations-var4-background-active: #ff7729;
|
|
2659
|
+
--click-checkbox-color-variations-var4-background-disabled: rgb(17.794% 17.794% 17.794%);
|
|
2660
|
+
--click-checkbox-color-variations-var4-stroke-default: #faff69;
|
|
2661
|
+
--click-checkbox-color-variations-var4-stroke-hover: #fdffa3;
|
|
2662
|
+
--click-checkbox-color-variations-var4-stroke-active: #fdffa3;
|
|
2663
|
+
--click-checkbox-color-variations-var4-stroke-disabled: #606060;
|
|
2664
|
+
--click-checkbox-color-variations-var4-check-default: #ffffff;
|
|
2665
|
+
--click-checkbox-color-variations-var4-check-hover: #ffffff;
|
|
2666
|
+
--click-checkbox-color-variations-var4-check-active: #ffffff;
|
|
2667
|
+
--click-checkbox-color-variations-var4-check-disabled: #a0a0a0;
|
|
2668
|
+
--click-checkbox-color-variations-var5-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2669
|
+
--click-checkbox-color-variations-var5-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2670
|
+
--click-checkbox-color-variations-var5-background-active: #6df8e1;
|
|
2671
|
+
--click-checkbox-color-variations-var5-background-disabled: rgb(17.794% 17.794% 17.794%);
|
|
2672
|
+
--click-checkbox-color-variations-var5-stroke-default: #6df8e1;
|
|
2673
|
+
--click-checkbox-color-variations-var5-stroke-hover: #a3faec;
|
|
2674
|
+
--click-checkbox-color-variations-var5-stroke-active: #a3faec;
|
|
2675
|
+
--click-checkbox-color-variations-var5-stroke-disabled: #606060;
|
|
2676
|
+
--click-checkbox-color-variations-var5-check-default: #ffffff;
|
|
2677
|
+
--click-checkbox-color-variations-var5-check-hover: #ffffff;
|
|
2678
|
+
--click-checkbox-color-variations-var5-check-active: #ffffff;
|
|
2679
|
+
--click-checkbox-color-variations-var5-check-disabled: #a0a0a0;
|
|
2680
|
+
--click-checkbox-color-variations-var6-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2681
|
+
--click-checkbox-color-variations-var6-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2682
|
+
--click-checkbox-color-variations-var6-background-active: #bb33ff;
|
|
2683
|
+
--click-checkbox-color-variations-var6-background-disabled: rgb(17.794% 17.794% 17.794%);
|
|
2684
|
+
--click-checkbox-color-variations-var6-stroke-default: #cc66ff;
|
|
2685
|
+
--click-checkbox-color-variations-var6-stroke-hover: #cc66ff;
|
|
2686
|
+
--click-checkbox-color-variations-var6-stroke-active: #cc66ff;
|
|
2687
|
+
--click-checkbox-color-variations-var6-stroke-disabled: #606060;
|
|
2688
|
+
--click-checkbox-color-variations-var6-check-default: #ffffff;
|
|
2689
|
+
--click-checkbox-color-variations-var6-check-hover: #ffffff;
|
|
2690
|
+
--click-checkbox-color-variations-var6-check-active: #ffffff;
|
|
2691
|
+
--click-checkbox-color-variations-var6-check-disabled: #a0a0a0;
|
|
2692
|
+
--click-checkbox-color-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2693
|
+
--click-checkbox-color-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
2694
|
+
--click-checkbox-color-background-active: #faff69;
|
|
2695
|
+
--click-checkbox-color-background-disabled: #414141;
|
|
2696
|
+
--click-checkbox-color-stroke-default: #414141;
|
|
2697
|
+
--click-checkbox-color-stroke-hover: #414141;
|
|
2698
|
+
--click-checkbox-color-stroke-active: #faff69;
|
|
2699
|
+
--click-checkbox-color-stroke-disabled: #606060;
|
|
2700
|
+
--click-checkbox-color-check-default: #ffffff;
|
|
2701
|
+
--click-checkbox-color-check-hover: #ffffff;
|
|
2702
|
+
--click-checkbox-color-check-active: #151515;
|
|
2703
|
+
--click-checkbox-color-check-disabled: #808080;
|
|
2704
|
+
--click-checkbox-color-label-default: #ffffff;
|
|
2705
|
+
--click-checkbox-color-label-hover: #ffffff;
|
|
2706
|
+
--click-checkbox-color-label-active: #ffffff;
|
|
2707
|
+
--click-checkbox-color-label-disabled: #606060;
|
|
2708
|
+
--click-codeblock-space-x: 1rem;
|
|
2709
|
+
--click-codeblock-space-y: 1rem;
|
|
2710
|
+
--click-codeblock-space-gap: 1.5rem;
|
|
2711
|
+
--click-codeblock-radii-all: 0.25rem;
|
|
2712
|
+
--click-codeblock-stroke: 1px;
|
|
2713
|
+
--click-codeblock-typography-text-default: 500 0.875rem/1.7 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
2714
|
+
--click-codeblock-numbers-size-width: 1.5rem;
|
|
2715
|
+
--click-codeblock-darkMode-color-background-default: #282828;
|
|
2716
|
+
--click-codeblock-darkMode-color-text-default: #ffffff;
|
|
2717
|
+
--click-codeblock-darkMode-color-numbers-default: #c0c0c0;
|
|
2718
|
+
--click-codeblock-darkMode-color-button-background-default: #282828;
|
|
2719
|
+
--click-codeblock-darkMode-color-button-background-hover: #53575f;
|
|
2720
|
+
--click-codeblock-darkMode-color-button-foreground-default: #ffffff;
|
|
2721
|
+
--click-codeblock-darkMode-color-stroke-default: #282828;
|
|
2722
|
+
--click-codeblock-lightMode-color-background-default: #f6f7fa;
|
|
2723
|
+
--click-codeblock-lightMode-color-text-default: #282828;
|
|
2724
|
+
--click-codeblock-lightMode-color-numbers-default: #808080;
|
|
2725
|
+
--click-codeblock-lightMode-color-button-background-default: #f6f7fa;
|
|
2726
|
+
--click-codeblock-lightMode-color-button-background-hover: #53575f;
|
|
2727
|
+
--click-codeblock-lightMode-color-button-foreground-default: #a0a0a0;
|
|
2728
|
+
--click-codeblock-lightMode-color-stroke-default: #282828;
|
|
2729
|
+
--click-codeblock-monacoTheme-parameter-foreground: #c0c0c0;
|
|
2730
|
+
--click-codeblock-monacoTheme-parameter-background: rgb(62.745% 62.745% 62.745% / 0.2);
|
|
2731
|
+
--click-codeInline-space-x: 0.25rem;
|
|
2732
|
+
--click-codeInline-stroke: 1px;
|
|
2733
|
+
--click-codeInline-typography-text-default: 500 0.875rem/1.7 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
2734
|
+
--click-codeInline-radii-all: 0.25rem;
|
|
2735
|
+
--click-codeInline-color-background-default: #282828;
|
|
2736
|
+
--click-codeInline-color-text-default: #ffffff;
|
|
2737
|
+
--click-codeInline-color-stroke-default: #323232;
|
|
2738
|
+
--click-container-space-none: 0;
|
|
2739
|
+
--click-container-space-xxs: 0.25rem;
|
|
2740
|
+
--click-container-space-xs: 0.5rem;
|
|
2741
|
+
--click-container-space-sm: 0.75rem;
|
|
2742
|
+
--click-container-space-md: 1rem;
|
|
2743
|
+
--click-container-space-lg: 1.5rem;
|
|
2744
|
+
--click-container-space-xl: 2rem;
|
|
2745
|
+
--click-container-space-xxl: 4rem;
|
|
2746
|
+
--click-container-gap-none: 0;
|
|
2747
|
+
--click-container-gap-xxs: 0.25rem;
|
|
2748
|
+
--click-container-gap-xs: 0.5rem;
|
|
2749
|
+
--click-container-gap-sm: 0.75rem;
|
|
2750
|
+
--click-container-gap-md: 1rem;
|
|
2751
|
+
--click-container-gap-lg: 1.5rem;
|
|
2752
|
+
--click-container-gap-xl: 2rem;
|
|
2753
|
+
--click-container-gap-xxl: 4rem;
|
|
2754
|
+
--click-datePicker-dateOption-space-gap: 2px;
|
|
2755
|
+
--click-datePicker-dateOption-radii-default: 0.25rem;
|
|
2756
|
+
--click-datePicker-dateOption-radii-range: 0;
|
|
2757
|
+
--click-datePicker-dateOption-stroke: 1px;
|
|
2758
|
+
--click-datePicker-dateOption-size-height: 2rem;
|
|
2759
|
+
--click-datePicker-dateOption-size-width: 2rem;
|
|
2760
|
+
--click-datePicker-dateOption-typography-label-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2761
|
+
--click-datePicker-dateOption-typography-label-hover: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2762
|
+
--click-datePicker-dateOption-typography-label-active: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2763
|
+
--click-datePicker-dateOption-typography-label-disabled: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2764
|
+
--click-datePicker-dateOption-typography-label-range: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2765
|
+
--click-datePicker-dateOption-color-label-default: #ffffff;
|
|
2766
|
+
--click-datePicker-dateOption-color-label-hover: #ffffff;
|
|
2767
|
+
--click-datePicker-dateOption-color-label-active: #1f1f1c;
|
|
2768
|
+
--click-datePicker-dateOption-color-label-disabled: #a0a0a0;
|
|
2769
|
+
--click-datePicker-dateOption-color-label-range: #ffffff;
|
|
2770
|
+
--click-datePicker-dateOption-color-background-default: #1f1f1c;
|
|
2771
|
+
--click-datePicker-dateOption-color-background-hover: #1f1f1c;
|
|
2772
|
+
--click-datePicker-dateOption-color-background-active: #faff69;
|
|
2773
|
+
--click-datePicker-dateOption-color-background-disabled: #1f1f1c;
|
|
2774
|
+
--click-datePicker-dateOption-color-background-range: #323232;
|
|
2775
|
+
--click-datePicker-dateOption-color-stroke-default: #1f1f1c;
|
|
2776
|
+
--click-datePicker-dateOption-color-stroke-hover: #faff69;
|
|
2777
|
+
--click-datePicker-dateOption-color-stroke-active: #faff69;
|
|
2778
|
+
--click-datePicker-dateOption-color-stroke-disabled: #1f1f1c;
|
|
2779
|
+
--click-datePicker-dateOption-color-stroke-range: #323232;
|
|
2780
|
+
--click-datePicker-space-gap: 0.25rem;
|
|
2781
|
+
--click-datePicker-typography-daytitle-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2782
|
+
--click-datePicker-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2783
|
+
--click-datePicker-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2784
|
+
--click-datePicker-color-daytitle-default: #b3b6bd;
|
|
2785
|
+
--click-dialog-space-y: 1.5rem;
|
|
2786
|
+
--click-dialog-space-x: 2rem;
|
|
2787
|
+
--click-dialog-space-gap: 1rem;
|
|
2788
|
+
--click-dialog-title-space-gap: 0.25rem;
|
|
2789
|
+
--click-dialog-radii-all: 0.5rem;
|
|
2790
|
+
--click-dialog-shadow-default: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
2791
|
+
--click-dialog-stroke-default: 1px solid #323232;
|
|
2792
|
+
--click-dialog-typography-title-default: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2793
|
+
--click-dialog-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2794
|
+
--click-dialog-color-background-default: #1f1f1c;
|
|
2795
|
+
--click-dialog-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2796
|
+
--click-dialog-color-description-default: #b3b6bd;
|
|
2797
|
+
--click-dialog-color-opaqueBackground-default: lch(40.731 0 none / 0.75);
|
|
2798
|
+
--click-docs-typography-titles-lg: 600 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2799
|
+
--click-docs-typography-titles-md: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2800
|
+
--click-docs-typography-titles-sm: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2801
|
+
--click-docs-typography-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2802
|
+
--click-docs-typography-breadcrumbs-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2803
|
+
--click-docs-typography-breadcrumbs-active: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2804
|
+
--click-docs-typography-toc-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2805
|
+
--click-docs-typography-toc-item-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2806
|
+
--click-docs-typography-toc-item-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2807
|
+
--click-docs-typography-toc-item-active: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2808
|
+
--click-field-typography-label-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2809
|
+
--click-field-typography-label-hover: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2810
|
+
--click-field-typography-label-active: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2811
|
+
--click-field-typography-label-disabled: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2812
|
+
--click-field-typography-label-error: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2813
|
+
--click-field-typography-fieldText-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2814
|
+
--click-field-typography-fieldText-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2815
|
+
--click-field-typography-fieldText-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2816
|
+
--click-field-typography-fieldText-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2817
|
+
--click-field-typography-fieldText-error: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2818
|
+
--click-field-typography-placeholder-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2819
|
+
--click-field-typography-format-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2820
|
+
--click-field-typography-format-hover: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2821
|
+
--click-field-typography-format-active: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2822
|
+
--click-field-typography-format-disabled: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2823
|
+
--click-field-typography-format-error: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2824
|
+
--click-field-typography-genericLabel-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2825
|
+
--click-field-typography-genericLabel-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2826
|
+
--click-field-typography-genericLabel-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2827
|
+
--click-field-typography-genericLabel-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2828
|
+
--click-field-typography-genericLabel-error: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2829
|
+
--click-field-type-mobile-label: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2830
|
+
--click-field-type-mobile-field-value: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2831
|
+
--click-field-space-x: 0.75rem;
|
|
2832
|
+
--click-field-space-y: 0.2813rem;
|
|
2833
|
+
--click-field-space-gap: 0.5rem;
|
|
2834
|
+
--click-field-size-icon: 1rem;
|
|
2835
|
+
--click-field-radii-all: 0.25rem;
|
|
2836
|
+
--click-field-mobile-space-x: 0.75rem;
|
|
2837
|
+
--click-field-mobile-space-y: 0.5rem;
|
|
2838
|
+
--click-field-mobile-space-gap: 0.5rem;
|
|
2839
|
+
--click-field-color-background-default: rgb(17.794% 17.794% 17.794%);
|
|
2840
|
+
--click-field-color-background-hover: rgb(19.849% 19.849% 19.849%);
|
|
2841
|
+
--click-field-color-background-active: rgb(19.849% 19.849% 19.849%);
|
|
2842
|
+
--click-field-color-background-disabled: #414141;
|
|
2843
|
+
--click-field-color-background-error: rgb(19.849% 19.849% 19.849%);
|
|
2844
|
+
--click-field-color-text-default: #e6e7e9;
|
|
2845
|
+
--click-field-color-text-hover: #e6e7e9;
|
|
2846
|
+
--click-field-color-text-active: #ffffff;
|
|
2847
|
+
--click-field-color-text-disabled: #808080;
|
|
2848
|
+
--click-field-color-text-error: #ffbaba;
|
|
2849
|
+
--click-field-color-stroke-default: rgb(23.627% 23.627% 23.627%);
|
|
2850
|
+
--click-field-color-stroke-hover: rgb(27.446% 27.446% 27.446%);
|
|
2851
|
+
--click-field-color-stroke-active: #faff69;
|
|
2852
|
+
--click-field-color-stroke-disabled: #414141;
|
|
2853
|
+
--click-field-color-stroke-error: #ffbaba;
|
|
2854
|
+
--click-field-color-label-default: #b3b6bd;
|
|
2855
|
+
--click-field-color-label-hover: #b3b6bd;
|
|
2856
|
+
--click-field-color-label-active: #ffffff;
|
|
2857
|
+
--click-field-color-label-disabled: #606060;
|
|
2858
|
+
--click-field-color-label-error: #ffbaba;
|
|
2859
|
+
--click-field-color-format-default: rgb(60.157% 60.157% 60.157%);
|
|
2860
|
+
--click-field-color-format-hover: rgb(60.157% 60.157% 60.157%);
|
|
2861
|
+
--click-field-color-format-active: rgb(60.157% 60.157% 60.157%);
|
|
2862
|
+
--click-field-color-format-disabled: #808080;
|
|
2863
|
+
--click-field-color-format-error: rgb(60.157% 60.157% 60.157%);
|
|
2864
|
+
--click-field-color-genericLabel-default: #ffffff;
|
|
2865
|
+
--click-field-color-genericLabel-hover: #ffffff;
|
|
2866
|
+
--click-field-color-genericLabel-active: #ffffff;
|
|
2867
|
+
--click-field-color-genericLabel-disabled: #a0a0a0;
|
|
2868
|
+
--click-field-color-placeholder-default: #808080;
|
|
2869
|
+
--click-field-color-placeholder-disabled: #606060;
|
|
2870
|
+
--click-fileUpload-sm-icon-size-height: 1.5rem;
|
|
2871
|
+
--click-fileUpload-sm-icon-size-width: 1.5rem;
|
|
2872
|
+
--click-fileUpload-sm-space-gap: 0.75rem;
|
|
2873
|
+
--click-fileUpload-sm-space-x: 1rem;
|
|
2874
|
+
--click-fileUpload-sm-space-y: 0.5rem;
|
|
2875
|
+
--click-fileUpload-sm-radii-all: 0.25rem;
|
|
2876
|
+
--click-fileUpload-sm-color-icon-default: #b3b6bd;
|
|
2877
|
+
--click-fileUpload-md-icon-size-height: 2rem;
|
|
2878
|
+
--click-fileUpload-md-icon-size-width: 2rem;
|
|
2879
|
+
--click-fileUpload-md-space-gap: 0.5rem;
|
|
2880
|
+
--click-fileUpload-md-space-x: 1rem;
|
|
2881
|
+
--click-fileUpload-md-space-y: 0.75rem;
|
|
2882
|
+
--click-fileUpload-md-radii-all: 0.5rem;
|
|
2883
|
+
--click-fileUpload-md-color-icon-default: #ffffff;
|
|
2884
|
+
--click-fileUpload-typography-title-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2885
|
+
--click-fileUpload-typography-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2886
|
+
--click-fileUpload-hasFile-space-gap: 0.75rem;
|
|
2887
|
+
--click-fileUpload-hasFile-header-space-gap: 0.5rem;
|
|
2888
|
+
--click-fileUpload-transitions-all: all 100ms ease-in 0ms;
|
|
2889
|
+
--click-fileUpload-color-background-default: #1f1f1c;
|
|
2890
|
+
--click-fileUpload-color-background-hover: #1f1f1c;
|
|
2891
|
+
--click-fileUpload-color-background-active: rgb(19.849% 19.849% 19.849%);
|
|
2892
|
+
--click-fileUpload-color-background-error: rgb(100% 13.725% 13.725% / 0.2);
|
|
2893
|
+
--click-fileUpload-color-stroke-default: rgb(23.627% 23.627% 23.627%);
|
|
2894
|
+
--click-fileUpload-color-stroke-hover: rgb(23.627% 23.627% 23.627%);
|
|
2895
|
+
--click-fileUpload-color-stroke-active: #414141;
|
|
2896
|
+
--click-fileUpload-color-stroke-error: rgba(0, 0, 0, 0);
|
|
2897
|
+
--click-fileUpload-color-title-default: #ffffff;
|
|
2898
|
+
--click-fileUpload-color-title-hover: #ffffff;
|
|
2899
|
+
--click-fileUpload-color-title-active: #ffffff;
|
|
2900
|
+
--click-fileUpload-color-title-error: #ffbaba;
|
|
2901
|
+
--click-fileUpload-color-description-default: #b3b6bd;
|
|
2902
|
+
--click-fileUpload-color-description-hover: #b3b6bd;
|
|
2903
|
+
--click-fileUpload-color-description-active: #b3b6bd;
|
|
2904
|
+
--click-fileUpload-color-description-error: #ffbaba;
|
|
2905
|
+
--click-flyout-space-default-x: 0;
|
|
2906
|
+
--click-flyout-space-default-y: 1.5rem;
|
|
2907
|
+
--click-flyout-space-default-gap: 1rem;
|
|
2908
|
+
--click-flyout-space-default-top: 0;
|
|
2909
|
+
--click-flyout-space-default-content-x: 1.5rem;
|
|
2910
|
+
--click-flyout-space-default-content-y: 1.5rem;
|
|
2911
|
+
--click-flyout-space-default-content-row-gap: 0.25rem;
|
|
2912
|
+
--click-flyout-space-default-content-column-gap: 1rem;
|
|
2913
|
+
--click-flyout-space-inline-x: 0;
|
|
2914
|
+
--click-flyout-space-inline-y: 0.75rem;
|
|
2915
|
+
--click-flyout-space-inline-gap: 0.75rem;
|
|
2916
|
+
--click-flyout-space-inline-top: 3.5rem;
|
|
2917
|
+
--click-flyout-space-inline-content-x: 0.75rem;
|
|
2918
|
+
--click-flyout-space-inline-content-y: 0.75rem;
|
|
2919
|
+
--click-flyout-space-inline-content-row-gap: 0.25rem;
|
|
2920
|
+
--click-flyout-space-inline-content-column-gap: 0.75rem;
|
|
2921
|
+
--click-flyout-shadow-default: -5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
2922
|
+
--click-flyout-shadow-reverse: 5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
2923
|
+
--click-flyout-size-default-width: 27.5rem;
|
|
2924
|
+
--click-flyout-size-default-height: 100%;
|
|
2925
|
+
--click-flyout-size-wide-width: 37.5rem;
|
|
2926
|
+
--click-flyout-size-wide-height: 100vh;
|
|
2927
|
+
--click-flyout-size-narrow-width: 21rem;
|
|
2928
|
+
--click-flyout-size-narrow-height: 100%;
|
|
2929
|
+
--click-flyout-size-widest-width: 55rem;
|
|
2930
|
+
--click-flyout-size-widest-height: 100vh;
|
|
2931
|
+
--click-flyout-typography-default-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2932
|
+
--click-flyout-typography-default-title-default: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2933
|
+
--click-flyout-typography-inline-description-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2934
|
+
--click-flyout-typography-inline-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2935
|
+
--click-flyout-color-background-default: #282828;
|
|
2936
|
+
--click-flyout-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
2937
|
+
--click-flyout-color-description-default: #b3b6bd;
|
|
2938
|
+
--click-flyout-color-opaqueBackground-default: lch(6.7738 0 none / 0.45);
|
|
2939
|
+
--click-flyout-color-stroke-default: #323232;
|
|
2940
|
+
--click-genericMenu-item-space-x: 1rem;
|
|
2941
|
+
--click-genericMenu-item-space-y: 0.3438rem;
|
|
2942
|
+
--click-genericMenu-item-space-gap: 0.5rem;
|
|
2943
|
+
--click-genericMenu-item-icon-size-height: 0.9688rem;
|
|
2944
|
+
--click-genericMenu-item-icon-size-width: 0.9688rem;
|
|
2945
|
+
--click-genericMenu-item-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2946
|
+
--click-genericMenu-item-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2947
|
+
--click-genericMenu-item-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2948
|
+
--click-genericMenu-item-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2949
|
+
--click-genericMenu-item-typography-sectionHeader-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2950
|
+
--click-genericMenu-item-typography-subtext-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2951
|
+
--click-genericMenu-item-typography-subtext-hover: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2952
|
+
--click-genericMenu-item-typography-subtext-active: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2953
|
+
--click-genericMenu-item-typography-subtext-disabled: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2954
|
+
--click-genericMenu-item-two-lines-space-x: 1rem;
|
|
2955
|
+
--click-genericMenu-item-two-lines-space-y: 0.3438rem;
|
|
2956
|
+
--click-genericMenu-item-two-lines-space-gap: 0.75rem;
|
|
2957
|
+
--click-genericMenu-item-size-minWidth: 180px;
|
|
2958
|
+
--click-genericMenu-item-color-default-text-default: #ffffff;
|
|
2959
|
+
--click-genericMenu-item-color-default-text-hover: #ffffff;
|
|
2960
|
+
--click-genericMenu-item-color-default-text-active: #ffffff;
|
|
2961
|
+
--click-genericMenu-item-color-default-text-disabled: #808080;
|
|
2962
|
+
--click-genericMenu-item-color-default-text-muted: #b3b6bd;
|
|
2963
|
+
--click-genericMenu-item-color-default-background-default: #282828;
|
|
2964
|
+
--click-genericMenu-item-color-default-background-hover: rgb(23.064% 23.064% 23.064%);
|
|
2965
|
+
--click-genericMenu-item-color-default-background-active: #282828;
|
|
2966
|
+
--click-genericMenu-item-color-default-background-disabled: #414141;
|
|
2967
|
+
--click-genericMenu-item-color-default-stroke-default: #323232;
|
|
2968
|
+
--click-genericMenu-item-color-format-default: lch(62.868 0 none);
|
|
2969
|
+
--click-genericMenu-item-color-format-hover: rgb(60.157% 60.157% 60.157%);
|
|
2970
|
+
--click-genericMenu-item-color-format-active: rgb(60.157% 60.157% 60.157%);
|
|
2971
|
+
--click-genericMenu-item-color-format-disabled: #808080;
|
|
2972
|
+
--click-genericMenu-item-color-format-error: rgb(60.157% 60.157% 60.157%);
|
|
2973
|
+
--click-genericMenu-item-color-subtext-default: #b3b6bd;
|
|
2974
|
+
--click-genericMenu-item-color-subtext-hover: #b3b6bd;
|
|
2975
|
+
--click-genericMenu-item-color-subtext-active: #b3b6bd;
|
|
2976
|
+
--click-genericMenu-item-color-subtext-disabled: #c0c0c0;
|
|
2977
|
+
--click-genericMenu-item-color-danger-text-default: #ffbaba;
|
|
2978
|
+
--click-genericMenu-item-color-danger-text-hover: #ffbaba;
|
|
2979
|
+
--click-genericMenu-item-color-danger-text-active: #ffbaba;
|
|
2980
|
+
--click-genericMenu-item-color-danger-text-disabled: #808080;
|
|
2981
|
+
--click-genericMenu-item-color-danger-background-default: #282828;
|
|
2982
|
+
--click-genericMenu-item-color-danger-background-hover: rgb(100% 21.274% 21.274% / 0.3);
|
|
2983
|
+
--click-genericMenu-item-color-danger-background-active: rgb(100% 13.725% 13.725% / 0.45);
|
|
2984
|
+
--click-genericMenu-item-color-danger-background-disabled: #414141;
|
|
2985
|
+
--click-genericMenu-item-color-danger-stroke-default: rgba(0, 0, 0, 0);
|
|
2986
|
+
--click-genericMenu-itemCustom-typography-label-sm: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2987
|
+
--click-genericMenu-itemCustom-typography-label-lg: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2988
|
+
--click-genericMenu-button-space-gap: 0.25rem;
|
|
2989
|
+
--click-genericMenu-button-space-y: 0.5rem;
|
|
2990
|
+
--click-genericMenu-button-typography-label-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2991
|
+
--click-genericMenu-button-typography-label-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2992
|
+
--click-genericMenu-button-typography-label-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
2993
|
+
--click-genericMenu-button-color-background-default: #282828;
|
|
2994
|
+
--click-genericMenu-button-color-label-default: #b3b6bd;
|
|
2995
|
+
--click-genericMenu-button-color-stroke-default: #323232;
|
|
2996
|
+
--click-genericMenu-panel-radii-all: 0.25rem;
|
|
2997
|
+
--click-genericMenu-panel-shadow-default: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
2998
|
+
--click-genericMenu-panel-size-height: 2rem;
|
|
2999
|
+
--click-genericMenu-panel-color-background-default: #282828;
|
|
3000
|
+
--click-genericMenu-panel-color-stroke-default: #414141;
|
|
3001
|
+
--click-genericMenu-autocomplete-typography-results-label-default: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3002
|
+
--click-genericMenu-autocomplete-typography-search-placeholder-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3003
|
+
--click-genericMenu-autocomplete-typography-search-term-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3004
|
+
--click-genericMenu-autocomplete-search-stroke-default: 2px solid #323232;
|
|
3005
|
+
--click-genericMenu-autocomplete-color-placeholder-default: #808080;
|
|
3006
|
+
--click-genericMenu-autocomplete-color-searchTerm-default: #ffffff;
|
|
3007
|
+
--click-genericMenu-autocomplete-color-background-default: #282828;
|
|
3008
|
+
--click-genericMenu-autocomplete-color-stroke-default: #323232;
|
|
3009
|
+
--click-genericMenu-sectionHeader-space-bottom: 0.3438rem;
|
|
3010
|
+
--click-genericMenu-sectionHeader-space-top: 0.5rem;
|
|
3011
|
+
--click-genericMenu-placeholder-space-gap: 0.5rem;
|
|
3012
|
+
--click-grid-header-cell-space-y: 0.4375rem;
|
|
3013
|
+
--click-grid-header-cell-space-x: 0.5rem;
|
|
3014
|
+
--click-grid-header-cell-size-height: 2rem;
|
|
3015
|
+
--click-grid-header-cell-color-background-default: #282828;
|
|
3016
|
+
--click-grid-header-cell-color-background-selectIndirect: lch(19.47 0 none);
|
|
3017
|
+
--click-grid-header-cell-color-background-selectDirect: lch(27.259 0 none);
|
|
3018
|
+
--click-grid-header-cell-color-title-default: #b3b6bd;
|
|
3019
|
+
--click-grid-header-cell-color-title-selectIndirect: #ffffff;
|
|
3020
|
+
--click-grid-header-cell-color-title-selectDirect: #ffffff;
|
|
3021
|
+
--click-grid-header-cell-color-stroke-default: lch(20.268 0 none);
|
|
3022
|
+
--click-grid-header-cell-color-stroke-selectIndirect: lch(26.846 0 none);
|
|
3023
|
+
--click-grid-header-cell-color-stroke-selectDirect: lch(29.406 0 none);
|
|
3024
|
+
--click-grid-header-title-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3025
|
+
--click-grid-body-cell-space-y: 5.5px;
|
|
3026
|
+
--click-grid-body-cell-space-x: 0.5rem;
|
|
3027
|
+
--click-grid-body-cell-size-height: 2rem;
|
|
3028
|
+
--click-grid-body-cell-color-background-default: #1f1f1c;
|
|
3029
|
+
--click-grid-body-cell-color-background-selectIndirect: lch(15.792 0 none);
|
|
3030
|
+
--click-grid-body-cell-color-background-selectDirect: lch(15.792 0 none);
|
|
3031
|
+
--click-grid-body-cell-color-stroke-default: #323232;
|
|
3032
|
+
--click-grid-body-cell-color-stroke-selectIndirect: lch(22.028 0 none);
|
|
3033
|
+
--click-grid-body-cell-color-stroke-selectDirect: #faff69;
|
|
3034
|
+
--click-grid-body-cell-color-text-default: lch(100 0 none);
|
|
3035
|
+
--click-grid-body-cell-color-text-selectIndirect: #ffffff;
|
|
3036
|
+
--click-grid-body-cell-color-text-selectDirect: #ffffff;
|
|
3037
|
+
--click-grid-cell-text-default: 500 0.875rem/1.5 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
3038
|
+
--click-grid-radii-none: 0;
|
|
3039
|
+
--click-grid-radii-sm: 0.25rem;
|
|
3040
|
+
--click-grid-radii-md: 0.5rem;
|
|
3041
|
+
--click-grid-radii-lg: 0.75rem;
|
|
3042
|
+
--click-grid-global-color-stroke-default: #323232;
|
|
3043
|
+
--click-grid-global-color-background-default: #1f1f1c;
|
|
3044
|
+
--click-gridContainer-gap-none: 0;
|
|
3045
|
+
--click-gridContainer-gap-xxs: 0.25rem;
|
|
3046
|
+
--click-gridContainer-gap-xs: 0.5rem;
|
|
3047
|
+
--click-gridContainer-gap-sm: 0.75rem;
|
|
3048
|
+
--click-gridContainer-gap-md: 1rem;
|
|
3049
|
+
--click-gridContainer-gap-lg: 1.5rem;
|
|
3050
|
+
--click-gridContainer-gap-xl: 2rem;
|
|
3051
|
+
--click-gridContainer-gap-xxl: 4rem;
|
|
3052
|
+
--click-gridContainer-gap-unset: '';
|
|
3053
|
+
--click-icon-space-xs-all: 0.25rem;
|
|
3054
|
+
--click-icon-space-sm-all: 0.25rem;
|
|
3055
|
+
--click-icon-space-md-all: 0.365rem;
|
|
3056
|
+
--click-icon-space-lg-all: 0.5rem;
|
|
3057
|
+
--click-icon-space-xl-all: 0.75rem;
|
|
3058
|
+
--click-icon-space-xxl-all: 1rem;
|
|
3059
|
+
--click-icon-color-background-default: rgba(0, 0, 0, 0);
|
|
3060
|
+
--click-icon-color-background-success: rgb(20% 100% 26.667% / 0.2);
|
|
3061
|
+
--click-icon-color-background-neutral: rgb(62.745% 62.745% 62.745% / 0.2);
|
|
3062
|
+
--click-icon-color-background-danger: rgb(100% 13.725% 13.725% / 0.2);
|
|
3063
|
+
--click-icon-color-background-info: rgb(26.275% 49.412% 93.725% / 0.2);
|
|
3064
|
+
--click-icon-color-background-warning: rgb(100% 46.667% 16.078% / 0.2);
|
|
3065
|
+
--click-icon-color-text-default: rgba(0, 0, 0, 0);
|
|
3066
|
+
--click-icon-color-text-success: #ccffd0;
|
|
3067
|
+
--click-icon-color-text-neutral: #c0c0c0;
|
|
3068
|
+
--click-icon-color-text-danger: #ffbaba;
|
|
3069
|
+
--click-icon-color-text-info: #d0dffb;
|
|
3070
|
+
--click-icon-color-text-warning: #ffb88f;
|
|
3071
|
+
--click-icon-color-stroke-default: rgba(0, 0, 0, 0);
|
|
3072
|
+
--click-icon-color-stroke-success: rgb(20% 100% 26.667% / 0.05);
|
|
3073
|
+
--click-icon-color-stroke-neutral: rgb(62.745% 62.745% 62.745% / 0.2);
|
|
3074
|
+
--click-icon-color-stroke-danger: rgb(100% 13.725% 13.725% / 0.05);
|
|
3075
|
+
--click-icon-color-stroke-info: rgb(26.275% 49.412% 93.725% / 0.05);
|
|
3076
|
+
--click-icon-color-stroke-warning: rgb(100% 46.667% 16.078% / 0.05);
|
|
3077
|
+
--click-image-sm-size-height: 1rem;
|
|
3078
|
+
--click-image-sm-size-width: 1rem;
|
|
3079
|
+
--click-image-xs-size-height: 0.75rem;
|
|
3080
|
+
--click-image-xs-size-width: 0.75rem;
|
|
3081
|
+
--click-image-md-size-height: 1.25rem;
|
|
3082
|
+
--click-image-md-size-width: 1.25rem;
|
|
3083
|
+
--click-image-lg-size-height: 1.5rem;
|
|
3084
|
+
--click-image-lg-size-width: 1.5rem;
|
|
3085
|
+
--click-image-xl-size-height: 2rem;
|
|
3086
|
+
--click-image-xl-size-width: 2rem;
|
|
3087
|
+
--click-image-xxl-size-height: 4rem;
|
|
3088
|
+
--click-image-xxl-size-width: 4rem;
|
|
3089
|
+
--click-image-borderWidth-default: 1.5px;
|
|
3090
|
+
--click-image-borderWidth-thin: 1px;
|
|
3091
|
+
--click-image-color-stroke: #ffffff;
|
|
3092
|
+
--click-link-space-md-gap: 0.25rem;
|
|
3093
|
+
--click-link-space-sm-gap: 2px;
|
|
3094
|
+
--click-link-icon-size-sm-height: 0.75rem;
|
|
3095
|
+
--click-link-icon-size-sm-width: 0.75rem;
|
|
3096
|
+
--click-link-icon-size-md-height: 1rem;
|
|
3097
|
+
--click-link-icon-size-md-width: 1rem;
|
|
3098
|
+
--click-panel-strokeWidth-default: 1px;
|
|
3099
|
+
--click-panel-radii-none: 0;
|
|
3100
|
+
--click-panel-radii-sm: 0.25rem;
|
|
3101
|
+
--click-panel-radii-md: 0.5rem;
|
|
3102
|
+
--click-panel-radii-lg: 0.75rem;
|
|
3103
|
+
--click-panel-stroke-default: 1px solid #323232;
|
|
3104
|
+
--click-panel-shadow-default: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
3105
|
+
--click-panel-space-y-none: 0;
|
|
3106
|
+
--click-panel-space-y-xs: 0.5rem;
|
|
3107
|
+
--click-panel-space-y-sm: 0.75rem;
|
|
3108
|
+
--click-panel-space-y-md: 1rem;
|
|
3109
|
+
--click-panel-space-y-lg: 1.5rem;
|
|
3110
|
+
--click-panel-space-y-xl: 2rem;
|
|
3111
|
+
--click-panel-space-x-none: 0;
|
|
3112
|
+
--click-panel-space-x-xs: 0.5rem;
|
|
3113
|
+
--click-panel-space-x-sm: 0.75rem;
|
|
3114
|
+
--click-panel-space-x-md: 1rem;
|
|
3115
|
+
--click-panel-space-x-lg: 1.5rem;
|
|
3116
|
+
--click-panel-space-x-xl: 2rem;
|
|
3117
|
+
--click-panel-space-gap-none: 0;
|
|
3118
|
+
--click-panel-space-gap-xs: 0.5rem;
|
|
3119
|
+
--click-panel-space-gap-sm: 0.75rem;
|
|
3120
|
+
--click-panel-space-gap-md: 1rem;
|
|
3121
|
+
--click-panel-space-gap-lg: 1.5rem;
|
|
3122
|
+
--click-panel-space-gap-xl: 2rem;
|
|
3123
|
+
--click-panel-color-background-default: #1f1f1c;
|
|
3124
|
+
--click-panel-color-background-muted: #282828;
|
|
3125
|
+
--click-panel-color-background-transparent: rgba(0, 0, 0, 0);
|
|
3126
|
+
--click-panel-color-stroke-default: #323232;
|
|
3127
|
+
--click-popover-space-y: 1rem;
|
|
3128
|
+
--click-popover-space-x: 1.5rem;
|
|
3129
|
+
--click-popover-space-gap: 0.75rem;
|
|
3130
|
+
--click-popover-radii-all: 0.25rem;
|
|
3131
|
+
--click-popover-shadow-default: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
3132
|
+
--click-popover-icon-size-height: 1.25rem;
|
|
3133
|
+
--click-popover-icon-size-width: 1.25rem;
|
|
3134
|
+
--click-popover-color-panel-background-default: #282828;
|
|
3135
|
+
--click-popover-color-panel-stroke-default: #414141;
|
|
3136
|
+
--click-radio-radii-all: 9999px;
|
|
3137
|
+
--click-radio-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3138
|
+
--click-radio-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3139
|
+
--click-radio-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3140
|
+
--click-radio-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3141
|
+
--click-radio-color-background-default: rgb(17.794% 17.794% 17.794%);
|
|
3142
|
+
--click-radio-color-background-hover: rgb(17.794% 17.794% 17.794%);
|
|
3143
|
+
--click-radio-color-background-active: #faff69;
|
|
3144
|
+
--click-radio-color-background-disabled: #414141;
|
|
3145
|
+
--click-radio-color-stroke-default: #414141;
|
|
3146
|
+
--click-radio-color-stroke-hover: #414141;
|
|
3147
|
+
--click-radio-color-stroke-active: #151515;
|
|
3148
|
+
--click-radio-color-stroke-disabled: #414141;
|
|
3149
|
+
--click-radio-color-indicator-default: #1f1f1c;
|
|
3150
|
+
--click-radio-color-indicator-hover: rgb(17.794% 17.794% 17.794%);
|
|
3151
|
+
--click-radio-color-indicator-active: #151515;
|
|
3152
|
+
--click-radio-color-indicator-disabled: #808080;
|
|
3153
|
+
--click-separator-horizontal-space-y-xs: 0;
|
|
3154
|
+
--click-separator-horizontal-space-y-sm: 0.25rem;
|
|
3155
|
+
--click-separator-horizontal-space-y-md: 0.5rem;
|
|
3156
|
+
--click-separator-horizontal-space-y-ml: 0.75rem;
|
|
3157
|
+
--click-separator-horizontal-space-y-lg: 1rem;
|
|
3158
|
+
--click-separator-horizontal-space-y-xl: 1.5rem;
|
|
3159
|
+
--click-separator-horizontal-space-y-xxl: 2rem;
|
|
3160
|
+
--click-separator-horizontal-space-x-all: 0;
|
|
3161
|
+
--click-separator-vertical-space-x-xs: 0;
|
|
3162
|
+
--click-separator-vertical-space-x-sm: 0.25rem;
|
|
3163
|
+
--click-separator-vertical-space-x-md: 0.5rem;
|
|
3164
|
+
--click-separator-vertical-space-x-lg: 1rem;
|
|
3165
|
+
--click-separator-vertical-space-x-xl: 1.5rem;
|
|
3166
|
+
--click-separator-vertical-space-x-xxl: 2rem;
|
|
3167
|
+
--click-separator-vertical-space-y-all: 0;
|
|
3168
|
+
--click-separator-color-stroke-default: #323232;
|
|
3169
|
+
--click-sidebar-navigation-item-radii-all: 0.25rem;
|
|
3170
|
+
--click-sidebar-navigation-item-default-space-right: 0.75rem;
|
|
3171
|
+
--click-sidebar-navigation-item-default-space-y: 0.2813rem;
|
|
3172
|
+
--click-sidebar-navigation-item-default-space-gap: 0.75rem;
|
|
3173
|
+
--click-sidebar-navigation-item-default-space-left: 0;
|
|
3174
|
+
--click-sidebar-navigation-item-typography-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3175
|
+
--click-sidebar-navigation-item-typography-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3176
|
+
--click-sidebar-navigation-item-typography-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3177
|
+
--click-sidebar-navigation-item-typography-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3178
|
+
--click-sidebar-navigation-item-mobile-typography-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3179
|
+
--click-sidebar-navigation-item-mobile-typography-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3180
|
+
--click-sidebar-navigation-item-mobile-typography-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3181
|
+
--click-sidebar-navigation-item-mobile-space-left: 0;
|
|
3182
|
+
--click-sidebar-navigation-item-mobile-space-right: 0.75rem;
|
|
3183
|
+
--click-sidebar-navigation-item-mobile-space-y: 0.75rem;
|
|
3184
|
+
--click-sidebar-navigation-item-mobile-space-gap: 0.75rem;
|
|
3185
|
+
--click-sidebar-navigation-item-collapsible-space-left: 0;
|
|
3186
|
+
--click-sidebar-navigation-item-collapsible-space-right: 0.75rem;
|
|
3187
|
+
--click-sidebar-navigation-item-collapsible-space-y: 0.2813rem;
|
|
3188
|
+
--click-sidebar-navigation-item-collapsible-space-gap: 0.75rem;
|
|
3189
|
+
--click-sidebar-navigation-item-icon-size-height: 1rem;
|
|
3190
|
+
--click-sidebar-navigation-item-icon-size-width: 1rem;
|
|
3191
|
+
--click-sidebar-navigation-item-global-gap: 2px;
|
|
3192
|
+
--click-sidebar-navigation-title-typography-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3193
|
+
--click-sidebar-navigation-title-typography-hover: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3194
|
+
--click-sidebar-navigation-title-typography-active: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3195
|
+
--click-sidebar-navigation-title-typography-disabled: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3196
|
+
--click-sidebar-navigation-subItem-default-space-left: 2.75rem;
|
|
3197
|
+
--click-sidebar-navigation-subItem-default-space-right: 0.75rem;
|
|
3198
|
+
--click-sidebar-navigation-subItem-default-space-y: 0.2813rem;
|
|
3199
|
+
--click-sidebar-navigation-subItem-mobile-space-left: 2.75rem;
|
|
3200
|
+
--click-sidebar-navigation-subItem-mobile-space-right: 0.75rem;
|
|
3201
|
+
--click-sidebar-navigation-subItem-mobile-space-y: 0.75rem;
|
|
3202
|
+
--click-sidebar-navigation-subItem-mobile-space-gap: 0.75rem;
|
|
3203
|
+
--click-sidebar-navigation-subItem-mobile-typography-default: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3204
|
+
--click-sidebar-navigation-subItem-mobile-typography-hover: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3205
|
+
--click-sidebar-navigation-subItem-mobile-typography-active: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3206
|
+
--click-sidebar-navigation-subItem-radii-all: 0.25rem;
|
|
3207
|
+
--click-sidebar-navigation-subItem-typography-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3208
|
+
--click-sidebar-navigation-subItem-typography-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3209
|
+
--click-sidebar-navigation-subItem-typography-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3210
|
+
--click-sidebar-navigation-subItem-typography-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3211
|
+
--click-sidebar-navigation-dragControl-separator-size-height: 0.125rem;
|
|
3212
|
+
--click-sidebar-main-color-background-default: #1f1f1c;
|
|
3213
|
+
--click-sidebar-main-color-text-default: #ffffff;
|
|
3214
|
+
--click-sidebar-main-color-text-muted: #b3b6bd;
|
|
3215
|
+
--click-sidebar-main-color-stroke-default: #323232;
|
|
3216
|
+
--click-sidebar-main-navigation-item-color-background-active: lch(27.535 0 none / 0.6);
|
|
3217
|
+
--click-sidebar-main-navigation-item-color-background-hover: lch(19.05 0 none);
|
|
3218
|
+
--click-sidebar-main-navigation-item-color-background-default: rgba(0, 0, 0, 0);
|
|
3219
|
+
--click-sidebar-main-navigation-item-color-text-default: #ffffff;
|
|
3220
|
+
--click-sidebar-main-navigation-item-color-text-hover: #ffffff;
|
|
3221
|
+
--click-sidebar-main-navigation-item-color-text-active: #ffffff;
|
|
3222
|
+
--click-sidebar-main-navigation-item-color-text-muted: #b3b6bd;
|
|
3223
|
+
--click-sidebar-main-navigation-item-color-text-disabled: #808080;
|
|
3224
|
+
--click-sidebar-main-navigation-item-color-icon-default: #b3b6bd;
|
|
3225
|
+
--click-sidebar-main-navigation-item-color-icon-disabled: #808080;
|
|
3226
|
+
--click-sidebar-main-navigation-title-color-default: #b3b6bd;
|
|
3227
|
+
--click-sidebar-main-navigation-title-color-hover: #b3b6bd;
|
|
3228
|
+
--click-sidebar-main-navigation-title-color-active: #b3b6bd;
|
|
3229
|
+
--click-sidebar-main-navigation-subItem-color-text-default: #b3b6bd;
|
|
3230
|
+
--click-sidebar-main-navigation-subItem-color-text-disabled: #808080;
|
|
3231
|
+
--click-sidebar-main-navigation-subItem-color-text-hover: #ffffff;
|
|
3232
|
+
--click-sidebar-main-navigation-subItem-color-text-active: #ffffff;
|
|
3233
|
+
--click-sidebar-main-navigation-subItem-color-background-default: rgba(0, 0, 0, 0);
|
|
3234
|
+
--click-sidebar-main-navigation-subItem-color-background-disabled: rgba(0, 0, 0, 0);
|
|
3235
|
+
--click-sidebar-main-navigation-subItem-color-background-hover: lch(19.05 0 none);
|
|
3236
|
+
--click-sidebar-main-navigation-subItem-color-background-active: rgba(0, 0, 0, 0);
|
|
3237
|
+
--click-sidebar-main-navigation-subItem-color-icon-default: #b3b6bd;
|
|
3238
|
+
--click-sidebar-main-navigation-subItem-color-icon-disabled: #808080;
|
|
3239
|
+
--click-sidebar-main-navigation-dragControl-separator-color-default: #faff69;
|
|
3240
|
+
--click-sidebar-sqlSidebar-color-background-default: #282828;
|
|
3241
|
+
--click-sidebar-sqlSidebar-color-stroke-default: #323232;
|
|
3242
|
+
--click-sidebar-sqlSidebar-navigation-item-color-background-active: lch(27.535 0 none / 0.6);
|
|
3243
|
+
--click-sidebar-sqlSidebar-navigation-item-color-background-hover: lch(19.05 0 none);
|
|
3244
|
+
--click-sidebar-sqlSidebar-navigation-item-color-background-default: rgba(0, 0, 0, 0);
|
|
3245
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-default: #ffffff;
|
|
3246
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-hover: #ffffff;
|
|
3247
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-active: #ffffff;
|
|
3248
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-muted: #b3b6bd;
|
|
3249
|
+
--click-sidebar-sqlSidebar-navigation-item-color-text-disabled: #808080;
|
|
3250
|
+
--click-sidebar-sqlSidebar-navigation-item-color-icon-default: #b3b6bd;
|
|
3251
|
+
--click-sidebar-sqlSidebar-navigation-item-color-icon-disabled: #808080;
|
|
3252
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-disabled: #808080;
|
|
3253
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-default: #b3b6bd;
|
|
3254
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-hover: #ffffff;
|
|
3255
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-text-active: #ffffff;
|
|
3256
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-background-default: rgba(0, 0, 0, 0);
|
|
3257
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-background-hover: lch(19.05 0 none);
|
|
3258
|
+
--click-sidebar-sqlSidebar-navigation-subItem-color-background-active: rgba(0, 0, 0, 0);
|
|
3259
|
+
--click-sidebar-sqlSidebar-navigation-title-color-default: #b3b6bd;
|
|
3260
|
+
--click-sidebar-sqlSidebar-navigation-title-color-hover: #b3b6bd;
|
|
3261
|
+
--click-sidebar-sqlSidebar-navigation-title-color-active: #b3b6bd;
|
|
3262
|
+
--click-sidebar-sqlSidebar-navigation-dragControl-separator-color-default: #faff69;
|
|
3263
|
+
--click-spacer-horizontal-space-y-xs: 0;
|
|
3264
|
+
--click-spacer-horizontal-space-y-sm: 0.25rem;
|
|
3265
|
+
--click-spacer-horizontal-space-y-md: 0.5rem;
|
|
3266
|
+
--click-spacer-horizontal-space-y-ml: 0.75rem;
|
|
3267
|
+
--click-spacer-horizontal-space-y-lg: 1rem;
|
|
3268
|
+
--click-spacer-horizontal-space-y-xl: 1.5rem;
|
|
3269
|
+
--click-spacer-horizontal-space-y-xxl: 2rem;
|
|
3270
|
+
--click-spacer-horizontal-space-x-all: 0;
|
|
3271
|
+
--click-stepper-vertical-numbered-connector-size-width: 0.1875rem;
|
|
3272
|
+
--click-stepper-vertical-numbered-connector-stroke-default: 2px;
|
|
3273
|
+
--click-stepper-vertical-numbered-connector-color-stroke-incomplete: #606060;
|
|
3274
|
+
--click-stepper-vertical-numbered-connector-color-stroke-complete: #ffffff;
|
|
3275
|
+
--click-stepper-vertical-numbered-connector-color-stroke-active: #606060;
|
|
3276
|
+
--click-stepper-vertical-numbered-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3277
|
+
--click-stepper-vertical-numbered-step-typography-number-default: 700 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3278
|
+
--click-stepper-vertical-numbered-step-size-height: 1.5rem;
|
|
3279
|
+
--click-stepper-vertical-numbered-step-size-width: 1.5rem;
|
|
3280
|
+
--click-stepper-vertical-numbered-step-size-icon-height: 0.75rem;
|
|
3281
|
+
--click-stepper-vertical-numbered-step-size-icon-width: 0.75rem;
|
|
3282
|
+
--click-stepper-vertical-numbered-step-stroke-default: 2px;
|
|
3283
|
+
--click-stepper-vertical-numbered-step-radii-default: 9999px;
|
|
3284
|
+
--click-stepper-vertical-numbered-step-color-stroke-incomplete: #606060;
|
|
3285
|
+
--click-stepper-vertical-numbered-step-color-stroke-complete: #ffffff;
|
|
3286
|
+
--click-stepper-vertical-numbered-step-color-stroke-active: #ffffff;
|
|
3287
|
+
--click-stepper-vertical-numbered-step-color-background-incomplete: #1f1f1c;
|
|
3288
|
+
--click-stepper-vertical-numbered-step-color-background-complete: #1f1f1c;
|
|
3289
|
+
--click-stepper-vertical-numbered-step-color-background-active: #ffffff;
|
|
3290
|
+
--click-stepper-vertical-numbered-step-color-icon-incomplete: #ffffff;
|
|
3291
|
+
--click-stepper-vertical-numbered-step-color-icon-complete: #ffffff;
|
|
3292
|
+
--click-stepper-vertical-numbered-step-color-icon-active: #1f1f1c;
|
|
3293
|
+
--click-stepper-vertical-numbered-content-space-gap-x: 1rem;
|
|
3294
|
+
--click-stepper-vertical-numbered-content-space-gap-y: 0.5rem;
|
|
3295
|
+
--click-stepper-vertical-numbered-content-space-left: 2.75rem;
|
|
3296
|
+
--click-stepper-vertical-numbered-content-space-bottom-default: 2.5rem;
|
|
3297
|
+
--click-stepper-vertical-numbered-content-space-bottom-active: 1.5rem;
|
|
3298
|
+
--click-stepper-vertical-numbered-color-title-incomplete: #606060;
|
|
3299
|
+
--click-stepper-vertical-numbered-color-title-complete: #b3b6bd;
|
|
3300
|
+
--click-stepper-vertical-numbered-color-title-active: #ffffff;
|
|
3301
|
+
--click-stepper-vertical-bulleted-connector-size-width: 0.1875rem;
|
|
3302
|
+
--click-stepper-vertical-bulleted-connector-stroke-default: 2px;
|
|
3303
|
+
--click-stepper-vertical-bulleted-connector-color-stroke-incomplete: #606060;
|
|
3304
|
+
--click-stepper-vertical-bulleted-connector-color-stroke-complete: #ffffff;
|
|
3305
|
+
--click-stepper-vertical-bulleted-connector-color-stroke-active: #606060;
|
|
3306
|
+
--click-stepper-vertical-bulleted-step-size-height: 1rem;
|
|
3307
|
+
--click-stepper-vertical-bulleted-step-size-width: 1rem;
|
|
3308
|
+
--click-stepper-vertical-bulleted-step-size-icon-height: 0.75rem;
|
|
3309
|
+
--click-stepper-vertical-bulleted-step-size-icon-width: 0.75rem;
|
|
3310
|
+
--click-stepper-vertical-bulleted-step-radii-default: 9999px;
|
|
3311
|
+
--click-stepper-vertical-bulleted-step-stroke-default: 2px;
|
|
3312
|
+
--click-stepper-vertical-bulleted-step-color-stroke-incomplete: #606060;
|
|
3313
|
+
--click-stepper-vertical-bulleted-step-color-stroke-complete: #ffffff;
|
|
3314
|
+
--click-stepper-vertical-bulleted-step-color-stroke-active: #ffffff;
|
|
3315
|
+
--click-stepper-vertical-bulleted-step-color-background-incomplete: #1f1f1c;
|
|
3316
|
+
--click-stepper-vertical-bulleted-step-color-background-complete: #1f1f1c;
|
|
3317
|
+
--click-stepper-vertical-bulleted-step-color-background-active: #ffffff;
|
|
3318
|
+
--click-stepper-vertical-bulleted-step-color-icon-incomplete: #1f1f1c;
|
|
3319
|
+
--click-stepper-vertical-bulleted-step-color-icon-complete: #ffffff;
|
|
3320
|
+
--click-stepper-vertical-bulleted-step-color-icon-active: #ffffff;
|
|
3321
|
+
--click-stepper-vertical-bulleted-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3322
|
+
--click-stepper-vertical-bulleted-content-space-gap-x: 1rem;
|
|
3323
|
+
--click-stepper-vertical-bulleted-content-space-gap-y: 0.5rem;
|
|
3324
|
+
--click-stepper-vertical-bulleted-content-space-left: 2.25rem;
|
|
3325
|
+
--click-stepper-vertical-bulleted-content-space-bottom-default: 2.5rem;
|
|
3326
|
+
--click-stepper-vertical-bulleted-content-space-bottom-active: 1.5rem;
|
|
3327
|
+
--click-stepper-vertical-bulleted-color-title-incomplete: #606060;
|
|
3328
|
+
--click-stepper-vertical-bulleted-color-title-complete: #b3b6bd;
|
|
3329
|
+
--click-stepper-vertical-bulleted-color-title-active: #ffffff;
|
|
3330
|
+
--click-switch-space-gap: 0.5rem;
|
|
3331
|
+
--click-switch-radii-all: 9999px;
|
|
3332
|
+
--click-switch-size-width: 2rem;
|
|
3333
|
+
--click-switch-size-height: 1rem;
|
|
3334
|
+
--click-switch-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3335
|
+
--click-switch-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3336
|
+
--click-switch-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3337
|
+
--click-switch-typography-label-disabled: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3338
|
+
--click-switch-color-background-default: #606060;
|
|
3339
|
+
--click-switch-color-background-active: #faff69;
|
|
3340
|
+
--click-switch-color-background-disabled: #414141;
|
|
3341
|
+
--click-switch-color-stroke-default: #606060;
|
|
3342
|
+
--click-switch-color-stroke-active: #faff69;
|
|
3343
|
+
--click-switch-color-stroke-disabled: #414141;
|
|
3344
|
+
--click-switch-color-indicator-default: #151515;
|
|
3345
|
+
--click-switch-color-indicator-active: #161517;
|
|
3346
|
+
--click-switch-color-indicator-disabled: #606060;
|
|
3347
|
+
--click-table-header-title-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3348
|
+
--click-table-header-cell-space-md-y: 0.75rem;
|
|
3349
|
+
--click-table-header-cell-space-md-x: 1rem;
|
|
3350
|
+
--click-table-header-cell-space-sm-y: 0.5rem;
|
|
3351
|
+
--click-table-header-cell-space-sm-x: 1rem;
|
|
3352
|
+
--click-table-header-color-background-default: #282828;
|
|
3353
|
+
--click-table-header-color-background-hover: #282828;
|
|
3354
|
+
--click-table-header-color-background-active: rgb(17.794% 17.794% 17.794%);
|
|
3355
|
+
--click-table-header-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
3356
|
+
--click-table-header-color-icon-default: #ffffff;
|
|
3357
|
+
--click-table-header-color-checkbox-background-default: #cccfd3;
|
|
3358
|
+
--click-table-header-color-checkbox-border-default: #808691;
|
|
3359
|
+
--click-table-cell-text-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3360
|
+
--click-table-cell-label-default: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3361
|
+
--click-table-cell-stroke: 1px;
|
|
3362
|
+
--click-table-radii-all: 0.25rem;
|
|
3363
|
+
--click-table-body-cell-space-md-y: 1rem;
|
|
3364
|
+
--click-table-body-cell-space-md-x: 1rem;
|
|
3365
|
+
--click-table-body-cell-space-sm-y: 0.5rem;
|
|
3366
|
+
--click-table-body-cell-space-sm-x: 1rem;
|
|
3367
|
+
--click-table-mobile-cell-space-y: 1rem;
|
|
3368
|
+
--click-table-mobile-cell-space-x: 1rem;
|
|
3369
|
+
--click-table-mobile-cell-space-gap: 0.5rem;
|
|
3370
|
+
--click-table-row-color-background-default: #1f1f1c;
|
|
3371
|
+
--click-table-row-color-background-hover: lch(15.792 0 none);
|
|
3372
|
+
--click-table-row-color-background-active: rgb(17.535% 17.535% 17.535%);
|
|
3373
|
+
--click-table-row-color-stroke-default: #323232;
|
|
3374
|
+
--click-table-row-color-text-default: #ffffff;
|
|
3375
|
+
--click-table-row-color-text-disabled: #808080;
|
|
3376
|
+
--click-table-row-color-link-default: #faff69;
|
|
3377
|
+
--click-table-row-color-label-default: #b3b6bd;
|
|
3378
|
+
--click-table-row-color-barChart-default: #414141;
|
|
3379
|
+
--click-table-row-color-barChart-hover: #606060;
|
|
3380
|
+
--click-table-global-color-stroke-default: #323232;
|
|
3381
|
+
--click-table-global-color-background-default: #1f1f1c;
|
|
3382
|
+
--click-tabs-space-y: 0.5rem;
|
|
3383
|
+
--click-tabs-space-x: 0.75rem;
|
|
3384
|
+
--click-tabs-radii-all: 0.25rem;
|
|
3385
|
+
--click-tabs-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3386
|
+
--click-tabs-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3387
|
+
--click-tabs-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3388
|
+
--click-tabs-basic-strokeWidth-default: 1px;
|
|
3389
|
+
--click-tabs-basic-strokeWidth-hover: 1px;
|
|
3390
|
+
--click-tabs-basic-strokeWidth-active: 2px;
|
|
3391
|
+
--click-tabs-basic-strokeWidth-global: 1px;
|
|
3392
|
+
--click-tabs-basic-color-background-default: rgba(0, 0, 0, 0);
|
|
3393
|
+
--click-tabs-basic-color-background-hover: #282828;
|
|
3394
|
+
--click-tabs-basic-color-background-active: rgba(0, 0, 0, 0);
|
|
3395
|
+
--click-tabs-basic-color-text-default: #b3b6bd;
|
|
3396
|
+
--click-tabs-basic-color-text-hover: #ffffff;
|
|
3397
|
+
--click-tabs-basic-color-text-active: #ffffff;
|
|
3398
|
+
--click-tabs-basic-color-stroke-default: rgba(0, 0, 0, 0);
|
|
3399
|
+
--click-tabs-basic-color-stroke-hover: rgba(0, 0, 0, 0);
|
|
3400
|
+
--click-tabs-basic-color-stroke-active: #faff69;
|
|
3401
|
+
--click-tabs-basic-color-global-default: #323232;
|
|
3402
|
+
--click-tabs-fileTabs-icon-size-height: 1rem;
|
|
3403
|
+
--click-tabs-fileTabs-icon-size-width: 1rem;
|
|
3404
|
+
--click-tabs-fileTabs-space-y: 1.0625rem;
|
|
3405
|
+
--click-tabs-fileTabs-space-x: 1rem;
|
|
3406
|
+
--click-tabs-fileTabs-space-gap: 0.75rem;
|
|
3407
|
+
--click-tabs-fileTabs-typography-label-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3408
|
+
--click-tabs-fileTabs-typography-label-hover: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3409
|
+
--click-tabs-fileTabs-typography-label-active: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3410
|
+
--click-tabs-fileTabs-radii-all: 0;
|
|
3411
|
+
--click-tabs-fileTabs-color-background-default: #1f1f1c;
|
|
3412
|
+
--click-tabs-fileTabs-color-background-hover: #282828;
|
|
3413
|
+
--click-tabs-fileTabs-color-background-active: #282828;
|
|
3414
|
+
--click-tabs-fileTabs-color-text-default: #b3b6bd;
|
|
3415
|
+
--click-tabs-fileTabs-color-text-hover: #ffffff;
|
|
3416
|
+
--click-tabs-fileTabs-color-text-active: #ffffff;
|
|
3417
|
+
--click-tabs-fileTabs-color-stroke-default: #323232;
|
|
3418
|
+
--click-tabs-fileTabs-color-stroke-hover: #323232;
|
|
3419
|
+
--click-tabs-fileTabs-color-stroke-active: #323232;
|
|
3420
|
+
--click-tabs-fileTabs-color-closeButton-background-default: rgba(0, 0, 0, 0);
|
|
3421
|
+
--click-tabs-fileTabs-color-closeButton-background-hover: #414141;
|
|
3422
|
+
--click-toast-icon-size-height: 1rem;
|
|
3423
|
+
--click-toast-icon-size-width: 1rem;
|
|
3424
|
+
--click-toast-space-title-gap: 0.5rem;
|
|
3425
|
+
--click-toast-space-y: 0.75rem;
|
|
3426
|
+
--click-toast-space-x: 0.75rem;
|
|
3427
|
+
--click-toast-space-gap: 0.5rem;
|
|
3428
|
+
--click-toast-radii-all: 0.25rem;
|
|
3429
|
+
--click-toast-shadow: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
3430
|
+
--click-toast-typography-title-default: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3431
|
+
--click-toast-typography-description-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3432
|
+
--click-toast-size-width: 20.75rem;
|
|
3433
|
+
--click-toast-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
3434
|
+
--click-toast-color-description-default: #b3b6bd;
|
|
3435
|
+
--click-toast-color-stroke-default: #414141;
|
|
3436
|
+
--click-toast-color-icon-default: rgb(97.5% 97.5% 97.5%);
|
|
3437
|
+
--click-toast-color-icon-success: #ccffd0;
|
|
3438
|
+
--click-toast-color-icon-warning: #ffb88f;
|
|
3439
|
+
--click-toast-color-icon-danger: #ffbaba;
|
|
3440
|
+
--click-tooltip-radii-all: 0.25rem;
|
|
3441
|
+
--click-tooltip-space-x: 0.75rem;
|
|
3442
|
+
--click-tooltip-space-y: 0.5rem;
|
|
3443
|
+
--click-tooltip-typography-label-default: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3444
|
+
--click-tooltip-color-background-default: lch(16.114 0 none / 0.95);
|
|
3445
|
+
--click-tooltip-color-label-default: #ffffff;
|
|
3446
|
+
--click-dashboards-chartWidget-space-gap: 1rem;
|
|
3447
|
+
--click-dashboards-chartWidget-space-element-gap: 0.5rem;
|
|
3448
|
+
--click-dashboards-chartWidget-borderWidth-default: 1px;
|
|
3449
|
+
--click-dashboards-chartWidget-stroke-default: 1px solid #323232;
|
|
3450
|
+
--click-dashboards-chartWidget-stroke-element-default: 1px solid #323232;
|
|
3451
|
+
--click-dashboards-chartWidget-stroke-hover: 1px solid #414141;
|
|
3452
|
+
--click-dashboards-chartWidget-stroke-selected: 1px solid #faff69;
|
|
3453
|
+
--click-dashboards-chartWidget-element-radii-all: 0.25rem;
|
|
3454
|
+
--click-dashboards-chartWidget-radii-all: 0.25rem;
|
|
3455
|
+
--click-dashboards-chartWidget-typography-title-default: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3456
|
+
--click-dashboards-chartWidget-typography-description-default-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3457
|
+
--click-dashboards-chartWidget-typography-label-default-default: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3458
|
+
--click-dashboards-chartWidget-shadow-default: 0;
|
|
3459
|
+
--click-dashboards-chartWidget-shadow-hover: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
3460
|
+
--click-dashboards-chartWidget-size-icon-all-drag: 1.25rem;
|
|
3461
|
+
--click-dashboards-chartWidget-size-icon-all-menu: 1.5rem;
|
|
3462
|
+
--click-dashboards-chartWidget-size-icon-all-resize: 0.75rem;
|
|
3463
|
+
--click-dashboards-chartWidget-color-stroke-default: #323232;
|
|
3464
|
+
--click-dashboards-chartWidget-color-stroke-hover: #414141;
|
|
3465
|
+
--click-dashboards-chartWidget-color-stroke-selected: #faff69;
|
|
3466
|
+
--click-dashboards-chartWidget-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
3467
|
+
--click-dashboards-chartWidget-color-description-default: #b3b6bd;
|
|
3468
|
+
--click-dashboards-chartWidget-color-legend-default: #b3b6bd;
|
|
3469
|
+
--click-dashboards-chartWidget-color-legend-hover: #b3b6bd;
|
|
3470
|
+
--click-dashboards-chartWidget-color-legend-selected: #ffffff;
|
|
3471
|
+
--click-dashboards-chartWidget-color-element-stroke-default: #323232;
|
|
3472
|
+
--click-dashboards-chartWidget-color-background-default: #282828;
|
|
3473
|
+
--click-dashboards-chartWidget-color-background-hover: #282828;
|
|
3474
|
+
--click-dashboards-chartWidget-color-background-selected: #282828;
|
|
3475
|
+
--click-dashboards-chartWidget-color-icon-default: #ffffff;
|
|
3476
|
+
--click-dashboards-chartWidget-color-icon-hover: #ffffff;
|
|
3477
|
+
--click-dashboards-chartWidget-color-icon-selected: #faff69;
|
|
3478
|
+
--click-dashboards-chartWidget-color-opacity-bar-default: 0.2;
|
|
3479
|
+
--click-dashboards-chartWidget-color-opacity-bar-hover: 0.5;
|
|
3480
|
+
--click-dashboards-chartWidget-color-label-default: #b3b6bd;
|
|
3481
|
+
--click-dashboards-chartWidget-color-label-hover: #b3b6bd;
|
|
3482
|
+
--click-dashboards-chartWidget-color-label-selected: #b3b6bd;
|
|
3483
|
+
--click-global-color-background-default: #1f1f1c;
|
|
3484
|
+
--click-global-color-background-muted: #282828;
|
|
3485
|
+
--click-global-color-text-default: #ffffff;
|
|
3486
|
+
--click-global-color-text-muted: #b3b6bd;
|
|
3487
|
+
--click-global-color-text-disabled: #808080;
|
|
3488
|
+
--click-global-color-text-link-default: #faff69;
|
|
3489
|
+
--click-global-color-text-link-hover: #feffc2;
|
|
3490
|
+
--click-global-color-text-danger: #ffbaba;
|
|
3491
|
+
--click-global-color-stroke-default: #323232;
|
|
3492
|
+
--click-global-color-stroke-muted: #323232;
|
|
3493
|
+
--click-global-color-stroke-intense: #414141;
|
|
3494
|
+
--click-global-color-accent-default: #faff69;
|
|
3495
|
+
--click-global-color-outline-default: #faff69;
|
|
3496
|
+
--click-global-color-shadow-default: rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
3497
|
+
--click-global-color-title-default: rgb(97.5% 97.5% 97.5%);
|
|
3498
|
+
--click-global-color-title-muted: #b3b6bd;
|
|
3499
|
+
--click-feedback-color-info-background: rgb(26.275% 49.412% 93.725% / 0.2);
|
|
3500
|
+
--click-feedback-color-info-foreground: #d0dffb;
|
|
3501
|
+
--click-feedback-color-success-background: rgb(20% 100% 26.667% / 0.2);
|
|
3502
|
+
--click-feedback-color-success-foreground: #ccffd0;
|
|
3503
|
+
--click-feedback-color-warning-background: rgb(100% 46.667% 16.078% / 0.2);
|
|
3504
|
+
--click-feedback-color-warning-foreground: #ffb88f;
|
|
3505
|
+
--click-feedback-color-danger-background: rgb(100% 13.725% 13.725% / 0.2);
|
|
3506
|
+
--click-feedback-color-danger-foreground: #ffbaba;
|
|
3507
|
+
--click-feedback-color-neutral-background: rgb(62.745% 62.745% 62.745% / 0.2);
|
|
3508
|
+
--click-feedback-color-neutral-foreground: #c0c0c0;
|
|
3509
|
+
--click-feedback-color-neutral-stroke: #323232;
|
|
3510
|
+
--click-storybook-global-background: #1b1c1d;
|
|
3511
|
+
--click-chart-bars-color-blue: #437eef;
|
|
3512
|
+
--click-chart-bars-color-orange: #ff7729;
|
|
3513
|
+
--click-chart-bars-color-green: #33ff44;
|
|
3514
|
+
--click-chart-bars-color-fuchsia: #fb64d6;
|
|
3515
|
+
--click-chart-bars-color-yellow: #eef400;
|
|
3516
|
+
--click-chart-bars-color-violet: #bb33ff;
|
|
3517
|
+
--click-chart-bars-color-babyblue: #00cbeb;
|
|
3518
|
+
--click-chart-bars-color-red: #ff2323;
|
|
3519
|
+
--click-chart-bars-color-teal: #6df8e1;
|
|
3520
|
+
--click-chart-bars-color-sunrise: #ffc300;
|
|
3521
|
+
--click-chart-bars-color-slate: #9a9ea7;
|
|
3522
|
+
--click-chart-color-default-blue: #437eef;
|
|
3523
|
+
--click-chart-color-default-orange: #ff7729;
|
|
3524
|
+
--click-chart-color-default-green: #33ff44;
|
|
3525
|
+
--click-chart-color-default-fuchsia: #fb64d6;
|
|
3526
|
+
--click-chart-color-default-yellow: #eef400;
|
|
3527
|
+
--click-chart-color-default-violet: #bb33ff;
|
|
3528
|
+
--click-chart-color-default-babyblue: #00cbeb;
|
|
3529
|
+
--click-chart-color-default-red: #ff2323;
|
|
3530
|
+
--click-chart-color-default-teal: #6df8e1;
|
|
3531
|
+
--click-chart-color-default-sunrise: #ffc300;
|
|
3532
|
+
--click-chart-color-default-slate: #9a9ea7;
|
|
3533
|
+
--click-chart-color-label-default: #ffffff;
|
|
3534
|
+
--click-chart-color-label-deselected: lch(100 0 none / 0.3);
|
|
3535
|
+
--click-serviceCard-color-background-default: rgb(17.794% 17.794% 17.794%);
|
|
3536
|
+
--click-serviceCard-color-background-hover: lch(19.053 0 none);
|
|
3537
|
+
--click-serviceCard-color-stroke-default: rgb(23.627% 23.627% 23.627%);
|
|
3538
|
+
--click-serviceCard-color-stroke-hover: rgb(27.446% 27.446% 27.446%);
|
|
3539
|
+
--click-gareth-test-main-text: #ffffff;
|
|
3540
|
+
--click-gareth-test-main-danger: #ffbaba;
|
|
3541
|
+
--transition-default: all 100ms ease-in 0ms;
|
|
3542
|
+
--transition-duration-slow: 300ms;
|
|
3543
|
+
--transition-duration-smooth: 150ms;
|
|
3544
|
+
--transition-duration-medium: 100ms;
|
|
3545
|
+
--transition-duration-fast: 50ms;
|
|
3546
|
+
--transition-delay-slow: 100ms;
|
|
3547
|
+
--transition-delay-fast: 0ms;
|
|
3548
|
+
--transition-function-ease: ease;
|
|
3549
|
+
--transition-function-ease-in: ease-in;
|
|
3550
|
+
--transition-function-ease-in-out: ease-in-out;
|
|
3551
|
+
--transition-function-linear: linear;
|
|
3552
|
+
--grid-header-cell-borderWidth-default: 1px;
|
|
3553
|
+
--grid-header-cell-borderWidth-selectIndirect: 1px;
|
|
3554
|
+
--grid-header-cell-borderWidth-selectDirect: 1px;
|
|
3555
|
+
--grid-body-cell-borderWidth-default: 1px;
|
|
3556
|
+
--grid-body-cell-borderWidth-selectIndirect: 1px;
|
|
3557
|
+
--grid-body-cell-borderWidth-selectDirect: 2px;
|
|
3558
|
+
--palette-brand-50: #ffffe8;
|
|
3559
|
+
--palette-brand-100: #feffc2;
|
|
3560
|
+
--palette-brand-200: #fdffa3;
|
|
3561
|
+
--palette-brand-300: #faff69;
|
|
3562
|
+
--palette-brand-400: #eef400;
|
|
3563
|
+
--palette-brand-500: #c7cc00;
|
|
3564
|
+
--palette-brand-600: #959900;
|
|
3565
|
+
--palette-brand-700: #686b00;
|
|
3566
|
+
--palette-brand-800: #3c4601;
|
|
3567
|
+
--palette-brand-900: #333300;
|
|
3568
|
+
--palette-brand-base: #fbff46;
|
|
3569
|
+
--palette-neutral-0: #ffffff;
|
|
3570
|
+
--palette-neutral-100: #f9f9f9;
|
|
3571
|
+
--palette-neutral-200: #dfdfdf;
|
|
3572
|
+
--palette-neutral-300: #c0c0c0;
|
|
3573
|
+
--palette-neutral-400: #a0a0a0;
|
|
3574
|
+
--palette-neutral-500: #808080;
|
|
3575
|
+
--palette-neutral-600: #606060;
|
|
3576
|
+
--palette-neutral-650: #505050;
|
|
3577
|
+
--palette-neutral-700: #414141;
|
|
3578
|
+
--palette-neutral-712: #323232;
|
|
3579
|
+
--palette-neutral-725: #282828;
|
|
3580
|
+
--palette-neutral-750: #1f1f1c;
|
|
3581
|
+
--palette-neutral-800: #1d1d1d;
|
|
3582
|
+
--palette-neutral-900: #151515;
|
|
3583
|
+
--palette-neutral-base: #212121;
|
|
3584
|
+
--palette-slate-25: #fbfcff;
|
|
3585
|
+
--palette-slate-50: #f6f7fa;
|
|
3586
|
+
--palette-slate-100: #e6e7e9;
|
|
3587
|
+
--palette-slate-200: #cccfd3;
|
|
3588
|
+
--palette-slate-300: #b3b6bd;
|
|
3589
|
+
--palette-slate-400: #9a9ea7;
|
|
3590
|
+
--palette-slate-500: #808691;
|
|
3591
|
+
--palette-slate-600: #696e79;
|
|
3592
|
+
--palette-slate-700: #53575f;
|
|
3593
|
+
--palette-slate-800: #302e32;
|
|
3594
|
+
--palette-slate-900: #161517;
|
|
3595
|
+
--palette-slate-base: #373439;
|
|
3596
|
+
--palette-slate-50a: lch(49.809 30.506 276.77 / 0.06);
|
|
3597
|
+
--palette-indigo-50: #f4f1fc;
|
|
3598
|
+
--palette-indigo-100: #e4e2e9;
|
|
3599
|
+
--palette-indigo-200: #c8c5d3;
|
|
3600
|
+
--palette-indigo-300: #ada8bd;
|
|
3601
|
+
--palette-indigo-400: #918ba7;
|
|
3602
|
+
--palette-indigo-500: #766e91;
|
|
3603
|
+
--palette-indigo-600: #5e5874;
|
|
3604
|
+
--palette-indigo-700: #474257;
|
|
3605
|
+
--palette-indigo-800: #23212c;
|
|
3606
|
+
--palette-indigo-900: #18161d;
|
|
3607
|
+
--palette-indigo-base: #2f2c3a;
|
|
3608
|
+
--palette-info-50: #e7effd;
|
|
3609
|
+
--palette-info-100: #d0dffb;
|
|
3610
|
+
--palette-info-200: #a1bef7;
|
|
3611
|
+
--palette-info-300: #6d9bf3;
|
|
3612
|
+
--palette-info-400: #437eef;
|
|
3613
|
+
--palette-info-500: #1d64ec;
|
|
3614
|
+
--palette-info-600: #104ec6;
|
|
3615
|
+
--palette-info-650: #0d3e9b;
|
|
3616
|
+
--palette-info-700: #0d3e9b;
|
|
3617
|
+
--palette-info-800: #092b6c;
|
|
3618
|
+
--palette-info-900: #061c47;
|
|
3619
|
+
--palette-info-base: #4781f0;
|
|
3620
|
+
--palette-success-50: #e5ffe8;
|
|
3621
|
+
--palette-success-100: #ccffd0;
|
|
3622
|
+
--palette-success-200: #99ffa1;
|
|
3623
|
+
--palette-success-300: #66ff73;
|
|
3624
|
+
--palette-success-400: #33ff44;
|
|
3625
|
+
--palette-success-500: #00e513;
|
|
3626
|
+
--palette-success-600: #00bd10;
|
|
3627
|
+
--palette-success-700: #008a0b;
|
|
3628
|
+
--palette-success-800: #006108;
|
|
3629
|
+
--palette-success-850: #004206;
|
|
3630
|
+
--palette-success-900: #004206;
|
|
3631
|
+
--palette-success-base: #62de85;
|
|
3632
|
+
--palette-warning-50: #ffe2d1;
|
|
3633
|
+
--palette-warning-100: #ffcbad;
|
|
3634
|
+
--palette-warning-200: #ffb88f;
|
|
3635
|
+
--palette-warning-300: #ff9457;
|
|
3636
|
+
--palette-warning-400: #ff7729;
|
|
3637
|
+
--palette-warning-500: #f55a00;
|
|
3638
|
+
--palette-warning-600: #d64f00;
|
|
3639
|
+
--palette-warning-700: #a33c00;
|
|
3640
|
+
--palette-warning-800: #7a2d00;
|
|
3641
|
+
--palette-warning-900: #471a00;
|
|
3642
|
+
--palette-warning-base: #ffa63d;
|
|
3643
|
+
--palette-danger-50: #ffdddd;
|
|
3644
|
+
--palette-danger-100: #ffbaba;
|
|
3645
|
+
--palette-danger-200: #ff9898;
|
|
3646
|
+
--palette-danger-300: #ff7575;
|
|
3647
|
+
--palette-danger-400: #ff2323;
|
|
3648
|
+
--palette-danger-500: #f10000;
|
|
3649
|
+
--palette-danger-600: #c10000;
|
|
3650
|
+
--palette-danger-700: #910000;
|
|
3651
|
+
--palette-danger-800: #610000;
|
|
3652
|
+
--palette-danger-900: #300000;
|
|
3653
|
+
--palette-danger-base: #ff5353;
|
|
3654
|
+
--palette-gradients-base: linear-gradient(229.65deg, #292924 15.78%, #0F0F0F 88.39%);
|
|
3655
|
+
--palette-gradients-yellowToblack: linear-gradient(132deg, #FAFF69 8%, #292929 30%);
|
|
3656
|
+
--palette-gradients-whiteToblack: linear-gradient(132deg, #FFFFFF 8%, #292929 30%);
|
|
3657
|
+
--palette-gradients-transparent: rgba(0, 0, 0, 0);
|
|
3658
|
+
--palette-utility-transparent: rgba(0, 0, 0, 0);
|
|
3659
|
+
--palette-teal-50: #e6fefa;
|
|
3660
|
+
--palette-teal-100: #cffcf4;
|
|
3661
|
+
--palette-teal-200: #a3faec;
|
|
3662
|
+
--palette-teal-300: #6df8e1;
|
|
3663
|
+
--palette-teal-400: #0cedc8;
|
|
3664
|
+
--palette-teal-500: #0bd0af;
|
|
3665
|
+
--palette-teal-600: #089b83;
|
|
3666
|
+
--palette-teal-700: #067462;
|
|
3667
|
+
--palette-teal-800: #045245;
|
|
3668
|
+
--palette-teal-850: #004237;
|
|
3669
|
+
--palette-teal-900: #03352d;
|
|
3670
|
+
--palette-violet-50: #f6e5ff;
|
|
3671
|
+
--palette-violet-100: #eeccff;
|
|
3672
|
+
--palette-violet-200: #dd99ff;
|
|
3673
|
+
--palette-violet-300: #cc66ff;
|
|
3674
|
+
--palette-violet-400: #bb33ff;
|
|
3675
|
+
--palette-violet-500: #aa00ff;
|
|
3676
|
+
--palette-violet-600: #8800cc;
|
|
3677
|
+
--palette-violet-700: #660099;
|
|
3678
|
+
--palette-violet-800: #440066;
|
|
3679
|
+
--palette-violet-850: #33004d;
|
|
3680
|
+
--palette-violet-900: #220033;
|
|
3681
|
+
--palette-fuchsia-50: #fbeff8;
|
|
3682
|
+
--palette-fuchsia-100: #fbc9ef;
|
|
3683
|
+
--palette-fuchsia-200: #fb97e2;
|
|
3684
|
+
--palette-fuchsia-300: #fb64d6;
|
|
3685
|
+
--palette-fuchsia-400: #fb32c9;
|
|
3686
|
+
--palette-fuchsia-500: #fb00bc;
|
|
3687
|
+
--palette-fuchsia-600: #cc0099;
|
|
3688
|
+
--palette-fuchsia-700: #990073;
|
|
3689
|
+
--palette-fuchsia-800: #66004d;
|
|
3690
|
+
--palette-fuchsia-850: #4d0039;
|
|
3691
|
+
--palette-fuchsia-900: #330026;
|
|
3692
|
+
--palette-sunrise-50: #fff3cc;
|
|
3693
|
+
--palette-sunrise-100: #ffe799;
|
|
3694
|
+
--palette-sunrise-200: #ffdb66;
|
|
3695
|
+
--palette-sunrise-300: #ffcf33;
|
|
3696
|
+
--palette-sunrise-400: #ffc300;
|
|
3697
|
+
--palette-sunrise-500: #e0ac00;
|
|
3698
|
+
--palette-sunrise-600: #b28800;
|
|
3699
|
+
--palette-sunrise-700: #8a6900;
|
|
3700
|
+
--palette-sunrise-800: #574200;
|
|
3701
|
+
--palette-sunrise-900: #332700;
|
|
3702
|
+
--palette-babyblue-50: #dbfaff;
|
|
3703
|
+
--palette-babyblue-100: #bdf6ff;
|
|
3704
|
+
--palette-babyblue-200: #8aefff;
|
|
3705
|
+
--palette-babyblue-300: #33e4ff;
|
|
3706
|
+
--palette-babyblue-400: #00cbeb;
|
|
3707
|
+
--palette-babyblue-500: #00b5d1;
|
|
3708
|
+
--palette-babyblue-600: #008599;
|
|
3709
|
+
--palette-babyblue-700: #006170;
|
|
3710
|
+
--palette-babyblue-800: #00424d;
|
|
3711
|
+
--palette-babyblue-900: #002c33;
|
|
3712
|
+
--sizes-0: 0;
|
|
3713
|
+
--sizes-1: 1px;
|
|
3714
|
+
--sizes-2: 0.25rem;
|
|
3715
|
+
--sizes-3: 0.5rem;
|
|
3716
|
+
--sizes-4: 0.75rem;
|
|
3717
|
+
--sizes-5: 1rem;
|
|
3718
|
+
--sizes-6: 1.25rem;
|
|
3719
|
+
--sizes-7: 1.5rem;
|
|
3720
|
+
--sizes-8: 1.75rem;
|
|
3721
|
+
--sizes-9: 2rem;
|
|
3722
|
+
--sizes-10: 2.5rem;
|
|
3723
|
+
--sizes-11: 4rem;
|
|
3724
|
+
--typography-font-families-regular: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3725
|
+
--typography-font-families-mono: "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
3726
|
+
--typography-font-families-display: 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3727
|
+
--typography-font-weights-1: 400;
|
|
3728
|
+
--typography-font-weights-2: 500;
|
|
3729
|
+
--typography-font-weights-3: 600;
|
|
3730
|
+
--typography-font-weights-4: 700;
|
|
3731
|
+
--typography-font-sizes-0: 0.625rem;
|
|
3732
|
+
--typography-font-sizes-1: 0.75rem;
|
|
3733
|
+
--typography-font-sizes-2: 0.875rem;
|
|
3734
|
+
--typography-font-sizes-3: 1rem;
|
|
3735
|
+
--typography-font-sizes-4: 1.125rem;
|
|
3736
|
+
--typography-font-sizes-5: 1.25rem;
|
|
3737
|
+
--typography-font-sizes-6: 2rem;
|
|
3738
|
+
--typography-font-sizes-base: 16px;
|
|
3739
|
+
--typography-font-line-height-1: 1.5;
|
|
3740
|
+
--typography-font-line-height-2: 1.6;
|
|
3741
|
+
--typography-font-line-height-3: 1.7;
|
|
3742
|
+
--typography-font-line-height-4: 1.3;
|
|
3743
|
+
--typography-styles-product-titles-xs: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3744
|
+
--typography-styles-product-titles-sm: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3745
|
+
--typography-styles-product-titles-md: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3746
|
+
--typography-styles-product-titles-lg: 700 1.125rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3747
|
+
--typography-styles-product-titles-xl: 700 1.25rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3748
|
+
--typography-styles-product-titles-2xl: 600 2rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3749
|
+
--typography-styles-product-text-normal-xs: 400 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3750
|
+
--typography-styles-product-text-normal-sm: 400 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3751
|
+
--typography-styles-product-text-normal-md: 400 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3752
|
+
--typography-styles-product-text-normal-lg: 400 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3753
|
+
--typography-styles-product-text-medium-xs: 500 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3754
|
+
--typography-styles-product-text-medium-sm: 500 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3755
|
+
--typography-styles-product-text-medium-md: 500 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3756
|
+
--typography-styles-product-text-medium-lg: 500 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3757
|
+
--typography-styles-product-text-semibold-xs: 600 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3758
|
+
--typography-styles-product-text-semibold-sm: 600 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3759
|
+
--typography-styles-product-text-semibold-md: 600 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3760
|
+
--typography-styles-product-text-semibold-lg: 600 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3761
|
+
--typography-styles-product-text-mono-xs: 500 0.625rem/1.6 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
3762
|
+
--typography-styles-product-text-mono-sm: 500 0.75rem/1.6 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
3763
|
+
--typography-styles-product-text-mono-md: 500 0.875rem/1.7 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
3764
|
+
--typography-styles-product-text-mono-lg: 500 1rem/1.6 "Inconsolata", Consolas, "SFMono Regular", monospace;
|
|
3765
|
+
--typography-styles-product-text-bold-xs: 700 0.625rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3766
|
+
--typography-styles-product-text-bold-sm: 700 0.75rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3767
|
+
--typography-styles-product-text-bold-md: 700 0.875rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3768
|
+
--typography-styles-product-text-bold-lg: 700 1rem/1.5 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3769
|
+
--typography-styles-brand-titles-xs: 600 20px/1.5 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3770
|
+
--typography-styles-brand-titles-sm: 600 24px/1.5 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3771
|
+
--typography-styles-brand-titles-md: 600 36px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3772
|
+
--typography-styles-brand-titles-lg: 600 56px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3773
|
+
--typography-styles-brand-titles-xl: 700 64px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3774
|
+
--typography-styles-brand-titles-2xl: 700 80px/1.3 'Basier Square', "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3775
|
+
--typography-styles-field-md: 400 0.875rem/1.6 "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
3776
|
+
--border-radii-0: 0;
|
|
3777
|
+
--border-radii-1: 0.25rem;
|
|
3778
|
+
--border-radii-2: 0.5rem;
|
|
3779
|
+
--border-radii-3: 0.75rem;
|
|
3780
|
+
--border-radii-full: 9999px;
|
|
3781
|
+
--border-width-1: 1px;
|
|
3782
|
+
--border-width-2: 2px;
|
|
3783
|
+
--spaces-0: 0;
|
|
3784
|
+
--spaces-1: 0.25rem;
|
|
3785
|
+
--spaces-2: 0.5rem;
|
|
3786
|
+
--spaces-3: 0.75rem;
|
|
3787
|
+
--spaces-4: 1rem;
|
|
3788
|
+
--spaces-5: 1.5rem;
|
|
3789
|
+
--spaces-6: 2rem;
|
|
3790
|
+
--spaces-7: 2.5rem;
|
|
3791
|
+
--spaces-8: 4rem;
|
|
3792
|
+
--shadow-1: 0 4px 6px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6), 0 2px 4px -1px rgb(8.2353% 8.2353% 8.2353% / 0.6);
|
|
3793
|
+
--shadow-2: 0 4px 4px 0 rgba(88, 92, 98, 0.06), inset 5px 0 10px 0 rgba(104, 105, 111, 0.1);
|
|
3794
|
+
--shadow-3: -5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
3795
|
+
--shadow-4: 5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08);
|
|
3796
|
+
--shadow-5: 0 2px 2px 0 rgba(0, 0, 0, 0.03);
|
|
3797
|
+
--breakpoint-sizes-sm: 640px;
|
|
3798
|
+
--breakpoint-sizes-md: 768px;
|
|
3799
|
+
--breakpoint-sizes-lg: 1024px;
|
|
3800
|
+
--breakpoint-sizes-xl: 1280px;
|
|
3801
|
+
--breakpoint-sizes-2xl: 1536px;
|
|
3802
|
+
--global-color-gradients-yellowToBlack: linear-gradient(132deg, #faff69 8%, #292929 30%);
|
|
3803
|
+
--global-color-gradients-whiteToBlack: linear-gradient(132deg, #ffffff 8%, #292929 30%);
|
|
3804
|
+
--global-color-background-default: #1f1f1c;
|
|
3805
|
+
--global-color-background-muted: #282828;
|
|
3806
|
+
--global-color-background-sidebar: #1f1f1c;
|
|
3807
|
+
--global-color-background-split: #282828;
|
|
3808
|
+
--global-color-background-muted_a: lch(49.809 30.506 276.77 / 0.06);
|
|
3809
|
+
--global-color-text-default: #ffffff;
|
|
3810
|
+
--global-color-text-muted: #b3b6bd;
|
|
3811
|
+
--global-color-text-disabled: #808080;
|
|
3812
|
+
--global-color-text-link-default: #faff69;
|
|
3813
|
+
--global-color-text-link-hover: #feffc2;
|
|
3814
|
+
--global-color-stroke-default: #323232;
|
|
3815
|
+
--global-color-stroke-muted: #323232;
|
|
3816
|
+
--global-color-stroke-intense: #414141;
|
|
3817
|
+
--global-color-stroke-split: #414141;
|
|
3818
|
+
--global-color-accent-default: #faff69;
|
|
3819
|
+
--global-color-outline-default: #faff69;
|
|
3820
|
+
--global-color-shadow-default: lch(6.7738 0 none / 0.6);
|
|
3821
|
+
--global-color-feedback-info-background: #0d3e9b;
|
|
3822
|
+
--global-color-feedback-info-foreground: #d0dffb;
|
|
3823
|
+
--global-color-feedback-success-background: #004206;
|
|
3824
|
+
--global-color-feedback-success-foreground: #ccffd0;
|
|
3825
|
+
--global-color-feedback-warning-background: #7a2d00;
|
|
3826
|
+
--global-color-feedback-warning-foreground: #ffb88f;
|
|
3827
|
+
--global-color-feedback-danger-background: #610000;
|
|
3828
|
+
--global-color-feedback-danger-foreground: #ffbaba;
|
|
3829
|
+
--global-color-feedback-neutral-background: #414141;
|
|
3830
|
+
--global-color-feedback-neutral-foreground: #f9f9f9;
|
|
3831
|
+
--global-color-feedback-neutral-stroke: #323232;
|
|
3832
|
+
--global-color-chart-bars-blue: #437eef;
|
|
3833
|
+
--global-color-chart-bars-orange: #ff7729;
|
|
3834
|
+
--global-color-chart-bars-green: #33ff44;
|
|
3835
|
+
--global-color-chart-bars-fuchsia: #fb64d6;
|
|
3836
|
+
--global-color-chart-bars-yellow: #eef400;
|
|
3837
|
+
--global-color-chart-bars-violet: #bb33ff;
|
|
3838
|
+
--global-color-chart-bars-babyblue: #00cbeb;
|
|
3839
|
+
--global-color-chart-bars-red: #ff2323;
|
|
3840
|
+
--global-color-chart-bars-teal: #6df8e1;
|
|
3841
|
+
--global-color-chart-bars-sunrise: #ffc300;
|
|
3842
|
+
--global-color-chart-bars-slate: #9a9ea7;
|
|
3843
|
+
--global-color-chart-default-blue: #437eef;
|
|
3844
|
+
--global-color-chart-default-orange: #ff7729;
|
|
3845
|
+
--global-color-chart-default-green: #33ff44;
|
|
3846
|
+
--global-color-chart-default-fuchsia: #fb64d6;
|
|
3847
|
+
--global-color-chart-default-yellow: #eef400;
|
|
3848
|
+
--global-color-chart-default-violet: #bb33ff;
|
|
3849
|
+
--global-color-chart-default-babyblue: #00cbeb;
|
|
3850
|
+
--global-color-chart-default-red: #ff2323;
|
|
3851
|
+
--global-color-chart-default-danger: #ff2323;
|
|
3852
|
+
--global-color-chart-default-teal: #6df8e1;
|
|
3853
|
+
--global-color-chart-default-sunrise: #ffc300;
|
|
3854
|
+
--global-color-chart-default-slate: #9a9ea7;
|
|
3855
|
+
--global-color-chart-label-default: #ffffff;
|
|
3856
|
+
--global-color-chart-label-deselected: lch(100 0 none / 0.3);
|
|
3857
|
+
--global-color-iconButton-badge-foreground: #1d1d1d;
|
|
3858
|
+
--global-color-iconButton-badge-background: #faff69;
|
|
3859
|
+
--global-color-icon-background: linear-gradient(132deg, #FAFF69 8%, #292929 30%);
|
|
3860
|
+
--name: dark;
|
|
3861
|
+
}
|