@acorex/styles 19.10.0-next.2 → 19.10.0-next.3
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/_drop-down.scss +2 -2
- package/package.json +1 -1
- package/tailwind-base.js +25 -25
- package/themes/default.scss +10 -8
- package/utils/_theme-generator.scss +31 -18
- package/utils/_utils.scss +16 -18
- package/variables/_colors.scss +0 -1
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
|
}
|
@@ -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);
|
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,22 @@
|
|
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
16
|
'light-end': #dee2e6,
|
15
17
|
'dark-start': #13161b,
|
16
18
|
'dark-end': #0c0e12,
|
17
|
-
)
|
19
|
+
);
|
18
20
|
|
19
21
|
@forward '../variables/index.scss';
|
20
22
|
|
@@ -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 {
|
@@ -88,33 +89,33 @@
|
|
88
89
|
$darkest-surface-border: border-color($darkest-surface, $is-dark);
|
89
90
|
|
90
91
|
@return (
|
91
|
-
ax-sys-color-surface
|
92
|
-
ax-sys-color-on-surface
|
93
|
-
ax-sys-color-border-surface
|
92
|
+
ax-sys-color-lightest-surface: $lightest-surface,
|
93
|
+
ax-sys-color-on-lightest-surface: $on-lightest-surface,
|
94
|
+
ax-sys-color-border-lightest-surface: $lightest-surface-border,
|
94
95
|
|
95
|
-
ax-sys-color-surface
|
96
|
-
ax-sys-color-on-surface
|
97
|
-
ax-sys-color-border-surface
|
96
|
+
ax-sys-color-lighter-surface: $lighter-surface,
|
97
|
+
ax-sys-color-on-lighter-surface: $on-lighter-surface,
|
98
|
+
ax-sys-color-border-lighter-surface: $lighter-surface-border,
|
98
99
|
|
99
|
-
ax-sys-color-surface
|
100
|
-
ax-sys-color-on-surface
|
101
|
-
ax-sys-color-border-surface
|
100
|
+
ax-sys-color-light-surface: $light-surface,
|
101
|
+
ax-sys-color-on-light-surface: $on-light-surface,
|
102
|
+
ax-sys-color-border-light-surface: $light-surface-border,
|
102
103
|
|
103
104
|
ax-sys-color-surface: $surface,
|
104
105
|
ax-sys-color-on-surface: $on-surface,
|
105
106
|
ax-sys-color-border-surface: $surface-border,
|
106
107
|
|
107
|
-
ax-sys-color-surface
|
108
|
-
ax-sys-color-on-surface
|
109
|
-
ax-sys-color-border-surface
|
108
|
+
ax-sys-color-dark-surface: $dark-surface,
|
109
|
+
ax-sys-color-on-dark-surface: $on-dark-surface,
|
110
|
+
ax-sys-color-border-dark-surface: $dark-surface-border,
|
110
111
|
|
111
|
-
ax-sys-color-surface
|
112
|
-
ax-sys-color-on-surface
|
113
|
-
ax-sys-color-border-surface
|
112
|
+
ax-sys-color-darker-surface: $darker-surface,
|
113
|
+
ax-sys-color-on-darker-surface: $on-darker-surface,
|
114
|
+
ax-sys-color-border-darker-surface: $darker-surface-border,
|
114
115
|
|
115
|
-
ax-sys-color-surface
|
116
|
-
ax-sys-color-on-surface
|
117
|
-
ax-sys-color-border-surface
|
116
|
+
ax-sys-color-darkest-surface: $darkest-surface,
|
117
|
+
ax-sys-color-on-darkest-surface: $on-darkest-surface,
|
118
|
+
ax-sys-color-border-darkest-surface: $darkest-surface-border
|
118
119
|
);
|
119
120
|
}
|
120
121
|
|
@@ -200,11 +201,17 @@
|
|
200
201
|
@if $generate-color-range {
|
201
202
|
/* Ranges */
|
202
203
|
@each $name, $color in $colors {
|
204
|
+
@if (meta.type-of($color) == list) {
|
205
|
+
$color: list.nth($color, 1);
|
206
|
+
}
|
203
207
|
@include convert-to-rgb(generate-color-ranges-variables($name, $color, false));
|
204
208
|
}
|
205
209
|
}
|
206
210
|
// Generate Colored Surfaces
|
207
211
|
@each $name, $color in $colors {
|
212
|
+
@if (meta.type-of($color) == list) {
|
213
|
+
$color: list.nth($color, 1);
|
214
|
+
}
|
208
215
|
@include convert-to-rgb(generate-color-surfaces-variables($name, $color, false));
|
209
216
|
}
|
210
217
|
}
|
@@ -217,11 +224,17 @@
|
|
217
224
|
@if $generate-color-range {
|
218
225
|
/* Ranges */
|
219
226
|
@each $name, $color in $colors {
|
227
|
+
@if (meta.type-of($color) == list) {
|
228
|
+
$color: list.nth($color, 2);
|
229
|
+
}
|
220
230
|
@include convert-to-rgb(generate-color-ranges-variables($name, $color, true));
|
221
231
|
}
|
222
232
|
}
|
223
233
|
// Generate Colored Surfaces
|
224
234
|
@each $name, $color in $colors {
|
235
|
+
@if (meta.type-of($color) == list) {
|
236
|
+
$color: list.nth($color, 2);
|
237
|
+
}
|
225
238
|
@include convert-to-rgb(generate-color-surfaces-variables($name, $color, true));
|
226
239
|
}
|
227
240
|
}
|
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);
|