@acorex/styles 19.10.0-next.1 → 19.10.0-next.11
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/base/index.scss +15 -0
- package/{src/shared → components}/_action-item.scss +3 -3
- package/{src/shared → components}/_actionsheet.scss +7 -6
- package/{src/shared → components}/_check-box.scss +8 -14
- package/{src/shared → components}/_drop-down.scss +15 -17
- package/components/_editor-container.scss +260 -0
- package/{src/shared → components}/_general-button.scss +11 -12
- package/{src/shared → components}/_list.scss +15 -41
- package/{src/shared → components}/_radio.scss +8 -14
- package/components/_ripple.scss +13 -0
- package/{src/shared → components}/_table.scss +9 -30
- package/components/_uploader.scss +44 -0
- package/{src/shared → components}/index.scss +2 -3
- package/icons/fontawesome/index.scss +10 -11
- package/icons/huge/huge-bulk/index.scss +4 -4
- package/icons/huge/huge-duotone/index.scss +4 -4
- package/icons/huge/huge-solid-sharp/index.scss +4 -4
- package/icons/huge/huge-solid-standard/index.scss +4 -4
- package/icons/huge/huge-stroke-rounded/index.scss +4 -4
- package/icons/huge/huge-stroke-sharp/index.scss +4 -4
- package/icons/huge/huge-stroke-standard/index.scss +4 -4
- package/icons/huge/huge-twotone/index.scss +4 -4
- package/icons/material/index.scss +4 -5
- package/index.scss +5 -7
- package/mixins/_editor-looks.scss +23 -0
- package/mixins/_scroll-bar.scss +23 -0
- package/mixins/index.scss +4 -0
- package/package.json +1 -1
- package/tailwind-base.js +231 -158
- package/themes/default.scss +37 -141
- package/utils/_theme-generator.scss +230 -0
- package/utils/_utils.scss +276 -0
- package/utils/index.scss +2 -0
- package/variables/_colors.scss +7 -0
- package/variables/_looks.scss +1 -0
- package/variables/index.scss +2 -0
- package/index.css +0 -2843
- package/index.min.css +0 -1
- package/src/base/index.scss +0 -13
- package/src/mixins/_look.scss +0 -83
- package/src/mixins/index.scss +0 -3
- package/src/shared/_color-look.scss +0 -822
- package/src/shared/_editor-container.scss +0 -291
- package/src/shared/_inputs.scss +0 -16
- package/src/shared/_utils.scss +0 -85
- package/src/utility/index.scss +0 -24
- package/src/variables/_colors.scss +0 -2
- package/src/variables/_degrees.scss +0 -1
- package/src/variables/index.scss +0 -2
- package/themes/default.css +0 -1
- /package/{src/base → base}/_preflight.scss +0 -0
- /package/{src/mixins → mixins}/_media.scss +0 -0
- /package/{src/mixins → mixins}/_util.scss +0 -0
@@ -1,291 +0,0 @@
|
|
1
|
-
@use '../mixins/look';
|
2
|
-
@use '../mixins/util';
|
3
|
-
|
4
|
-
:root {
|
5
|
-
--ax-editor-font-size: 1rem;
|
6
|
-
--ax-editor-space-size: 1rem;
|
7
|
-
}
|
8
|
-
|
9
|
-
@include util.darkMode() {
|
10
|
-
.ax-editor-container {
|
11
|
-
&.ax-look-fill {
|
12
|
-
&:focus-within {
|
13
|
-
box-shadow: 0px 0px 0 2px rgba(var(--ax-color-primary-200));
|
14
|
-
}
|
15
|
-
&.ax-state-error {
|
16
|
-
background-color: rgba(var(--ax-color-danger-200));
|
17
|
-
color: rgba(var(--ax-color-danger-fore));
|
18
|
-
|
19
|
-
&:focus-within {
|
20
|
-
box-shadow: 0px 0px 0 2px rgba(var(--ax-color-danger-200));
|
21
|
-
}
|
22
|
-
.ax-input {
|
23
|
-
&::placeholder {
|
24
|
-
color: rgba(var(--ax-color-danger-200));
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
28
|
-
}
|
29
|
-
&.ax-look-flat {
|
30
|
-
&:focus-within {
|
31
|
-
border-color: rgba(var(--ax-color-primary-200));
|
32
|
-
}
|
33
|
-
&.ax-state-error {
|
34
|
-
border-color: rgba(var(--ax-color-danger-200));
|
35
|
-
|
36
|
-
.ax-input {
|
37
|
-
&::placeholder {
|
38
|
-
color: rgba(var(--ax-color-danger-200));
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
42
|
-
}
|
43
|
-
&.ax-look-solid,
|
44
|
-
&.ax-look-outline {
|
45
|
-
&:focus-within {
|
46
|
-
box-shadow: 0px 0px 0 1px rgba(var(--ax-color-primary-200));
|
47
|
-
border-color: rgba(var(--ax-color-primary-200));
|
48
|
-
}
|
49
|
-
|
50
|
-
&.ax-state-error {
|
51
|
-
border-color: rgba(var(--ax-color-danger-200));
|
52
|
-
&:focus-within {
|
53
|
-
box-shadow: 0px 0px 0 1px rgba(var(--ax-color-danger-200));
|
54
|
-
border-color: rgba(var(--ax-color-danger-200));
|
55
|
-
}
|
56
|
-
.ax-input {
|
57
|
-
&::placeholder {
|
58
|
-
color: rgba(var(--ax-color-danger-200));
|
59
|
-
}
|
60
|
-
}
|
61
|
-
}
|
62
|
-
}
|
63
|
-
}
|
64
|
-
}
|
65
|
-
|
66
|
-
.ax-editor-container {
|
67
|
-
display: flex;
|
68
|
-
height: var(--ax-size-default);
|
69
|
-
width: 100%;
|
70
|
-
align-items: center;
|
71
|
-
overflow: hidden;
|
72
|
-
font-size: 0.875rem;
|
73
|
-
line-height: 1;
|
74
|
-
color: rgba(var(--ax-color-input-surface-fore));
|
75
|
-
|
76
|
-
.ax-editor-container {
|
77
|
-
border-radius: 0 !important;
|
78
|
-
border: 0px !important;
|
79
|
-
height: 100% !important;
|
80
|
-
|
81
|
-
&:focus-within {
|
82
|
-
box-shadow: none !important;
|
83
|
-
}
|
84
|
-
&:focus {
|
85
|
-
box-shadow: 0px 0px 0 1px rgba(var(--ax-color-primary-500));
|
86
|
-
}
|
87
|
-
}
|
88
|
-
|
89
|
-
&.ax-state-disabled {
|
90
|
-
opacity: 0.5;
|
91
|
-
cursor: not-allowed;
|
92
|
-
}
|
93
|
-
|
94
|
-
&.ax-look-solid,
|
95
|
-
&.ax-look-outline {
|
96
|
-
@include look.solid-look();
|
97
|
-
}
|
98
|
-
|
99
|
-
&.ax-look-flat {
|
100
|
-
@include look.flat-look();
|
101
|
-
}
|
102
|
-
|
103
|
-
&.ax-look-outline {
|
104
|
-
@include look.outline-look();
|
105
|
-
}
|
106
|
-
|
107
|
-
&.ax-look-fill {
|
108
|
-
@include look.fill-look();
|
109
|
-
}
|
110
|
-
|
111
|
-
.ax-editor-input {
|
112
|
-
height: 100%;
|
113
|
-
flex: 1 1 0%;
|
114
|
-
|
115
|
-
.ax-input {
|
116
|
-
height: 100%;
|
117
|
-
}
|
118
|
-
}
|
119
|
-
|
120
|
-
.ax-input {
|
121
|
-
padding: 0 calc(var(--ax-editor-font-size) - 4px);
|
122
|
-
font-size: var(--ax-editor-font-size);
|
123
|
-
line-height: var(--ax-editor-font-size);
|
124
|
-
cursor: inherit;
|
125
|
-
&::placeholder {
|
126
|
-
font-size: inherit;
|
127
|
-
font-weight: 400;
|
128
|
-
color: rgb(var(--ax-color-input-surface-fore), 0.5);
|
129
|
-
}
|
130
|
-
&:focus,
|
131
|
-
&:focus-visible,
|
132
|
-
&:focus-within {
|
133
|
-
outline: none;
|
134
|
-
}
|
135
|
-
}
|
136
|
-
|
137
|
-
&.ax-xs {
|
138
|
-
.ax-input {
|
139
|
-
padding: 0 calc(var(--ax-editor-space-size) - 8px);
|
140
|
-
font-size: calc(var(--ax-editor-font-size) - 4px);
|
141
|
-
line-height: 1rem;
|
142
|
-
}
|
143
|
-
}
|
144
|
-
|
145
|
-
&.ax-sm {
|
146
|
-
.ax-input {
|
147
|
-
padding: 0 calc(var(--ax-editor-space-size) - 4px);
|
148
|
-
font-size: calc(var(--ax-editor-font-size) - 2px);
|
149
|
-
line-height: calc(var(--ax-editor-font-size) - 2px);
|
150
|
-
}
|
151
|
-
}
|
152
|
-
|
153
|
-
&.ax-md {
|
154
|
-
.ax-input {
|
155
|
-
padding: 0 calc(var(--ax-editor-space-size) - 4px);
|
156
|
-
font-size: var(--ax-editor-font-size);
|
157
|
-
line-height: var(--ax-editor-font-size);
|
158
|
-
}
|
159
|
-
}
|
160
|
-
|
161
|
-
&.ax-lg {
|
162
|
-
.ax-input {
|
163
|
-
padding: 0 var(--ax-editor-space-size);
|
164
|
-
font-size: calc(var(--ax-editor-font-size) + 2px);
|
165
|
-
line-height: calc(var(--ax-editor-font-size) + 2px);
|
166
|
-
}
|
167
|
-
}
|
168
|
-
|
169
|
-
&.ax-xl {
|
170
|
-
.ax-input {
|
171
|
-
padding: 0 var(--ax-editor-space-size);
|
172
|
-
font-size: calc(var(--ax-editor-font-size) + 4px);
|
173
|
-
line-height: calc(var(--ax-editor-font-size) + 4px);
|
174
|
-
}
|
175
|
-
}
|
176
|
-
|
177
|
-
.ax-editor-control {
|
178
|
-
display: flex;
|
179
|
-
height: 100%;
|
180
|
-
align-items: center;
|
181
|
-
justify-content: center;
|
182
|
-
padding-inline-start: 0.5rem;
|
183
|
-
font-size: 1.125rem;
|
184
|
-
line-height: 1.75rem;
|
185
|
-
color: rgba(var(--ax-color-input-surface-fore));
|
186
|
-
}
|
187
|
-
|
188
|
-
&.ax-button-icon {
|
189
|
-
padding: 0 0.5rem;
|
190
|
-
}
|
191
|
-
.ax-input,
|
192
|
-
.ax-text-area {
|
193
|
-
text-align: inherit;
|
194
|
-
font-family: inherit;
|
195
|
-
font-size: inherit;
|
196
|
-
line-height: inherit;
|
197
|
-
height: 100%;
|
198
|
-
width: 100%;
|
199
|
-
flex: 1 1 0%;
|
200
|
-
background-color: transparent;
|
201
|
-
font-weight: 400;
|
202
|
-
|
203
|
-
&:focus {
|
204
|
-
box-shadow: none;
|
205
|
-
}
|
206
|
-
}
|
207
|
-
|
208
|
-
.ax-text-area {
|
209
|
-
padding: 0.625rem;
|
210
|
-
}
|
211
|
-
& > ax-prefix {
|
212
|
-
*,
|
213
|
-
.ax-button,
|
214
|
-
ax-title {
|
215
|
-
border-end-start-radius: 0.25rem;
|
216
|
-
border-start-start-radius: 0.25rem;
|
217
|
-
}
|
218
|
-
|
219
|
-
ax-icon {
|
220
|
-
padding-left: 0.75rem;
|
221
|
-
padding-right: 0.75rem;
|
222
|
-
}
|
223
|
-
}
|
224
|
-
|
225
|
-
& > ax-suffix {
|
226
|
-
*,
|
227
|
-
.ax-button,
|
228
|
-
ax-title {
|
229
|
-
border-end-end-radius: 0.25rem;
|
230
|
-
border-start-end-radius: 0.25rem;
|
231
|
-
}
|
232
|
-
}
|
233
|
-
|
234
|
-
& > ax-prefix,
|
235
|
-
& > ax-suffix {
|
236
|
-
height: 100%;
|
237
|
-
|
238
|
-
+ .ax-input {
|
239
|
-
padding-left: 0.375rem !important;
|
240
|
-
padding-right: 0.375rem !important;
|
241
|
-
}
|
242
|
-
* {
|
243
|
-
display: flex;
|
244
|
-
height: 100%;
|
245
|
-
align-items: center;
|
246
|
-
justify-content: center;
|
247
|
-
border-radius: 0px;
|
248
|
-
}
|
249
|
-
|
250
|
-
ax-title {
|
251
|
-
// @apply ax-px-4;
|
252
|
-
padding-left: 1rem;
|
253
|
-
padding-right: 1rem;
|
254
|
-
}
|
255
|
-
|
256
|
-
& > ax-text {
|
257
|
-
display: flex;
|
258
|
-
align-items: center;
|
259
|
-
justify-content: center;
|
260
|
-
background-color: transparent;
|
261
|
-
padding-left: 0.5rem;
|
262
|
-
padding-right: 0.5rem;
|
263
|
-
font-size: 0.875rem;
|
264
|
-
line-height: 1.25rem;
|
265
|
-
}
|
266
|
-
}
|
267
|
-
|
268
|
-
.ax-button {
|
269
|
-
height: 100% !important;
|
270
|
-
border-radius: 0px !important;
|
271
|
-
|
272
|
-
&.ax-button-icon {
|
273
|
-
height: 100%;
|
274
|
-
width: var(--ax-size-default);
|
275
|
-
}
|
276
|
-
}
|
277
|
-
}
|
278
|
-
|
279
|
-
.ax-ripple {
|
280
|
-
transform: scale(0);
|
281
|
-
animation: ripple 500ms linear;
|
282
|
-
position: absolute;
|
283
|
-
border-radius: 9999rem !important;
|
284
|
-
|
285
|
-
@keyframes ripple {
|
286
|
-
to {
|
287
|
-
transform: scale(4);
|
288
|
-
opacity: 0;
|
289
|
-
}
|
290
|
-
}
|
291
|
-
}
|
package/src/shared/_inputs.scss
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
.ax-input {
|
2
|
-
// @apply ax-p-0 ax-outline-0;
|
3
|
-
font-size: inherit;
|
4
|
-
padding: 0px;
|
5
|
-
outline-width: 0px;
|
6
|
-
|
7
|
-
&:focus {
|
8
|
-
// @apply ax-outline-transparent;
|
9
|
-
outline-color: transparent;
|
10
|
-
}
|
11
|
-
// &.ax-state-disabled {
|
12
|
-
// // @apply ax-cursor-not-allowed ax-opacity-50;
|
13
|
-
// cursor: not-allowed;
|
14
|
-
// opacity: 0.5;
|
15
|
-
// }
|
16
|
-
}
|
package/src/shared/_utils.scss
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
@use '../variables/index.scss';
|
2
|
-
@use '../mixins/util';
|
3
|
-
|
4
|
-
[class*=' ax-icon-'],
|
5
|
-
[class^='ax-icon-'] {
|
6
|
-
vertical-align: middle;
|
7
|
-
}
|
8
|
-
|
9
|
-
.ax-bold {
|
10
|
-
font-weight: bold !important;
|
11
|
-
}
|
12
|
-
|
13
|
-
.ax-fieldset {
|
14
|
-
// @apply ax-rounded-default ax-border ax-border-default ax-p-3;
|
15
|
-
border-radius: var(--ax-rounded-border-default);
|
16
|
-
border-width: 1px;
|
17
|
-
border-color: rgba(var(--ax-color-input-border));
|
18
|
-
padding: 0.75rem /* 12px */;
|
19
|
-
|
20
|
-
legend {
|
21
|
-
// @apply ax-px-1 ax-text-sm;
|
22
|
-
padding-left: 0.25rem /* 4px */;
|
23
|
-
padding-right: 0.25rem /* 4px */;
|
24
|
-
font-size: 0.875rem /* 14px */;
|
25
|
-
line-height: 1.25rem /* 20px */;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
|
29
|
-
.ax-card {
|
30
|
-
// @apply ax-rounded-default ax-border ax-border-default ax-bg-surface;
|
31
|
-
border-radius: var(--ax-rounded-border-default);
|
32
|
-
border-width: 1px;
|
33
|
-
border-color: rgba(var(--ax-color-input-border));
|
34
|
-
background-color: rgba(var(--ax-color-surface));
|
35
|
-
}
|
36
|
-
|
37
|
-
.ax-drop-zone {
|
38
|
-
> input {
|
39
|
-
// @apply ax-absolute ax-h-full ax-w-full ax-cursor-pointer ax-opacity-0;
|
40
|
-
position: absolute;
|
41
|
-
height: 100%;
|
42
|
-
width: 100%;
|
43
|
-
cursor: pointer;
|
44
|
-
opacity: 0;
|
45
|
-
}
|
46
|
-
}
|
47
|
-
.ax-uploader-overlay-state {
|
48
|
-
// @apply ax-pointer-events-none ax-absolute ax-start-0 ax-top-0 ax-z-10 ax-flex ax-h-full ax-w-full ax-cursor-pointer ax-flex-col ax-items-center ax-justify-center ax-gap-2 ax-bg-primary-200/75 ax-text-sm ax-text-primary-fore-tint ax-outline-dashed ax-outline-2 -ax-outline-offset-4 ax-transition-all;
|
49
|
-
border-radius: inherit;
|
50
|
-
pointer-events: none;
|
51
|
-
position: absolute;
|
52
|
-
inset-inline-start: 0px;
|
53
|
-
top: 0px;
|
54
|
-
z-index: 10;
|
55
|
-
display: flex;
|
56
|
-
height: 100%;
|
57
|
-
width: 100%;
|
58
|
-
cursor: pointer;
|
59
|
-
flex-direction: column;
|
60
|
-
align-items: center;
|
61
|
-
justify-content: center;
|
62
|
-
gap: 0.5rem /* 8px */;
|
63
|
-
background-color: rgba(var(--ax-color-primary-200), 0.75);
|
64
|
-
font-size: 0.875rem /* 14px */;
|
65
|
-
line-height: 1.25rem /* 20px */;
|
66
|
-
color: rgba(var(--ax-color-primary-fore-tint));
|
67
|
-
outline-style: dashed;
|
68
|
-
outline-offset: -4px;
|
69
|
-
transition-property: all;
|
70
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
71
|
-
transition-duration: 150ms;
|
72
|
-
}
|
73
|
-
|
74
|
-
.ax-select-none,
|
75
|
-
.ax-select-none * {
|
76
|
-
user-select: none !important;
|
77
|
-
}
|
78
|
-
@include util.darkMode() {
|
79
|
-
.ax-uploader-overlay-state {
|
80
|
-
// @apply ax-bg-primary-800/75 ax-text-primary-fore ax-outline-primary-fore;
|
81
|
-
background-color: rgba(var(--ax-color-primary-800), 0.75);
|
82
|
-
color: rgba(var(--ax-color-primary-fore));
|
83
|
-
outline-color: rgba(var(--ax-color-primary-fore));
|
84
|
-
}
|
85
|
-
}
|
package/src/utility/index.scss
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
.ax-xs {
|
2
|
-
--ax-size-default: calc(var(--ax-size-base) - 0.75rem);
|
3
|
-
}
|
4
|
-
|
5
|
-
.ax-sm {
|
6
|
-
--ax-size-default: calc(var(--ax-size-base) - 0.5rem);
|
7
|
-
}
|
8
|
-
|
9
|
-
.ax-md {
|
10
|
-
--ax-size-default: var(--ax-size-base);
|
11
|
-
}
|
12
|
-
|
13
|
-
.ax-lg {
|
14
|
-
--ax-size-default: calc(var(--ax-size-base) + 0.5rem);
|
15
|
-
}
|
16
|
-
|
17
|
-
.ax-xl {
|
18
|
-
--ax-size-default: calc(var(--ax-size-base) + 1rem);
|
19
|
-
}
|
20
|
-
|
21
|
-
.ax-placeholder {
|
22
|
-
color: rgba(var(--ax-color-input-surface-fore), 0.5);
|
23
|
-
font-weight: 500;
|
24
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
$degrees: 45, 90, 130, 180;
|
package/src/variables/index.scss
DELETED
package/themes/default.css
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
:root,.ax-light{--ax-size-base: 2.5rem;--ax-size-default: var(--ax-size-base);--ax-icon-weight: 400;--ax-icon-size: 100%;--ax-rounded-border-default: 0.5rem;--ax-color-border-default: 233, 234, 235;--ax-color-background-default: 249, 250, 251;--ax-color-text-default: 22, 22, 22;--ax-color-surface: 255, 255, 255;--ax-color-surface-fore: 22, 22, 22;--ax-color-on-surface: 250, 250, 250;--ax-color-on-surface-fore: 22, 22, 22;--ax-color-input-surface: 255, 255, 255;--ax-color-input-surface-fore: 22, 22, 22;--ax-color-input-border: 213, 215, 218;--ax-color-ghost: 255, 255, 255;--ax-color-ghost-fore: 22, 22, 22;--ax-color-primary-fore: 255, 255, 255;--ax-color-primary-fore-tint: 11, 30, 71;--ax-color-primary-50: 244, 247, 254;--ax-color-primary-100: 233, 239, 253;--ax-color-primary-200: 190, 208, 249;--ax-color-primary-300: 146, 177, 245;--ax-color-primary-400: 102, 146, 241;--ax-color-primary-500: 37, 99, 235;--ax-color-primary-600: 33, 89, 212;--ax-color-primary-700: 26, 69, 165;--ax-color-primary-800: 19, 50, 118;--ax-color-primary-900: 11, 30, 71;--ax-color-primary-950: 4, 10, 23;--ax-color-secondary-fore: 255, 255, 255;--ax-color-secondary-fore-tint: 9, 12, 18;--ax-color-secondary-50: 244, 244, 245;--ax-color-secondary-100: 233, 234, 235;--ax-color-secondary-200: 188, 191, 196;--ax-color-secondary-300: 143, 148, 157;--ax-color-secondary-400: 98, 105, 118;--ax-color-secondary-500: 30, 41, 59;--ax-color-secondary-600: 27, 37, 53;--ax-color-secondary-700: 21, 29, 41;--ax-color-secondary-800: 15, 21, 30;--ax-color-secondary-900: 9, 12, 18;--ax-color-secondary-950: 3, 4, 6;--ax-color-success-fore: 255, 255, 255;--ax-color-success-fore-tint: 6, 78, 59;--ax-color-success-50: 236, 253, 245;--ax-color-success-100: 209, 250, 229;--ax-color-success-200: 167, 243, 208;--ax-color-success-300: 110, 231, 183;--ax-color-success-400: 52, 211, 153;--ax-color-success-500: 16, 185, 129;--ax-color-success-600: 5, 150, 105;--ax-color-success-700: 4, 120, 87;--ax-color-success-800: 6, 95, 70;--ax-color-success-900: 6, 78, 59;--ax-color-success-950: 2, 44, 34;--ax-color-warning-fore: 48, 26, 10;--ax-color-warning-fore-tint: 255, 111, 0;--ax-color-warning-50: 255, 248, 225;--ax-color-warning-100: 255, 236, 179;--ax-color-warning-200: 255, 224, 130;--ax-color-warning-300: 255, 213, 79;--ax-color-warning-400: 255, 202, 40;--ax-color-warning-500: 255, 193, 7;--ax-color-warning-600: 255, 179, 0;--ax-color-warning-700: 255, 160, 0;--ax-color-warning-800: 255, 143, 0;--ax-color-warning-900: 255, 111, 0;--ax-color-warning-950: 72, 40, 15;--ax-color-danger-fore: 255, 255, 255;--ax-color-danger-fore-tint: 127, 29, 29;--ax-color-danger-50: 254, 242, 242;--ax-color-danger-100: 254, 226, 226;--ax-color-danger-200: 254, 202, 202;--ax-color-danger-300: 252, 165, 165;--ax-color-danger-400: 248, 113, 113;--ax-color-danger-500: 239, 68, 68;--ax-color-danger-600: 220, 38, 38;--ax-color-danger-700: 185, 28, 28;--ax-color-danger-800: 153, 27, 27;--ax-color-danger-900: 127, 29, 29;--ax-color-danger-950: 69, 10, 10;--ax-color-info-fore: 255, 255, 255;--ax-color-info-fore-tint: 49, 46, 129;--ax-color-info-50: 238, 242, 255;--ax-color-info-100: 224, 231, 255;--ax-color-info-200: 199, 210, 254;--ax-color-info-300: 165, 180, 252;--ax-color-info-400: 129, 140, 248;--ax-color-info-500: 99, 102, 241;--ax-color-info-600: 79, 70, 229;--ax-color-info-700: 67, 56, 202;--ax-color-info-800: 55, 48, 163;--ax-color-info-900: 49, 46, 129;--ax-color-info-950: 30, 27, 75;--ax-color-neutral-fore: 255, 255, 255;--ax-color-neutral-fore-tint: 17, 24, 39;--ax-color-neutral-50: 249, 250, 251;--ax-color-neutral-100: 243, 244, 246;--ax-color-neutral-200: 229, 231, 235;--ax-color-neutral-300: 209, 213, 219;--ax-color-neutral-400: 156, 163, 175;--ax-color-neutral-500: 107, 114, 128;--ax-color-neutral-600: 75, 85, 99;--ax-color-neutral-700: 55, 65, 81;--ax-color-neutral-800: 31, 41, 55;--ax-color-neutral-900: 17, 24, 39;--ax-color-neutral-950: 3, 7, 18}.ax-dark{--ax-color-border-default: 34, 38, 47;--ax-color-background-default: 12, 14, 18;--ax-color-text-default: 255, 255, 255;--ax-color-surface: 19, 22, 27;--ax-color-surface-fore: 255, 255, 255;--ax-color-on-surface: 34, 38, 47;--ax-color-on-surface-fore: 255, 255, 255;--ax-color-input-surface: 12, 14, 18;--ax-color-input-surface-fore: 224, 224, 224;--ax-color-input-border: 55, 58, 65;--ax-color-ghost: 77, 91, 113;--ax-color-ghost-fore: 255, 255, 255}
|
File without changes
|
File without changes
|
File without changes
|