@acorex/styles 19.10.0-next.1 → 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.
Files changed (50) hide show
  1. package/base/index.scss +15 -0
  2. package/{src/shared → components}/_action-item.scss +3 -3
  3. package/{src/shared → components}/_actionsheet.scss +7 -6
  4. package/{src/shared → components}/_check-box.scss +8 -14
  5. package/{src/shared → components}/_drop-down.scss +7 -16
  6. package/{src/shared → components}/_editor-container.scss +22 -78
  7. package/{src/shared → components}/_general-button.scss +11 -12
  8. package/{src/shared → components}/_list.scss +15 -41
  9. package/{src/shared → components}/_radio.scss +8 -14
  10. package/components/_ripple.scss +13 -0
  11. package/{src/shared → components}/_table.scss +9 -30
  12. package/components/_uploader.scss +44 -0
  13. package/{src/shared → components}/index.scss +2 -3
  14. package/icons/fontawesome/index.scss +10 -11
  15. package/icons/huge/huge-bulk/index.scss +4 -4
  16. package/icons/huge/huge-duotone/index.scss +4 -4
  17. package/icons/huge/huge-solid-sharp/index.scss +4 -4
  18. package/icons/huge/huge-solid-standard/index.scss +4 -4
  19. package/icons/huge/huge-stroke-rounded/index.scss +4 -4
  20. package/icons/huge/huge-stroke-sharp/index.scss +4 -4
  21. package/icons/huge/huge-stroke-standard/index.scss +4 -4
  22. package/icons/huge/huge-twotone/index.scss +4 -4
  23. package/icons/material/index.scss +4 -5
  24. package/index.scss +5 -7
  25. package/mixins/_look.scss +68 -0
  26. package/package.json +1 -1
  27. package/tailwind-base.js +231 -158
  28. package/themes/default.scss +28 -139
  29. package/utils/_theme-generator.scss +241 -0
  30. package/utils/_utils.scss +284 -0
  31. package/utils/index.scss +2 -0
  32. package/variables/_colors.scss +7 -0
  33. package/variables/_looks.scss +1 -0
  34. package/variables/index.scss +2 -0
  35. package/index.css +0 -2843
  36. package/index.min.css +0 -1
  37. package/src/base/index.scss +0 -13
  38. package/src/mixins/_look.scss +0 -83
  39. package/src/shared/_color-look.scss +0 -822
  40. package/src/shared/_inputs.scss +0 -16
  41. package/src/shared/_utils.scss +0 -85
  42. package/src/utility/index.scss +0 -24
  43. package/src/variables/_colors.scss +0 -2
  44. package/src/variables/_degrees.scss +0 -1
  45. package/src/variables/index.scss +0 -2
  46. package/themes/default.css +0 -1
  47. /package/{src/base → base}/_preflight.scss +0 -0
  48. /package/{src/mixins → mixins}/_media.scss +0 -0
  49. /package/{src/mixins → mixins}/_util.scss +0 -0
  50. /package/{src/mixins → mixins}/index.scss +0 -0
@@ -0,0 +1,241 @@
1
+ @use './utils' as *;
2
+ @use 'sass:color';
3
+ @use 'sass:meta';
4
+ @use 'sass:math';
5
+ @use 'sass:map';
6
+ @use 'sass:list';
7
+
8
+ @function generate-ghost-colors($primary, $impact-rate, $is-dark: false) {
9
+ @if $is-dark {
10
+ @return (
11
+ ax-sys-color-ghost-950: color.mix(white, $primary, (1 - $impact-rate) * 30%),
12
+ ax-sys-color-ghost-900: color.mix(white, $primary, (1 - $impact-rate) * 10%),
13
+ ax-sys-color-ghost-800: color.mix(white, $primary, (1 - $impact-rate) * 20%),
14
+ ax-sys-color-ghost-700: color.mix(white, $primary, (1 - $impact-rate) * 30%),
15
+ ax-sys-color-ghost-600: color.mix(white, $primary, (1 - $impact-rate) * 45%),
16
+ ax-sys-color-ghost-500: color.mix(white, $primary, (1 - $impact-rate) * 60%),
17
+ ax-sys-color-ghost-400: color.mix(white, $primary, (1 - $impact-rate) * 75%),
18
+ ax-sys-color-ghost-300: color.mix(white, $primary, (1 - $impact-rate) * 85%),
19
+ ax-sys-color-ghost-200: color.mix(white, $primary, (1 - $impact-rate) * 92%),
20
+ ax-sys-color-ghost-100: color.mix(white, $primary, (1 - $impact-rate) * 96%),
21
+ ax-sys-color-ghost-50: color.mix(white, $primary, (1 - $impact-rate) * 70%),
22
+ ax-sys-color-on-ghost: color.mix(black, $primary, $impact-rate * 8%),
23
+ //ax-sys-color-on-contrast-ghost: color.mix(white, $primary, (1 - $impact-rate) * 95%),
24
+ ax-sys-color-on-contrast-ghost: color.mix(black, $primary, $impact-rate * 8%)
25
+ );
26
+ } @else {
27
+ @return (
28
+ ax-sys-color-ghost-50: color.mix(white, $primary, (1 - $impact-rate) * 99%),
29
+ ax-sys-color-ghost-100: color.mix(white, $primary, (1 - $impact-rate) * 96%),
30
+ ax-sys-color-ghost-200: color.mix(white, $primary, (1 - $impact-rate) * 92%),
31
+ ax-sys-color-ghost-300: color.mix(white, $primary, (1 - $impact-rate) * 85%),
32
+ ax-sys-color-ghost-400: color.mix(white, $primary, (1 - $impact-rate) * 75%),
33
+ ax-sys-color-ghost-500: color.mix(white, $primary, (1 - $impact-rate) * 60%),
34
+ ax-sys-color-ghost-600: color.mix(white, $primary, (1 - $impact-rate) * 45%),
35
+ ax-sys-color-ghost-700: color.mix(white, $primary, (1 - $impact-rate) * 30%),
36
+ ax-sys-color-ghost-800: color.mix(white, $primary, (1 - $impact-rate) * 20%),
37
+ ax-sys-color-ghost-900: color.mix(white, $primary, (1 - $impact-rate) * 10%),
38
+ ax-sys-color-ghost-950: color.mix(white, $primary, (1 - $impact-rate) * 5%),
39
+ ax-sys-color-on-ghost: color.mix(white, $primary, (1 - $impact-rate) * 95%),
40
+ ax-sys-color-on-contrast-ghost: color.mix(black, $primary, $impact-rate * 8%)
41
+ );
42
+ }
43
+ }
44
+
45
+ @function generate-surfaces-colors-variables($surfaces, $is-dark) {
46
+ // Extract the start and end colors for both light and dark themes
47
+ $start-color: map.get($surfaces, 'light-start');
48
+ $end-color: map.get($surfaces, 'light-end');
49
+
50
+ // If the dark theme is enabled, use the dark theme colors
51
+ @if $is-dark {
52
+ $start-color: map.get($surfaces, 'dark-start');
53
+ $end-color: map.get($surfaces, 'dark-end');
54
+ }
55
+
56
+ // Lightest Surface (start color)
57
+ $lightest-surface: $start-color;
58
+ $on-lightest-surface: contrast-text($lightest-surface, $is-dark);
59
+ $lightest-surface-border: border-color($lightest-surface, $is-dark);
60
+
61
+ // Lighter Surface: 80% of $start-color
62
+ $lighter-surface: color.mix($start-color, $end-color, 80%);
63
+ $on-lighter-surface: contrast-text($lighter-surface, $is-dark);
64
+ $lighter-surface-border: border-color($lighter-surface, $is-dark);
65
+
66
+ // Light Surface: 65% of $start-color
67
+ $light-surface: color.mix($start-color, $end-color, 65%);
68
+ $on-light-surface: contrast-text($light-surface, $is-dark);
69
+ $light-surface-border: border-color($light-surface, $is-dark);
70
+
71
+ // Base Surface: 50% of $start-color (the midpoint)
72
+ $surface: color.mix($start-color, $end-color, 50%);
73
+ $on-surface: contrast-text($surface, $is-dark);
74
+ $surface-border: border-color($surface, $is-dark);
75
+
76
+ // Dark Surface: 35% of $start-color
77
+ $dark-surface: color.mix($start-color, $end-color, 35%);
78
+ $on-dark-surface: contrast-text($dark-surface, $is-dark);
79
+ $dark-surface-border: border-color($dark-surface, $is-dark);
80
+
81
+ // Darker Surface: 20% of $start-color
82
+ $darker-surface: color.mix($start-color, $end-color, 20%);
83
+ $on-darker-surface: contrast-text($darker-surface, $is-dark);
84
+ $darker-surface-border: border-color($darker-surface, $is-dark);
85
+
86
+ // Darkest Surface (end color)
87
+ $darkest-surface: $end-color;
88
+ $on-darkest-surface: contrast-text($darkest-surface, $is-dark);
89
+ $darkest-surface-border: border-color($darkest-surface, $is-dark);
90
+
91
+ @return (
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,
95
+
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,
99
+
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,
103
+
104
+ ax-sys-color-surface: $surface,
105
+ ax-sys-color-on-surface: $on-surface,
106
+ ax-sys-color-border-surface: $surface-border,
107
+
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,
111
+
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,
115
+
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
119
+ );
120
+ }
121
+
122
+ @function generate-color-surfaces-variables($name, $color, $is-dark: false) {
123
+ $palette: light-palette-generator($color);
124
+ @if $is-dark {
125
+ $palette: dark-palette-generator($color);
126
+ }
127
+
128
+ // Lightest Surface
129
+ $lightest-surface: oklch-to-rgba(map.get($palette, 100));
130
+ $on-lightest-surface: contrast-text($lightest-surface, $is-dark);
131
+ $lightest-surface-border: border-color($lightest-surface, $is-dark);
132
+
133
+ // Lighter Surface
134
+ $lighter-surface: oklch-to-rgba(map.get($palette, 200));
135
+ $on-lighter-surface: contrast-text($lighter-surface, $is-dark);
136
+ $lighter-surface-border: border-color($lighter-surface, $is-dark);
137
+
138
+ // Light Surface
139
+ $light-surface: oklch-to-rgba(map.get($palette, 300));
140
+ $on-light-surface: contrast-text($light-surface, $is-dark);
141
+ $light-surface-border: border-color($light-surface, $is-dark);
142
+
143
+ // Base Surface
144
+ $surface: oklch-to-rgba(map.get($palette, 500));
145
+ $on-surface: contrast-text($surface, $is-dark);
146
+ $surface-border: border-color($surface, $is-dark);
147
+
148
+ // Dark Surface
149
+ $dark-surface: oklch-to-rgba(map.get($palette, 600));
150
+ $on-dark-surface: contrast-text($dark-surface, $is-dark);
151
+ $dark-surface-border: border-color($dark-surface, $is-dark);
152
+
153
+ // Darker Surface
154
+ $darker-surface: oklch-to-rgba(map.get($palette, 700));
155
+ $on-darker-surface: contrast-text($darker-surface, $is-dark);
156
+ $darker-surface-border: border-color($darker-surface, $is-dark);
157
+
158
+ // Darkest Surface
159
+ $darkest-surface: oklch-to-rgba(map.get($palette, 800));
160
+ $on-darkest-surface: contrast-text($darkest-surface, $is-dark);
161
+ $darkest-surface-border: border-color($darkest-surface, $is-dark);
162
+
163
+ @return (
164
+ ax-sys-color-#{$name}-lightest-surface: $lightest-surface,
165
+ ax-sys-color-on-#{$name}-lightest-surface: $on-lightest-surface,
166
+ ax-sys-color-border-#{$name}-lightest-surface: $lightest-surface-border,
167
+
168
+ ax-sys-color-#{$name}-lighter-surface: $lighter-surface,
169
+ ax-sys-color-on-#{$name}-lighter-surface: $on-lighter-surface,
170
+ ax-sys-color-border-#{$name}-lighter-surface: $lighter-surface-border,
171
+
172
+ ax-sys-color-#{$name}-light-surface: $light-surface,
173
+ ax-sys-color-on-#{$name}-light-surface: $on-light-surface,
174
+ ax-sys-color-border-#{$name}-light-surface: $light-surface-border,
175
+
176
+ ax-sys-color-#{$name}-surface: $surface,
177
+ ax-sys-color-on-#{$name}-surface: $on-surface,
178
+ ax-sys-color-border-#{$name}-surface: $surface-border,
179
+
180
+ ax-sys-color-#{$name}-dark-surface: $dark-surface,
181
+ ax-sys-color-on-#{$name}-dark-surface: $on-dark-surface,
182
+ ax-sys-color-border-#{$name}-dark-surface: $dark-surface-border,
183
+
184
+ ax-sys-color-#{$name}-darker-surface: $darker-surface,
185
+ ax-sys-color-on-#{$name}-darker-surface: $on-darker-surface,
186
+ ax-sys-color-border-#{$name}-darker-surface: $darker-surface-border,
187
+
188
+ ax-sys-color-#{$name}-darkest-surface: $darkest-surface,
189
+ ax-sys-color-on-#{$name}-darkest-surface: $on-darkest-surface,
190
+ ax-sys-color-border-#{$name}-darkest-surface: $darkest-surface-border
191
+ );
192
+ }
193
+
194
+ @mixin generate-pallete-variables($colors, $theme-surfaces, $generate-color-range: true) {
195
+ /************** Light Palette **************/
196
+ :root,
197
+ .ax-light {
198
+ // Generate Base Surfaces
199
+ @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, false));
200
+ // Generate Ranges
201
+ @if $generate-color-range {
202
+ /* Ranges */
203
+ @each $name, $color in $colors {
204
+ @if (meta.type-of($color) == list) {
205
+ $color: list.nth($color, 1);
206
+ }
207
+ @include convert-to-rgb(generate-color-ranges-variables($name, $color, false));
208
+ }
209
+ }
210
+ // Generate Colored Surfaces
211
+ @each $name, $color in $colors {
212
+ @if (meta.type-of($color) == list) {
213
+ $color: list.nth($color, 1);
214
+ }
215
+ @include convert-to-rgb(generate-color-surfaces-variables($name, $color, false));
216
+ }
217
+ }
218
+
219
+ /************** Dark Palette **************/
220
+ .ax-dark {
221
+ // Generate Base Surfaces
222
+ @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, true));
223
+ // Generate Ranges
224
+ @if $generate-color-range {
225
+ /* Ranges */
226
+ @each $name, $color in $colors {
227
+ @if (meta.type-of($color) == list) {
228
+ $color: list.nth($color, 2);
229
+ }
230
+ @include convert-to-rgb(generate-color-ranges-variables($name, $color, true));
231
+ }
232
+ }
233
+ // Generate Colored Surfaces
234
+ @each $name, $color in $colors {
235
+ @if (meta.type-of($color) == list) {
236
+ $color: list.nth($color, 2);
237
+ }
238
+ @include convert-to-rgb(generate-color-surfaces-variables($name, $color, true));
239
+ }
240
+ }
241
+ }
@@ -0,0 +1,284 @@
1
+ @use 'sass:color';
2
+ @use 'sass:meta';
3
+ @use 'sass:math';
4
+ @use 'sass:map';
5
+
6
+ @function strip-rgba($color) {
7
+ @if meta.type-of($color) == 'color' {
8
+ $r: math.round(color.channel($color, 'red', rgb));
9
+ $g: math.round(color.channel($color, 'green', rgb));
10
+ $b: math.round(color.channel($color, 'blue', rgb));
11
+ @return $r, $g, $b;
12
+ }
13
+ @error "Invalid input: #{$color}. It must be a color.";
14
+ }
15
+
16
+ @mixin convert-to-rgb($variable-map) {
17
+ @each $key, $value in $variable-map {
18
+ --#{$key}: #{strip-rgba($value)};
19
+ }
20
+ }
21
+
22
+ // A helper function to clamp a value between $min and $max.
23
+ // Renamed to avoid conflict with the built-in `clamp()` function.
24
+ @function clamp-value($value, $min, $max) {
25
+ @return max($min, min($value, $max));
26
+ }
27
+
28
+ // Gamma correction for converting linear sRGB to sRGB.
29
+ // Uses the piecewise function:
30
+ // if (channel <= 0.0031308) then sRGB = 12.92 * channel
31
+ // else sRGB = 1.055 * (channel^(1/2.4)) - 0.055
32
+ @function gamma-correct($channel) {
33
+ @if $channel <= 0.0031308 {
34
+ @return 12.92 * $channel;
35
+ } @else {
36
+ @return 1.055 * math.pow($channel, 1/2.4) - 0.055;
37
+ }
38
+ }
39
+
40
+ // Converts an Oklch value to an rgba() color.
41
+ // The input can be either:
42
+ // • a color (e.g. one produced by `oklch()`), or
43
+ // • a list of numbers: (L, C, H) or (L, C, H, alpha)
44
+ // In the first case, the built-in color channels are used via `color.channel()`.
45
+ // In the second, a manual conversion is performed.
46
+ @function oklch-to-rgba($color) {
47
+ // If the input is a color, extract its components using the new API.
48
+ @if meta.type-of($color) == 'color' {
49
+ $r: round(color.channel($color, 'red', $space: rgb));
50
+ $g: round(color.channel($color, 'green', $space: rgb));
51
+ $b: round(color.channel($color, 'blue', $space: rgb));
52
+ $a: color.channel($color, 'alpha', $space: rgb);
53
+ @return rgba($r, $g, $b, $a);
54
+ }
55
+ // Otherwise, if the input is a list with at least 3 elements, assume it's (L, C, H, [alpha]).
56
+ @else if type-of($color) == 'list' {
57
+ @if length($color) >= 3 {
58
+ $l: nth($color, 1);
59
+ $c: nth($color, 2);
60
+ $h: nth($color, 3);
61
+ $alpha: if(length($color) >= 4, nth($color, 4), 1);
62
+
63
+ // Convert hue from degrees to radians.
64
+ $h_rad: $h * math.pi() / 180;
65
+
66
+ // Convert from Oklch to OKLab.
67
+ $a: $c * math.cos($h_rad);
68
+ $b: $c * math.sin($h_rad);
69
+
70
+ // Compute intermediate OKLab values.
71
+ $l_oklab: $l;
72
+ $l_: $l_oklab + 0.3963377774 * $a + 0.2158037573 * $b;
73
+ $m_: $l_oklab - 0.1055613458 * $a - 0.0638541728 * $b;
74
+ $s_: $l_oklab - 0.0894841775 * $a - 1.291485548 * $b;
75
+
76
+ // Cube the intermediate values.
77
+ $l_cube: $l_ * $l_ * $l_;
78
+ $m_cube: $m_ * $m_ * $m_;
79
+ $s_cube: $s_ * $s_ * $s_;
80
+
81
+ // Convert OKLab (cubed) to linear sRGB.
82
+ $r_linear: 4.0767416621 * $l_cube - 3.3077115913 * $m_cube + 0.2309699292 * $s_cube;
83
+ $g_linear: -1.2684380046 * $l_cube + 2.6097574011 * $m_cube - 0.3413193965 * $s_cube;
84
+ $b_linear: -0.0041960863 * $l_cube - 0.7034186147 * $m_cube + 1.707614701 * $s_cube;
85
+
86
+ // Gamma correction.
87
+ $r: gamma-correct($r_linear);
88
+ $g: gamma-correct($g_linear);
89
+ $b: gamma-correct($b_linear);
90
+
91
+ // Clamp the sRGB values to the 0–1 range.
92
+ $r: clamp-value($r, 0, 1);
93
+ $g: clamp-value($g, 0, 1);
94
+ $b: clamp-value($b, 0, 1);
95
+
96
+ // Convert the 0–1 values to 0–255 integers.
97
+ $r_int: round($r * 255);
98
+ $g_int: round($g * 255);
99
+ $b_int: round($b * 255);
100
+
101
+ @return rgba($r_int, $g_int, $b_int, $alpha);
102
+ } @else {
103
+ @error "Invalid input for oklch-to-rgba: list must have at least 3 elements.";
104
+ }
105
+ } @else {
106
+ @error "Invalid input for oklch-to-rgba: expected a color or a list of numbers.";
107
+ }
108
+ }
109
+
110
+ @function shift-dark-mode-color($color, $lightness: 20%, $saturation: 10%) {
111
+ // Convert the color to HSL
112
+ $hsl: hsl(hue($color), saturation($color), lightness($color));
113
+
114
+ // Check if the color is already dark (lightness < 40%)
115
+ @if lightness($hsl) < 40% {
116
+ // If the color is dark, adjust it slightly or leave it unchanged
117
+ @return $color; // Or adjust slightly, e.g., darken($color, 5%);
118
+ } @else {
119
+ // If the color is light, darken it
120
+ $new-lightness: max(0%, lightness($hsl) - $lightness); // Ensure lightness doesn't go below 0%
121
+ $new-saturation: min(100%, saturation($hsl) + $saturation); // Ensure saturation doesn't exceed 100%
122
+ @return hsl(hue($hsl), $new-saturation, $new-lightness);
123
+ }
124
+ }
125
+
126
+ // Function to calculate text color based on surface color
127
+ @function lightness-calc($hue) {
128
+ @if ($hue <= 80) {
129
+ @return 0.06 * $hue + 75;
130
+ }
131
+ @if ($hue < 270) {
132
+ @return -0.07 * $hue + 85.82;
133
+ }
134
+ @return 0.09 * $hue + 42.6;
135
+ }
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
+ } @else {
140
+ @return $lightness >= math.div(lightness-calc(math.div($hue, 1deg)), 100);
141
+ }
142
+ }
143
+
144
+ @function contrast-text($color, $is-dark: false) {
145
+ $hue: color.channel($color, 'hue', $space: oklch);
146
+ $chroma: color.channel($color, 'chroma', $space: oklch);
147
+ $lightness: color.channel($color, 'lightness', $space: oklch);
148
+ $lightness: math.div($lightness, 100%);
149
+ $l: null;
150
+ @if ($is-dark) {
151
+ @if (is-dark-on-surface($lightness, $hue, true)) {
152
+ $l: 0.2;
153
+ } @else {
154
+ $l: 0.995;
155
+ }
156
+ } @else {
157
+ @if (is-dark-on-surface($lightness, $hue, false)) {
158
+ $l: 0.3;
159
+ } @else {
160
+ $l: 0.995;
161
+ }
162
+ }
163
+ $oklch-color: oklch($l $chroma $hue);
164
+ @return color.to-gamut($oklch-color, $space: rgb, $method: local-minde);
165
+ }
166
+
167
+ @function border-color($color, $is-dark) {
168
+ @if $is-dark {
169
+ // Dark theme: lightening the border color for contrast
170
+ @return color.adjust($color, $lightness: 9%);
171
+ } @else {
172
+ // Light theme: darkening the border color for contrast
173
+ @return color.adjust($color, $lightness: -7%);
174
+ }
175
+ }
176
+
177
+ @function light-palette-generator($color) {
178
+ $shades: (
179
+ 50: 40,
180
+ 100: 90,
181
+ 200: 160,
182
+ 300: 270,
183
+ 400: 410,
184
+ 500: 500,
185
+ 600: 590,
186
+ 700: 700,
187
+ 800: 790,
188
+ 900: 860,
189
+ 950: 1060,
190
+ );
191
+ $palette: ();
192
+ $hue: color.channel($color, 'hue', $space: oklch);
193
+ $chroma: color.channel($color, 'chroma', $space: oklch);
194
+ $lightness: color.channel($color, 'lightness', $space: oklch);
195
+ $lightness: math.div($lightness, 100%);
196
+ @each $name, $shade in $shades {
197
+ $l: null;
198
+ @if (meta.type-of($shade) == number) {
199
+ @if ($shade <= 500) {
200
+ $l: math.div((-$shade + $shade * $lightness + 500), 500);
201
+ } @else {
202
+ $l: (1 - math.div(($shade - 500), 500)) * ($lightness - 0.3) + 0.3;
203
+ }
204
+ $palette: map.set($palette, $name, $l);
205
+ }
206
+ $oklch-color: oklch((map.get($palette, $name) * 100%) $chroma $hue);
207
+ $gamut-oklch: color.to-gamut($oklch-color, $space: rgb, $method: local-minde);
208
+ @if ($name==950) {
209
+ $gamut-oklch: color.scale($gamut-oklch, $chroma: -50%, $space: oklch);
210
+ }
211
+ @if ($name==900) {
212
+ $gamut-oklch: color.scale($gamut-oklch, $chroma: -33%, $space: oklch);
213
+ }
214
+ @if ($name==800) {
215
+ $gamut-oklch: color.scale($gamut-oklch, $chroma: -8%, $space: oklch);
216
+ }
217
+ $palette: map.set($palette, $name, $gamut-oklch);
218
+ }
219
+ @return $palette;
220
+ }
221
+
222
+ @function dark-palette-generator($color) {
223
+ $shades: (
224
+ 50: 50,
225
+ 100: 100,
226
+ 200: 200,
227
+ 300: 300,
228
+ 400: 400,
229
+ 500: 500,
230
+ 600: 600,
231
+ 700: 700,
232
+ 800: 800,
233
+ 900: 900,
234
+ 950: 950,
235
+ );
236
+ $palette: ();
237
+ $hue: color.channel($color, 'hue', $space: oklch);
238
+ $chroma: color.channel($color, 'chroma', $space: oklch);
239
+ $lightness: color.channel($color, 'lightness', $space: oklch);
240
+ $lightness: math.div($lightness, 100%);
241
+ @each $name, $shade in $shades {
242
+ $l: null;
243
+ @if (meta.type-of($shade) == number) {
244
+ @if ($shade <= 700) {
245
+ $l: math.div((-$shade + $shade * $lightness + 700), 700);
246
+ } @else {
247
+ $l: (1 - math.div(($shade - 700), 700)) * ($lightness - 0.3) + 0.3;
248
+ }
249
+ $palette: map.set($palette, $name, $l);
250
+ }
251
+ $oklch-color: oklch((map.get($palette, $name) * 100%) $chroma $hue);
252
+ $gamut-oklch: color.to-gamut($oklch-color, $space: rgb, $method: local-minde);
253
+ $palette: map.set($palette, $name, $gamut-oklch);
254
+ }
255
+ @return $palette;
256
+ }
257
+
258
+ @function generate-color-ranges-variables($name, $color, $is-dark: false) {
259
+ $colors: ();
260
+ $light-shades: (50, 100, 200, 300, 400);
261
+ $dark-shades: (600, 700, 800, 900, 950);
262
+
263
+ @if $is-dark {
264
+ $palette: dark-palette-generator($color);
265
+ @each $shade, $color in $palette {
266
+ $colors: map.merge($colors, (ax-sys-color-#{$name}-#{$shade}: $color));
267
+ }
268
+ $colors: map.merge(
269
+ $colors,
270
+ (ax-sys-color-on-#{$name}: contrast-text(map.get($palette, 500), true), ax-sys-color-on-contrast-#{$name}: contrast-text(map.get($palette, 200), true))
271
+ );
272
+ } @else {
273
+ $palette: light-palette-generator($color);
274
+ @each $shade, $color in $palette {
275
+ $colors: map.merge($colors, (ax-sys-color-#{$name}-#{$shade}: $color));
276
+ }
277
+ $colors: map.merge(
278
+ $colors,
279
+ (ax-sys-color-on-#{$name}: contrast-text(map.get($palette, 500), false), ax-sys-color-on-contrast-#{$name}: contrast-text(map.get($palette, 200), false))
280
+ );
281
+ }
282
+
283
+ @return $colors;
284
+ }
@@ -0,0 +1,2 @@
1
+ @forward './theme-generator';
2
+ @forward './utils';
@@ -0,0 +1,7 @@
1
+ $theme-colors: (
2
+ 'primary': #3b82f6,
3
+ 'secondary': #64748b,
4
+ 'success': #22c55e,
5
+ 'warning': #f59e0b,
6
+ 'danger': #f43f5e,
7
+ ) !default;
@@ -0,0 +1 @@
1
+ $theme-looks: 'solid', 'outline', 'twotone', 'blank', 'link' !default;
@@ -0,0 +1,2 @@
1
+ @forward './colors';
2
+ @forward './looks';