@acorex/styles 19.10.0-next.2 → 19.10.0-next.4
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 +4 -11
- package/components/_check-box.scss +1 -1
- package/components/_drop-down.scss +2 -2
- package/components/_editor-container.scss +210 -112
- package/components/_general-button.scss +1 -1
- package/components/_radio.scss +1 -1
- package/mixins/index.scss +0 -1
- package/package.json +1 -1
- package/tailwind-base.js +25 -25
- package/themes/default.scss +23 -13
- package/utils/_theme-generator.scss +66 -27
- package/utils/_utils.scss +16 -18
- package/variables/_colors.scss +0 -1
- package/mixins/_look.scss +0 -68
package/base/index.scss
CHANGED
@@ -5,18 +5,11 @@
|
|
5
5
|
--ax-sys-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
6
6
|
}
|
7
7
|
html {
|
8
|
-
background-color: rgba(var(--ax-sys-color-surface
|
9
|
-
color: rgba(var(--ax-sys-color-on-surface
|
10
|
-
}
|
11
|
-
|
12
|
-
* {
|
13
|
-
border-color: rgba(var(--ax-sys-color-border-surface-lightest));
|
14
|
-
}
|
15
|
-
html.ax-dark * {
|
16
|
-
border-color: rgba(var(--ax-sys-color-border-surface-darkest));
|
8
|
+
background-color: rgba(var(--ax-sys-color-lightest-surface));
|
9
|
+
color: rgba(var(--ax-sys-color-on-lightest-surface));
|
17
10
|
}
|
18
11
|
|
19
12
|
html.ax-dark {
|
20
|
-
background-color: rgba(var(--ax-sys-color-surface
|
21
|
-
color: rgba(var(--ax-sys-color-on-surface
|
13
|
+
background-color: rgba(var(--ax-sys-color-darkest-surface));
|
14
|
+
color: rgba(var(--ax-sys-color-on-darkest-surface));
|
22
15
|
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
appearance: none;
|
9
9
|
border-radius: 0.25rem /* 4px */;
|
10
10
|
border-width: 1px;
|
11
|
-
border-color: rgba(var(--ax-sys-color-
|
11
|
+
border-color: rgba(var(--ax-sys-color-border-surface));
|
12
12
|
background-color: rgba(var(--ax-sys-color-input-surface));
|
13
13
|
vertical-align: middle;
|
14
14
|
outline: 2px solid transparent;
|
@@ -26,8 +26,8 @@
|
|
26
26
|
height: fit-content;
|
27
27
|
overflow: hidden;
|
28
28
|
border-width: 1px;
|
29
|
-
border-color: rgba(var(--ax-sys-color-border-surface
|
30
|
-
background-color: rgba(var(--ax-sys-color-surface
|
29
|
+
border-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
30
|
+
background-color: rgba(var(--ax-sys-color-lightest-surface));
|
31
31
|
--ax-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
32
32
|
--ax-shadow-colored: 0 4px 6px -1px var(--ax-shadow-color), 0 2px 4px -2px var(--ax-shadow-color);
|
33
33
|
box-shadow: var(--ax-ring-offset-shadow, 0 0 #0000), var(--ax-ring-shadow, 0 0 #0000), var(--ax-shadow);
|
@@ -1,110 +1,90 @@
|
|
1
|
-
@use '../mixins/look' as look;
|
2
1
|
@use '../mixins/util' as util;
|
3
2
|
|
4
|
-
:root
|
5
|
-
|
6
|
-
--ax-editor-
|
7
|
-
|
3
|
+
:root,
|
4
|
+
.ax-editor-container {
|
5
|
+
--ax-comp-editor-font-size: 1rem;
|
6
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
7
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
8
|
+
--ax-comp-editor-height: var(--ax-sys-size-base);
|
8
9
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-primary-200));
|
14
|
-
}
|
15
|
-
&.ax-state-error {
|
16
|
-
background-color: rgba(var(--ax-sys-color-danger-200));
|
17
|
-
color: rgba(var(--ax-sys-color-danger-fore));
|
18
|
-
|
19
|
-
&:focus-within {
|
20
|
-
box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-danger-200));
|
21
|
-
}
|
22
|
-
.ax-input {
|
23
|
-
&::placeholder {
|
24
|
-
color: rgba(var(--ax-sys-color-danger-200));
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
28
|
-
}
|
29
|
-
&.ax-look-flat {
|
30
|
-
&:focus-within {
|
31
|
-
border-color: rgba(var(--ax-sys-color-primary-200));
|
32
|
-
}
|
33
|
-
&.ax-state-error {
|
34
|
-
border-color: rgba(var(--ax-sys-color-danger-200));
|
35
|
-
|
36
|
-
.ax-input {
|
37
|
-
&::placeholder {
|
38
|
-
color: rgba(var(--ax-sys-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-sys-color-primary-200));
|
47
|
-
border-color: rgba(var(--ax-sys-color-primary-200));
|
48
|
-
}
|
10
|
+
--ax-comp-editor-error-bg-color: var(--ax-sys-color-danger-light-surface);
|
11
|
+
--ax-comp-editor-error-text-color: var(--ax-sys-color-danger-surface);
|
12
|
+
--ax-comp-editor-error-border-color: var(--ax-sys-color-border-danger-surface);
|
13
|
+
--ax-comp-editor-error-box-shadow-color: var(--ax-sys-color-danger-surface);
|
49
14
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
}
|
62
|
-
}
|
63
|
-
}
|
15
|
+
--ax-comp-editor-text-color: var(--ax-sys-color-on-lighter-surface);
|
16
|
+
--ax-comp-editor-border-color: var(--ax-sys-color-border-lighter-surface);
|
17
|
+
--ax-comp-editor-border-radius: var(--ax-sys-border-radius);
|
18
|
+
--ax-comp-editor-box-outline-width: 1px;
|
19
|
+
--ax-comp-editor-box-outline-color: var(--ax-sys-color-primary-surface);
|
20
|
+
--ax-comp-editor-placeholder-opacity: 0.5;
|
21
|
+
|
22
|
+
--ax-comp-editor-focused-border-color: var(--ax-sys-color-border-primary-surface);
|
23
|
+
--ax-comp-editor-focused-box-shadow-color: var(--ax-sys-color-primary-surface);
|
24
|
+
|
25
|
+
--ax-comp-editor-border-width: 0px;
|
64
26
|
}
|
65
27
|
|
66
28
|
.ax-editor-container {
|
67
29
|
display: flex;
|
68
|
-
height: var(--ax-sys-size-base);
|
69
|
-
width: 100%;
|
70
30
|
align-items: center;
|
71
31
|
overflow: hidden;
|
72
|
-
|
73
|
-
|
32
|
+
width: 100%;
|
33
|
+
height: var(--ax-comp-editor-height);
|
34
|
+
font-size: var(--ax-comp-editor-font-size);
|
35
|
+
border-radius: var(--ax-comp-editor-border-radius);
|
36
|
+
border-width: var(--ax-comp-editor-border-width);
|
37
|
+
border-color: rgba(var(--ax-comp-editor-border-color));
|
38
|
+
background-color: rgba(var(--ax-comp-editor-bg-color));
|
39
|
+
color: rgba(var(--ax-comp-editor-text-color));
|
74
40
|
|
75
|
-
|
76
|
-
border-
|
77
|
-
|
78
|
-
|
41
|
+
&:focus-within {
|
42
|
+
border-color: rgba(var(--ax-comp-editor-focused-border-color));
|
43
|
+
outline-width: var(--ax-comp-editor-box-outline-width);
|
44
|
+
outline-style: solid;
|
45
|
+
outline-color: rgba(var(--ax-comp-editor-focused-border-color));
|
46
|
+
}
|
79
47
|
|
48
|
+
&.ax-state-error {
|
49
|
+
border-color: rgba(var(--ax-comp-editor-error-border-color));
|
50
|
+
outline-width: var(--ax-comp-editor-box-outline-width);
|
51
|
+
outline-color: rgba(var(--ax-comp-editor-error-border-color));
|
52
|
+
outline-style: solid;
|
80
53
|
&:focus-within {
|
81
|
-
|
54
|
+
border-color: rgba(var(--ax-comp-editor-error-border-color));
|
82
55
|
}
|
83
|
-
|
84
|
-
|
56
|
+
.ax-input {
|
57
|
+
.ax-placeholder,
|
58
|
+
&::placeholder {
|
59
|
+
color: rgba(var(--ax-comp-editor-error-text-color), var(--ax-comp-editor-placeholder-opacity));
|
60
|
+
}
|
85
61
|
}
|
86
62
|
}
|
87
63
|
|
88
|
-
&.ax-
|
89
|
-
|
90
|
-
|
64
|
+
&.ax-solid {
|
65
|
+
--ax-comp-editor-bg-color: var(--ax-sys-color-lightest-surface);
|
66
|
+
--ax-comp-editor-border-width: 1px;
|
91
67
|
}
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
@include look.solid-look();
|
68
|
+
&.ax-outline {
|
69
|
+
--ax-comp-editor-bg-color: 0, 0, 0, 0;
|
70
|
+
--ax-comp-editor-border-width: 1px;
|
96
71
|
}
|
97
72
|
|
98
|
-
&.ax-
|
99
|
-
|
73
|
+
&.ax-flat {
|
74
|
+
--ax-comp-editor-border-width: 2px;
|
75
|
+
--ax-comp-editor-border-radius: 0px;
|
76
|
+
--ax-comp-editor-box-outline-width: 0px;
|
77
|
+
border-width: 0px !important;
|
78
|
+
border-bottom-width: var(--ax-comp-editor-border-width) !important;
|
100
79
|
}
|
101
80
|
|
102
|
-
&.ax-
|
103
|
-
|
104
|
-
|
81
|
+
&.ax-fill {
|
82
|
+
--ax-comp-editor-box-outline-width: 2px;
|
83
|
+
--ax-comp-editor-border-width: 0px;
|
105
84
|
|
106
|
-
|
107
|
-
|
85
|
+
--ax-comp-editor-bg-color: var(--ax-sys-color-lighter-surface);
|
86
|
+
--ax-comp-editor-text-color: var(--ax-sys-color-on-lighter-surface);
|
87
|
+
--ax-comp-editor-border-color: var(--ax-sys-color-border-lighter-surface);
|
108
88
|
}
|
109
89
|
|
110
90
|
.ax-editor-input {
|
@@ -116,15 +96,22 @@
|
|
116
96
|
}
|
117
97
|
}
|
118
98
|
|
99
|
+
.ax-editor,
|
119
100
|
.ax-input {
|
120
|
-
padding:
|
121
|
-
|
122
|
-
|
101
|
+
padding-inline-start: var(--ax-comp-editor-space-start-size);
|
102
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
103
|
+
}
|
104
|
+
.ax-input {
|
105
|
+
// padding: 0 calc(var(--ax-comp-editor-font-size) - 4px);
|
106
|
+
font-size: var(--ax-comp-editor-font-size);
|
107
|
+
line-height: var(--ax-comp-editor-font-size);
|
108
|
+
color: rgba(var(--ax-comp-editor-text-color));
|
123
109
|
cursor: inherit;
|
110
|
+
.ax-placeholder,
|
124
111
|
&::placeholder {
|
125
112
|
font-size: inherit;
|
126
113
|
font-weight: 400;
|
127
|
-
color: rgb(var(--ax-
|
114
|
+
color: rgb(var(--ax-comp-editor-text-color), var(--ax-comp-editor-placeholder-opacity));
|
128
115
|
}
|
129
116
|
&:focus,
|
130
117
|
&:focus-visible,
|
@@ -133,6 +120,24 @@
|
|
133
120
|
}
|
134
121
|
}
|
135
122
|
|
123
|
+
.ax-editor-container {
|
124
|
+
border-radius: 0 !important;
|
125
|
+
border: 0px !important;
|
126
|
+
// height: 100% !important;
|
127
|
+
|
128
|
+
&:focus-within {
|
129
|
+
box-shadow: none !important;
|
130
|
+
}
|
131
|
+
&:focus {
|
132
|
+
box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
&.ax-state-disabled {
|
137
|
+
opacity: 0.5;
|
138
|
+
cursor: not-allowed;
|
139
|
+
}
|
140
|
+
|
136
141
|
.ax-editor-control {
|
137
142
|
display: flex;
|
138
143
|
height: 100%;
|
@@ -141,12 +146,13 @@
|
|
141
146
|
padding-inline-start: 0.5rem;
|
142
147
|
font-size: 1.125rem;
|
143
148
|
line-height: 1.75rem;
|
144
|
-
color: rgba(var(--ax-
|
149
|
+
color: rgba(var(--ax-comp-editor-text-color));
|
145
150
|
}
|
146
151
|
|
147
152
|
&.ax-button-icon {
|
148
153
|
padding: 0 0.5rem;
|
149
154
|
}
|
155
|
+
|
150
156
|
.ax-input,
|
151
157
|
.ax-text-area {
|
152
158
|
text-align: inherit;
|
@@ -157,36 +163,36 @@
|
|
157
163
|
width: 100%;
|
158
164
|
flex: 1 1 0%;
|
159
165
|
background-color: transparent;
|
160
|
-
font-weight:
|
166
|
+
font-weight: inherit;
|
161
167
|
|
162
168
|
&:focus {
|
163
169
|
box-shadow: none;
|
164
170
|
}
|
165
171
|
}
|
166
172
|
|
167
|
-
|
168
|
-
|
173
|
+
> ax-suffix,
|
174
|
+
.ax-editor-button,
|
175
|
+
.ax-clear-button {
|
176
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
169
177
|
}
|
170
|
-
& > ax-prefix {
|
171
|
-
*,
|
172
|
-
.ax-button,
|
173
|
-
ax-title {
|
174
|
-
border-end-start-radius: 0.25rem;
|
175
|
-
border-start-start-radius: 0.25rem;
|
176
|
-
}
|
177
178
|
|
179
|
+
> ax-suffix,
|
180
|
+
.ax-editor-button,
|
181
|
+
.ax-clear-button {
|
182
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
183
|
+
}
|
184
|
+
& > ax-prefix,
|
185
|
+
& > ax-suffix {
|
186
|
+
max-width: fit-content;
|
187
|
+
}
|
188
|
+
& > ax-prefix {
|
178
189
|
ax-icon {
|
179
|
-
padding-
|
180
|
-
padding-right: 0.75rem;
|
190
|
+
padding-inline-start: var(--ax-comp-editor-space-end-size);
|
181
191
|
}
|
182
192
|
}
|
183
|
-
|
184
193
|
& > ax-suffix {
|
185
|
-
|
186
|
-
|
187
|
-
ax-title {
|
188
|
-
border-end-end-radius: 0.25rem;
|
189
|
-
border-start-end-radius: 0.25rem;
|
194
|
+
ax-icon {
|
195
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
190
196
|
}
|
191
197
|
}
|
192
198
|
|
@@ -194,10 +200,10 @@
|
|
194
200
|
& > ax-suffix {
|
195
201
|
height: 100%;
|
196
202
|
|
197
|
-
+ .ax-input {
|
198
|
-
|
199
|
-
|
200
|
-
}
|
203
|
+
// + .ax-input {
|
204
|
+
// padding-left: 0.375rem !important;
|
205
|
+
// padding-right: 0.375rem !important;
|
206
|
+
// }
|
201
207
|
* {
|
202
208
|
display: flex;
|
203
209
|
height: 100%;
|
@@ -229,7 +235,99 @@
|
|
229
235
|
|
230
236
|
&.ax-button-icon {
|
231
237
|
height: 100%;
|
232
|
-
width: var(--ax-
|
238
|
+
width: var(--ax-comp-editor-height);
|
233
239
|
}
|
234
240
|
}
|
235
241
|
}
|
242
|
+
|
243
|
+
.ax-xs .ax-editor-container,
|
244
|
+
.ax-editor-container.ax-xs {
|
245
|
+
--ax-comp-editor-font-size: 0.75rem;
|
246
|
+
--ax-comp-editor-space-start-size: 0.375rem;
|
247
|
+
--ax-comp-editor-space-end-size: 0.375rem;
|
248
|
+
}
|
249
|
+
.ax-sm .ax-editor-container,
|
250
|
+
.ax-editor-container.ax-sm {
|
251
|
+
--ax-comp-editor-font-size: 0.875rem;
|
252
|
+
--ax-comp-editor-space-start-size: 0.5rem;
|
253
|
+
--ax-comp-editor-space-end-size: 0.5rem;
|
254
|
+
}
|
255
|
+
|
256
|
+
.ax-md .ax-editor-container,
|
257
|
+
.ax-editor-container,
|
258
|
+
.ax-editor-container.ax-md {
|
259
|
+
--ax-comp-editor-font-size: 1rem;
|
260
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
261
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
262
|
+
}
|
263
|
+
|
264
|
+
.ax-lg .ax-editor-container,
|
265
|
+
.ax-editor-container.ax-lg {
|
266
|
+
--ax-comp-editor-font-size: 1.125rem;
|
267
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
268
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
269
|
+
}
|
270
|
+
|
271
|
+
.ax-xl .ax-editor-container,
|
272
|
+
.ax-editor-container.ax-xl {
|
273
|
+
--ax-comp-editor-font-size: 1.5rem;
|
274
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
275
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
276
|
+
}
|
277
|
+
// @include util.darkMode() {
|
278
|
+
// .ax-editor-container {
|
279
|
+
// &.ax-fill {
|
280
|
+
// &:focus-within {
|
281
|
+
// box-shadow: 0px 0px 0 2px rgba(var(--ax-comp-editor-box-shadow-color));
|
282
|
+
// }
|
283
|
+
// &.ax-state-error {
|
284
|
+
// background-color: rgba(var(--ax-comp-editor-error-bg-color));
|
285
|
+
// color: rgba(var(--ax-comp-editor-error-text-color));
|
286
|
+
|
287
|
+
// &:focus-within {
|
288
|
+
// box-shadow: 0px 0px 0 2px rgba(var(--ax-comp-editor-error-box-shadow-color));
|
289
|
+
// }
|
290
|
+
// .ax-input {
|
291
|
+
// &::placeholder {
|
292
|
+
// color: rgba(var(--ax-comp-editor-error-text-color));
|
293
|
+
// }
|
294
|
+
// }
|
295
|
+
// }
|
296
|
+
// }
|
297
|
+
// &.ax-flat {
|
298
|
+
// &:focus-within {
|
299
|
+
// border-color: rgba(var(--ax-comp-editor-box-shadow-color));
|
300
|
+
// }
|
301
|
+
// &.ax-state-error {
|
302
|
+
// border-color: rgba(var(--ax-comp-editor-error-bg-color));
|
303
|
+
|
304
|
+
// .ax-input {
|
305
|
+
// .ax-placeholder,
|
306
|
+
// &::placeholder {
|
307
|
+
// color: rgba(var(--ax-comp-editor-error-bg-color));
|
308
|
+
// }
|
309
|
+
// }
|
310
|
+
// }
|
311
|
+
// }
|
312
|
+
// &.ax-solid,
|
313
|
+
// &.ax-outline {
|
314
|
+
// &:focus-within {
|
315
|
+
// box-shadow: 0px 0px 0 1px rgba(var(--ax-comp-editor-box-shadow-color));
|
316
|
+
// border-color: rgba(var(--ax-comp-editor-border-color));
|
317
|
+
// }
|
318
|
+
|
319
|
+
// &.ax-state-error {
|
320
|
+
// border-color: rgba(var(--ax-comp-editor-error-border-color));
|
321
|
+
// &:focus-within {
|
322
|
+
// box-shadow: 0px 0px 0 1px rgba(var(--ax-comp-editor-error-box-shadow-color));
|
323
|
+
// }
|
324
|
+
// .ax-input {
|
325
|
+
// .ax-placeholder,
|
326
|
+
// &::placeholder {
|
327
|
+
// color: rgba(var(--ax-comp-editor-error-text-color), var(--ax-comp-editor-placeholder-opacity));
|
328
|
+
// }
|
329
|
+
// }
|
330
|
+
// }
|
331
|
+
// }
|
332
|
+
// }
|
333
|
+
// }
|
package/components/_radio.scss
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
appearance: none;
|
11
11
|
border-radius: 9999px /* 4px */;
|
12
12
|
border-width: 1px;
|
13
|
-
border-color: rgba(var(--ax-sys-color-
|
13
|
+
border-color: rgba(var(--ax-sys-color-border-surface));
|
14
14
|
background-color: rgba(var(--ax-sys-color-input-surface));
|
15
15
|
vertical-align: middle;
|
16
16
|
outline: 2px solid transparent;
|
package/mixins/index.scss
CHANGED
package/package.json
CHANGED
package/tailwind-base.js
CHANGED
@@ -9,38 +9,38 @@ const childSelector = plugin(function ({ addVariant }) {
|
|
9
9
|
});
|
10
10
|
|
11
11
|
const SURFACE_BG = {
|
12
|
-
default: 'rgba(var(--ax-sys-color-surface
|
13
|
-
lightest: 'rgba(var(--ax-sys-color-surface
|
14
|
-
lighter: 'rgba(var(--ax-sys-color-surface
|
15
|
-
light: 'rgba(var(--ax-sys-color-surface
|
12
|
+
default: 'rgba(var(--ax-sys-color-lightest-surface), <alpha-value>)',
|
13
|
+
lightest: 'rgba(var(--ax-sys-color-lightest-surface), <alpha-value>)',
|
14
|
+
lighter: 'rgba(var(--ax-sys-color-lighter-surface), <alpha-value>)',
|
15
|
+
light: 'rgba(var(--ax-sys-color-light-surface), <alpha-value>)',
|
16
16
|
surface: 'rgba(var(--ax-sys-color-surface), <alpha-value>)',
|
17
|
-
dark: 'rgba(var(--ax-sys-color-surface
|
18
|
-
darker: 'rgba(var(--ax-sys-color-surface
|
19
|
-
darkest: 'rgba(var(--ax-sys-color-surface
|
17
|
+
dark: 'rgba(var(--ax-sys-color-dark-surface), <alpha-value>)',
|
18
|
+
darker: 'rgba(var(--ax-sys-color-darker-surface), <alpha-value>)',
|
19
|
+
darkest: 'rgba(var(--ax-sys-color-darkest-surface), <alpha-value>)',
|
20
20
|
};
|
21
21
|
|
22
22
|
const SURFACES_ON = {
|
23
23
|
on: {
|
24
|
-
lightest: 'rgba(var(--ax-sys-color-on-surface
|
25
|
-
lighter: 'rgba(var(--ax-sys-color-on-surface
|
26
|
-
light: 'rgba(var(--ax-sys-color-on-surface
|
24
|
+
lightest: 'rgba(var(--ax-sys-color-on-lightest-surface), <alpha-value>)',
|
25
|
+
lighter: 'rgba(var(--ax-sys-color-on-lighter-surface), <alpha-value>)',
|
26
|
+
light: 'rgba(var(--ax-sys-color-on-light-surface), <alpha-value>)',
|
27
27
|
DEFAULT: 'rgba(var(--ax-sys-color-on-surface), <alpha-value>)',
|
28
28
|
surface: 'rgba(var(--ax-sys-color-on-surface), <alpha-value>)',
|
29
|
-
dark: 'rgba(var(--ax-sys-color-on-surface
|
30
|
-
darker: 'rgba(var(--ax-sys-color-on-surface
|
31
|
-
darkest: 'rgba(var(--ax-sys-color-on-surface
|
29
|
+
dark: 'rgba(var(--ax-sys-color-on-dark-surface), <alpha-value>)',
|
30
|
+
darker: 'rgba(var(--ax-sys-color-on-darker-surface), <alpha-value>)',
|
31
|
+
darkest: 'rgba(var(--ax-sys-color-on-darkest-surface), <alpha-value>)',
|
32
32
|
},
|
33
33
|
};
|
34
34
|
|
35
35
|
const SURFACE_BORDER = {
|
36
|
-
lightest: 'rgba(var(--ax-sys-color-border-surface
|
37
|
-
lighter: 'rgba(var(--ax-sys-color-border-surface
|
38
|
-
light: 'rgba(var(--ax-sys-color-border-surface
|
36
|
+
lightest: 'rgba(var(--ax-sys-color-border-lightest-surface), <alpha-value>)',
|
37
|
+
lighter: 'rgba(var(--ax-sys-color-border-lighter-surface), <alpha-value>)',
|
38
|
+
light: 'rgba(var(--ax-sys-color-border-light-surface), <alpha-value>)',
|
39
39
|
DEFAULT: 'rgba(var(--ax-sys-color-border-surface), <alpha-value>)',
|
40
40
|
surface: 'rgba(var(--ax-sys-color-border-surface), <alpha-value>)',
|
41
|
-
dark: 'rgba(var(--ax-sys-color-border-surface
|
42
|
-
darker: 'rgba(var(--ax-sys-color-border-surface
|
43
|
-
darkest: 'rgba(var(--ax-sys-color-border-surface
|
41
|
+
dark: 'rgba(var(--ax-sys-color-border-dark-surface), <alpha-value>)',
|
42
|
+
darker: 'rgba(var(--ax-sys-color-border-darker-surface), <alpha-value>)',
|
43
|
+
darkest: 'rgba(var(--ax-sys-color-border-darkest-surface), <alpha-value>)',
|
44
44
|
};
|
45
45
|
|
46
46
|
const UTILITY_CLASSES = {
|
@@ -223,8 +223,8 @@ module.exports = withAnimations({
|
|
223
223
|
ghost: createPalete('ghost'),
|
224
224
|
},
|
225
225
|
textColor: {
|
226
|
-
DEFAULT: 'rgba(var(--ax-sys-color-on-surface
|
227
|
-
default: 'rgba(var(--ax-sys-color-on-surface
|
226
|
+
DEFAULT: 'rgba(var(--ax-sys-color-on-lightest-surface), <alpha-value>)',
|
227
|
+
default: 'rgba(var(--ax-sys-color-on-lightest-surface), <alpha-value>)',
|
228
228
|
primary: createOnPalete('primary'),
|
229
229
|
secondary: createOnPalete('secondary'),
|
230
230
|
success: createOnPalete('success'),
|
@@ -234,8 +234,8 @@ module.exports = withAnimations({
|
|
234
234
|
...SURFACES_ON,
|
235
235
|
},
|
236
236
|
backgroundColor: {
|
237
|
-
DEFAULT: 'rgba(var(--ax-sys-color-surface
|
238
|
-
default: 'rgba(var(--ax-sys-color-surface
|
237
|
+
DEFAULT: 'rgba(var(--ax-sys-color-lightest-surface), <alpha-value>)',
|
238
|
+
default: 'rgba(var(--ax-sys-color-lightest-surface), <alpha-value>)',
|
239
239
|
primary: createBackgroundPalete('primary'),
|
240
240
|
secondary: createBackgroundPalete('secondary'),
|
241
241
|
success: createBackgroundPalete('success'),
|
@@ -246,8 +246,8 @@ module.exports = withAnimations({
|
|
246
246
|
...SURFACES_ON,
|
247
247
|
},
|
248
248
|
borderColor: {
|
249
|
-
DEFAULT: 'rgba(var(--ax-sys-color-border-surface
|
250
|
-
default: 'rgba(var(--ax-sys-color-border-surface
|
249
|
+
DEFAULT: 'rgba(var(--ax-sys-color-border-lightest-surface), <alpha-value>)',
|
250
|
+
default: 'rgba(var(--ax-sys-color-border-lightest-surface), <alpha-value>)',
|
251
251
|
primary: createBorderPalete('primary'),
|
252
252
|
secondary: createBorderPalete('secondary'),
|
253
253
|
success: createBorderPalete('success'),
|
package/themes/default.scss
CHANGED
@@ -1,20 +1,29 @@
|
|
1
1
|
@use '../utils/index.scss' as *;
|
2
2
|
|
3
3
|
$theme-colors: (
|
4
|
-
'primary':
|
5
|
-
'secondary':
|
6
|
-
'success':
|
7
|
-
'warning':
|
8
|
-
'danger':
|
9
|
-
|
10
|
-
)
|
4
|
+
'primary': oklch(0.623 0.214 259.815),
|
5
|
+
'secondary': oklch(0.656 0.241 354.308),
|
6
|
+
'success': oklch(0.696 0.17 162.48),
|
7
|
+
'warning': oklch(0.769 0.188 70.08),
|
8
|
+
'danger': (
|
9
|
+
oklch(0.645 0.246 16.439),
|
10
|
+
oklch(0.712 0.194 13.428),
|
11
|
+
),
|
12
|
+
);
|
11
13
|
|
12
14
|
$theme-surfaces: (
|
13
15
|
'light-start': #ffffff,
|
14
|
-
'light-end': #
|
15
|
-
'dark-start': #
|
16
|
-
'dark-end': #
|
17
|
-
)
|
16
|
+
'light-end': #d4d4d4,
|
17
|
+
'dark-start': #27272a,
|
18
|
+
'dark-end': #09090b,
|
19
|
+
);
|
20
|
+
|
21
|
+
$options: (
|
22
|
+
'color-range': true,
|
23
|
+
'light': #ffffff,
|
24
|
+
'neutral': #c0c0c0,
|
25
|
+
'dark': #09090b,
|
26
|
+
);
|
18
27
|
|
19
28
|
@forward '../variables/index.scss';
|
20
29
|
|
@@ -22,11 +31,12 @@ $theme-surfaces: (
|
|
22
31
|
.ax-light {
|
23
32
|
--ax-sys-body-font-size: 1rem;
|
24
33
|
--ax-sys-size-base: 2.5rem;
|
25
|
-
|
26
34
|
--ax-sys-border-radius: 0.5rem;
|
35
|
+
--ax-sys-color-body-text: 0, 0, 0;
|
36
|
+
--ax-sys-color-input-text: 0, 0, 0;
|
27
37
|
|
28
38
|
// --ax-sys-body-bg-color: var(--ax-sys-color-surface-lowest);
|
29
39
|
// --ax-sys-body-text-color: var(--ax-sys-color-surface-lowest-border);
|
30
40
|
}
|
31
41
|
|
32
|
-
@include generate-pallete-variables($theme-colors, $theme-surfaces,
|
42
|
+
@include generate-pallete-variables($theme-colors, $theme-surfaces, $options);
|
@@ -3,6 +3,7 @@
|
|
3
3
|
@use 'sass:meta';
|
4
4
|
@use 'sass:math';
|
5
5
|
@use 'sass:map';
|
6
|
+
@use 'sass:list';
|
6
7
|
|
7
8
|
@function generate-ghost-colors($primary, $impact-rate, $is-dark: false) {
|
8
9
|
@if $is-dark {
|
@@ -41,7 +42,15 @@
|
|
41
42
|
}
|
42
43
|
}
|
43
44
|
|
44
|
-
@function generate-surfaces-colors-variables($surfaces, $
|
45
|
+
@function generate-surfaces-colors-variables($surfaces, $options) {
|
46
|
+
$light-color: if(map.has-key($options, 'light'), map.get($options, 'light'), #f0f0f0);
|
47
|
+
$neutral-color: if(map.has-key($options, 'neutral'), map.get($options, 'neutral'), #808080);
|
48
|
+
$dark-color: if(map.has-key($options, 'dark'), map.get($options, 'dark'), #303030);
|
49
|
+
//
|
50
|
+
$is-dark: if(map.has-key($options, 'is-dark'), map.get($options, 'is-dark'), false);
|
51
|
+
//
|
52
|
+
$dark-start-color: map.get($surfaces, 'dark-start');
|
53
|
+
$dark-end-color: map.get($surfaces, 'dark-end');
|
45
54
|
// Extract the start and end colors for both light and dark themes
|
46
55
|
$start-color: map.get($surfaces, 'light-start');
|
47
56
|
$end-color: map.get($surfaces, 'light-end');
|
@@ -88,37 +97,41 @@
|
|
88
97
|
$darkest-surface-border: border-color($darkest-surface, $is-dark);
|
89
98
|
|
90
99
|
@return (
|
91
|
-
ax-sys-color-
|
92
|
-
ax-sys-color-
|
93
|
-
ax-sys-color-
|
94
|
-
|
95
|
-
ax-sys-color-surface
|
96
|
-
ax-sys-color-on-surface
|
97
|
-
ax-sys-color-border-surface
|
98
|
-
|
99
|
-
ax-sys-color-surface
|
100
|
-
ax-sys-color-on-surface
|
101
|
-
ax-sys-color-border-surface
|
100
|
+
ax-sys-color-light: $light-color,
|
101
|
+
ax-sys-color-neutral: $neutral-color,
|
102
|
+
ax-sys-color-dark: $dark-color,
|
103
|
+
//
|
104
|
+
ax-sys-color-lightest-surface: $lightest-surface,
|
105
|
+
ax-sys-color-on-lightest-surface: $on-lightest-surface,
|
106
|
+
ax-sys-color-border-lightest-surface: $lightest-surface-border,
|
107
|
+
|
108
|
+
ax-sys-color-lighter-surface: $lighter-surface,
|
109
|
+
ax-sys-color-on-lighter-surface: $on-lighter-surface,
|
110
|
+
ax-sys-color-border-lighter-surface: $lighter-surface-border,
|
111
|
+
|
112
|
+
ax-sys-color-light-surface: $light-surface,
|
113
|
+
ax-sys-color-on-light-surface: $on-light-surface,
|
114
|
+
ax-sys-color-border-light-surface: $light-surface-border,
|
102
115
|
|
103
116
|
ax-sys-color-surface: $surface,
|
104
117
|
ax-sys-color-on-surface: $on-surface,
|
105
118
|
ax-sys-color-border-surface: $surface-border,
|
106
119
|
|
107
|
-
ax-sys-color-surface
|
108
|
-
ax-sys-color-on-surface
|
109
|
-
ax-sys-color-border-surface
|
120
|
+
ax-sys-color-dark-surface: $dark-surface,
|
121
|
+
ax-sys-color-on-dark-surface: $on-dark-surface,
|
122
|
+
ax-sys-color-border-dark-surface: $dark-surface-border,
|
110
123
|
|
111
|
-
ax-sys-color-surface
|
112
|
-
ax-sys-color-on-surface
|
113
|
-
ax-sys-color-border-surface
|
124
|
+
ax-sys-color-darker-surface: $darker-surface,
|
125
|
+
ax-sys-color-on-darker-surface: $on-darker-surface,
|
126
|
+
ax-sys-color-border-darker-surface: $darker-surface-border,
|
114
127
|
|
115
|
-
ax-sys-color-surface
|
116
|
-
ax-sys-color-on-surface
|
117
|
-
ax-sys-color-border-surface
|
128
|
+
ax-sys-color-darkest-surface: $darkest-surface,
|
129
|
+
ax-sys-color-on-darkest-surface: $on-darkest-surface,
|
130
|
+
ax-sys-color-border-darkest-surface: $darkest-surface-border
|
118
131
|
);
|
119
132
|
}
|
120
133
|
|
121
|
-
@function generate-
|
134
|
+
@function generate-named-surfaces-variables($name, $color, $is-dark: false) {
|
122
135
|
$palette: light-palette-generator($color);
|
123
136
|
@if $is-dark {
|
124
137
|
$palette: dark-palette-generator($color);
|
@@ -190,39 +203,65 @@
|
|
190
203
|
);
|
191
204
|
}
|
192
205
|
|
193
|
-
@mixin generate-pallete-variables($colors, $theme-surfaces, $
|
206
|
+
@mixin generate-pallete-variables($colors, $theme-surfaces, $options) {
|
207
|
+
$generate-color-range: map.get($options, 'color-range');
|
208
|
+
|
194
209
|
/************** Light Palette **************/
|
210
|
+
$options: map.deep-merge(
|
211
|
+
$options,
|
212
|
+
(
|
213
|
+
'is-dark': false,
|
214
|
+
)
|
215
|
+
);
|
195
216
|
:root,
|
196
217
|
.ax-light {
|
197
218
|
// Generate Base Surfaces
|
198
|
-
@include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces,
|
219
|
+
@include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, $options));
|
199
220
|
// Generate Ranges
|
200
221
|
@if $generate-color-range {
|
201
222
|
/* Ranges */
|
202
223
|
@each $name, $color in $colors {
|
224
|
+
@if (meta.type-of($color) == list) {
|
225
|
+
$color: list.nth($color, 1);
|
226
|
+
}
|
203
227
|
@include convert-to-rgb(generate-color-ranges-variables($name, $color, false));
|
204
228
|
}
|
205
229
|
}
|
206
230
|
// Generate Colored Surfaces
|
207
231
|
@each $name, $color in $colors {
|
208
|
-
@
|
232
|
+
@if (meta.type-of($color) == list) {
|
233
|
+
$color: list.nth($color, 1);
|
234
|
+
}
|
235
|
+
@include convert-to-rgb(generate-named-surfaces-variables($name, $color, false));
|
209
236
|
}
|
210
237
|
}
|
211
238
|
|
212
239
|
/************** Dark Palette **************/
|
240
|
+
$options: map.deep-merge(
|
241
|
+
$options,
|
242
|
+
(
|
243
|
+
'is-dark': true,
|
244
|
+
)
|
245
|
+
);
|
213
246
|
.ax-dark {
|
214
247
|
// Generate Base Surfaces
|
215
|
-
@include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces,
|
248
|
+
@include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, $options));
|
216
249
|
// Generate Ranges
|
217
250
|
@if $generate-color-range {
|
218
251
|
/* Ranges */
|
219
252
|
@each $name, $color in $colors {
|
253
|
+
@if (meta.type-of($color) == list) {
|
254
|
+
$color: list.nth($color, 2);
|
255
|
+
}
|
220
256
|
@include convert-to-rgb(generate-color-ranges-variables($name, $color, true));
|
221
257
|
}
|
222
258
|
}
|
223
259
|
// Generate Colored Surfaces
|
224
260
|
@each $name, $color in $colors {
|
225
|
-
@
|
261
|
+
@if (meta.type-of($color) == list) {
|
262
|
+
$color: list.nth($color, 2);
|
263
|
+
}
|
264
|
+
@include convert-to-rgb(generate-named-surfaces-variables($name, $color, true));
|
226
265
|
}
|
227
266
|
}
|
228
267
|
}
|
package/utils/_utils.scss
CHANGED
@@ -133,11 +133,11 @@
|
|
133
133
|
}
|
134
134
|
@return 0.09 * $hue + 42.6;
|
135
135
|
}
|
136
|
-
@function is-dark-on-surface($lightness, $hue) {
|
137
|
-
@if ($
|
138
|
-
@return
|
136
|
+
@function is-dark-on-surface($lightness, $hue, $is-dark) {
|
137
|
+
@if ($is-dark) {
|
138
|
+
@return $lightness >= math.div(lightness-calc(math.div($hue, 1deg)) - 15, 100);
|
139
139
|
} @else {
|
140
|
-
@return
|
140
|
+
@return $lightness >= math.div(lightness-calc(math.div($hue, 1deg)), 100);
|
141
141
|
}
|
142
142
|
}
|
143
143
|
|
@@ -148,15 +148,13 @@
|
|
148
148
|
$lightness: math.div($lightness, 100%);
|
149
149
|
$l: null;
|
150
150
|
@if ($is-dark) {
|
151
|
-
@if (is-dark-on-surface($lightness, $hue)) {
|
152
|
-
|
153
|
-
$l: 0.3;
|
151
|
+
@if (is-dark-on-surface($lightness, $hue, true)) {
|
152
|
+
$l: 0.2;
|
154
153
|
} @else {
|
155
154
|
$l: 0.995;
|
156
155
|
}
|
157
156
|
} @else {
|
158
|
-
@if (is-dark-on-surface($lightness, $hue)) {
|
159
|
-
// $l: map.get($lightColors, 900);
|
157
|
+
@if (is-dark-on-surface($lightness, $hue, false)) {
|
160
158
|
$l: 0.3;
|
161
159
|
} @else {
|
162
160
|
$l: 0.995;
|
@@ -223,17 +221,17 @@
|
|
223
221
|
|
224
222
|
@function dark-palette-generator($color) {
|
225
223
|
$shades: (
|
226
|
-
50:
|
227
|
-
100:
|
228
|
-
200:
|
229
|
-
300:
|
230
|
-
400:
|
224
|
+
50: 50,
|
225
|
+
100: 100,
|
226
|
+
200: 200,
|
227
|
+
300: 300,
|
228
|
+
400: 400,
|
231
229
|
500: 500,
|
232
|
-
600:
|
230
|
+
600: 600,
|
233
231
|
700: 700,
|
234
|
-
800:
|
235
|
-
900:
|
236
|
-
950:
|
232
|
+
800: 800,
|
233
|
+
900: 900,
|
234
|
+
950: 950,
|
237
235
|
);
|
238
236
|
$palette: ();
|
239
237
|
$hue: color.channel($color, 'hue', $space: oklch);
|
package/variables/_colors.scss
CHANGED
package/mixins/_look.scss
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
@mixin solid-look() {
|
2
|
-
border-radius: var(--ax-sys-border-radius);
|
3
|
-
border-width: 1px;
|
4
|
-
border-color: rgba(var(--ax-sys-color-input-surface-border));
|
5
|
-
background-color: rgba(var(--ax-sys-color-input-surface));
|
6
|
-
|
7
|
-
&:focus-within {
|
8
|
-
box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
|
9
|
-
border-color: rgba(var(--ax-sys-color-primary-500));
|
10
|
-
}
|
11
|
-
|
12
|
-
&.ax-state-error {
|
13
|
-
border-color: rgba(var(--ax-sys-color-danger-500));
|
14
|
-
&:focus-within {
|
15
|
-
box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-danger-500));
|
16
|
-
border-color: rgba(var(--ax-sys-color-danger-500));
|
17
|
-
}
|
18
|
-
.ax-input {
|
19
|
-
&::placeholder {
|
20
|
-
color: rgba(var(--ax-sys-color-danger-500));
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
25
|
-
@mixin flat-look() {
|
26
|
-
border-radius: 0px;
|
27
|
-
border-bottom-width: 1px;
|
28
|
-
border-color: rgba(var(--ax-sys-color-input-surface-border));
|
29
|
-
|
30
|
-
&:focus-within {
|
31
|
-
border-color: rgba(var(--ax-sys-color-primary-500));
|
32
|
-
}
|
33
|
-
&.ax-state-error {
|
34
|
-
border-color: rgba(var(--ax-sys-color-danger-500));
|
35
|
-
|
36
|
-
.ax-input {
|
37
|
-
&::placeholder {
|
38
|
-
color: rgba(var(--ax-sys-color-danger-500));
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
@mixin outline-look() {
|
45
|
-
background-color: transparent !important;
|
46
|
-
}
|
47
|
-
|
48
|
-
@mixin fill-look() {
|
49
|
-
border-radius: var(--ax-sys-border-radius);
|
50
|
-
background-color: rgba(var(--ax-sys-color-surface-high));
|
51
|
-
|
52
|
-
&:focus-within {
|
53
|
-
box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-primary-500));
|
54
|
-
}
|
55
|
-
&.ax-state-error {
|
56
|
-
background-color: rgba(var(--ax-sys-color-danger-50));
|
57
|
-
color: rgba(var(--ax-sys-color-danger-fore-tint));
|
58
|
-
|
59
|
-
&:focus-within {
|
60
|
-
box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-danger-500));
|
61
|
-
}
|
62
|
-
.ax-input {
|
63
|
-
&::placeholder {
|
64
|
-
color: rgba(var(--ax-sys-color-danger-500));
|
65
|
-
}
|
66
|
-
}
|
67
|
-
}
|
68
|
-
}
|