@acorex/styles 19.10.0-next.1 → 19.10.0-next.2

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 +22 -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 +26 -139
  29. package/utils/_theme-generator.scss +228 -0
  30. package/utils/_utils.scss +286 -0
  31. package/utils/index.scss +2 -0
  32. package/variables/_colors.scss +8 -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,228 @@
1
+ @use './utils' as *;
2
+ @use 'sass:color';
3
+ @use 'sass:meta';
4
+ @use 'sass:math';
5
+ @use 'sass:map';
6
+
7
+ @function generate-ghost-colors($primary, $impact-rate, $is-dark: false) {
8
+ @if $is-dark {
9
+ @return (
10
+ ax-sys-color-ghost-950: color.mix(white, $primary, (1 - $impact-rate) * 30%),
11
+ ax-sys-color-ghost-900: color.mix(white, $primary, (1 - $impact-rate) * 10%),
12
+ ax-sys-color-ghost-800: color.mix(white, $primary, (1 - $impact-rate) * 20%),
13
+ ax-sys-color-ghost-700: color.mix(white, $primary, (1 - $impact-rate) * 30%),
14
+ ax-sys-color-ghost-600: color.mix(white, $primary, (1 - $impact-rate) * 45%),
15
+ ax-sys-color-ghost-500: color.mix(white, $primary, (1 - $impact-rate) * 60%),
16
+ ax-sys-color-ghost-400: color.mix(white, $primary, (1 - $impact-rate) * 75%),
17
+ ax-sys-color-ghost-300: color.mix(white, $primary, (1 - $impact-rate) * 85%),
18
+ ax-sys-color-ghost-200: color.mix(white, $primary, (1 - $impact-rate) * 92%),
19
+ ax-sys-color-ghost-100: color.mix(white, $primary, (1 - $impact-rate) * 96%),
20
+ ax-sys-color-ghost-50: color.mix(white, $primary, (1 - $impact-rate) * 70%),
21
+ ax-sys-color-on-ghost: color.mix(black, $primary, $impact-rate * 8%),
22
+ //ax-sys-color-on-contrast-ghost: color.mix(white, $primary, (1 - $impact-rate) * 95%),
23
+ ax-sys-color-on-contrast-ghost: color.mix(black, $primary, $impact-rate * 8%)
24
+ );
25
+ } @else {
26
+ @return (
27
+ ax-sys-color-ghost-50: color.mix(white, $primary, (1 - $impact-rate) * 99%),
28
+ ax-sys-color-ghost-100: color.mix(white, $primary, (1 - $impact-rate) * 96%),
29
+ ax-sys-color-ghost-200: color.mix(white, $primary, (1 - $impact-rate) * 92%),
30
+ ax-sys-color-ghost-300: color.mix(white, $primary, (1 - $impact-rate) * 85%),
31
+ ax-sys-color-ghost-400: color.mix(white, $primary, (1 - $impact-rate) * 75%),
32
+ ax-sys-color-ghost-500: color.mix(white, $primary, (1 - $impact-rate) * 60%),
33
+ ax-sys-color-ghost-600: color.mix(white, $primary, (1 - $impact-rate) * 45%),
34
+ ax-sys-color-ghost-700: color.mix(white, $primary, (1 - $impact-rate) * 30%),
35
+ ax-sys-color-ghost-800: color.mix(white, $primary, (1 - $impact-rate) * 20%),
36
+ ax-sys-color-ghost-900: color.mix(white, $primary, (1 - $impact-rate) * 10%),
37
+ ax-sys-color-ghost-950: color.mix(white, $primary, (1 - $impact-rate) * 5%),
38
+ ax-sys-color-on-ghost: color.mix(white, $primary, (1 - $impact-rate) * 95%),
39
+ ax-sys-color-on-contrast-ghost: color.mix(black, $primary, $impact-rate * 8%)
40
+ );
41
+ }
42
+ }
43
+
44
+ @function generate-surfaces-colors-variables($surfaces, $is-dark) {
45
+ // Extract the start and end colors for both light and dark themes
46
+ $start-color: map.get($surfaces, 'light-start');
47
+ $end-color: map.get($surfaces, 'light-end');
48
+
49
+ // If the dark theme is enabled, use the dark theme colors
50
+ @if $is-dark {
51
+ $start-color: map.get($surfaces, 'dark-start');
52
+ $end-color: map.get($surfaces, 'dark-end');
53
+ }
54
+
55
+ // Lightest Surface (start color)
56
+ $lightest-surface: $start-color;
57
+ $on-lightest-surface: contrast-text($lightest-surface, $is-dark);
58
+ $lightest-surface-border: border-color($lightest-surface, $is-dark);
59
+
60
+ // Lighter Surface: 80% of $start-color
61
+ $lighter-surface: color.mix($start-color, $end-color, 80%);
62
+ $on-lighter-surface: contrast-text($lighter-surface, $is-dark);
63
+ $lighter-surface-border: border-color($lighter-surface, $is-dark);
64
+
65
+ // Light Surface: 65% of $start-color
66
+ $light-surface: color.mix($start-color, $end-color, 65%);
67
+ $on-light-surface: contrast-text($light-surface, $is-dark);
68
+ $light-surface-border: border-color($light-surface, $is-dark);
69
+
70
+ // Base Surface: 50% of $start-color (the midpoint)
71
+ $surface: color.mix($start-color, $end-color, 50%);
72
+ $on-surface: contrast-text($surface, $is-dark);
73
+ $surface-border: border-color($surface, $is-dark);
74
+
75
+ // Dark Surface: 35% of $start-color
76
+ $dark-surface: color.mix($start-color, $end-color, 35%);
77
+ $on-dark-surface: contrast-text($dark-surface, $is-dark);
78
+ $dark-surface-border: border-color($dark-surface, $is-dark);
79
+
80
+ // Darker Surface: 20% of $start-color
81
+ $darker-surface: color.mix($start-color, $end-color, 20%);
82
+ $on-darker-surface: contrast-text($darker-surface, $is-dark);
83
+ $darker-surface-border: border-color($darker-surface, $is-dark);
84
+
85
+ // Darkest Surface (end color)
86
+ $darkest-surface: $end-color;
87
+ $on-darkest-surface: contrast-text($darkest-surface, $is-dark);
88
+ $darkest-surface-border: border-color($darkest-surface, $is-dark);
89
+
90
+ @return (
91
+ ax-sys-color-surface-lightest: $lightest-surface,
92
+ ax-sys-color-on-surface-lightest: $on-lightest-surface,
93
+ ax-sys-color-border-surface-lightest: $lightest-surface-border,
94
+
95
+ ax-sys-color-surface-lighter: $lighter-surface,
96
+ ax-sys-color-on-surface-lighter: $on-lighter-surface,
97
+ ax-sys-color-border-surface-lighter: $lighter-surface-border,
98
+
99
+ ax-sys-color-surface-light: $light-surface,
100
+ ax-sys-color-on-surface-light: $on-light-surface,
101
+ ax-sys-color-border-surface-light: $light-surface-border,
102
+
103
+ ax-sys-color-surface: $surface,
104
+ ax-sys-color-on-surface: $on-surface,
105
+ ax-sys-color-border-surface: $surface-border,
106
+
107
+ ax-sys-color-surface-dark: $dark-surface,
108
+ ax-sys-color-on-surface-dark: $on-dark-surface,
109
+ ax-sys-color-border-surface-dark: $dark-surface-border,
110
+
111
+ ax-sys-color-surface-darker: $darker-surface,
112
+ ax-sys-color-on-surface-darker: $on-darker-surface,
113
+ ax-sys-color-border-surface-darker: $darker-surface-border,
114
+
115
+ ax-sys-color-surface-darkest: $darkest-surface,
116
+ ax-sys-color-on-surface-darkest: $on-darkest-surface,
117
+ ax-sys-color-border-surface-darkest: $darkest-surface-border
118
+ );
119
+ }
120
+
121
+ @function generate-color-surfaces-variables($name, $color, $is-dark: false) {
122
+ $palette: light-palette-generator($color);
123
+ @if $is-dark {
124
+ $palette: dark-palette-generator($color);
125
+ }
126
+
127
+ // Lightest Surface
128
+ $lightest-surface: oklch-to-rgba(map.get($palette, 100));
129
+ $on-lightest-surface: contrast-text($lightest-surface, $is-dark);
130
+ $lightest-surface-border: border-color($lightest-surface, $is-dark);
131
+
132
+ // Lighter Surface
133
+ $lighter-surface: oklch-to-rgba(map.get($palette, 200));
134
+ $on-lighter-surface: contrast-text($lighter-surface, $is-dark);
135
+ $lighter-surface-border: border-color($lighter-surface, $is-dark);
136
+
137
+ // Light Surface
138
+ $light-surface: oklch-to-rgba(map.get($palette, 300));
139
+ $on-light-surface: contrast-text($light-surface, $is-dark);
140
+ $light-surface-border: border-color($light-surface, $is-dark);
141
+
142
+ // Base Surface
143
+ $surface: oklch-to-rgba(map.get($palette, 500));
144
+ $on-surface: contrast-text($surface, $is-dark);
145
+ $surface-border: border-color($surface, $is-dark);
146
+
147
+ // Dark Surface
148
+ $dark-surface: oklch-to-rgba(map.get($palette, 600));
149
+ $on-dark-surface: contrast-text($dark-surface, $is-dark);
150
+ $dark-surface-border: border-color($dark-surface, $is-dark);
151
+
152
+ // Darker Surface
153
+ $darker-surface: oklch-to-rgba(map.get($palette, 700));
154
+ $on-darker-surface: contrast-text($darker-surface, $is-dark);
155
+ $darker-surface-border: border-color($darker-surface, $is-dark);
156
+
157
+ // Darkest Surface
158
+ $darkest-surface: oklch-to-rgba(map.get($palette, 800));
159
+ $on-darkest-surface: contrast-text($darkest-surface, $is-dark);
160
+ $darkest-surface-border: border-color($darkest-surface, $is-dark);
161
+
162
+ @return (
163
+ ax-sys-color-#{$name}-lightest-surface: $lightest-surface,
164
+ ax-sys-color-on-#{$name}-lightest-surface: $on-lightest-surface,
165
+ ax-sys-color-border-#{$name}-lightest-surface: $lightest-surface-border,
166
+
167
+ ax-sys-color-#{$name}-lighter-surface: $lighter-surface,
168
+ ax-sys-color-on-#{$name}-lighter-surface: $on-lighter-surface,
169
+ ax-sys-color-border-#{$name}-lighter-surface: $lighter-surface-border,
170
+
171
+ ax-sys-color-#{$name}-light-surface: $light-surface,
172
+ ax-sys-color-on-#{$name}-light-surface: $on-light-surface,
173
+ ax-sys-color-border-#{$name}-light-surface: $light-surface-border,
174
+
175
+ ax-sys-color-#{$name}-surface: $surface,
176
+ ax-sys-color-on-#{$name}-surface: $on-surface,
177
+ ax-sys-color-border-#{$name}-surface: $surface-border,
178
+
179
+ ax-sys-color-#{$name}-dark-surface: $dark-surface,
180
+ ax-sys-color-on-#{$name}-dark-surface: $on-dark-surface,
181
+ ax-sys-color-border-#{$name}-dark-surface: $dark-surface-border,
182
+
183
+ ax-sys-color-#{$name}-darker-surface: $darker-surface,
184
+ ax-sys-color-on-#{$name}-darker-surface: $on-darker-surface,
185
+ ax-sys-color-border-#{$name}-darker-surface: $darker-surface-border,
186
+
187
+ ax-sys-color-#{$name}-darkest-surface: $darkest-surface,
188
+ ax-sys-color-on-#{$name}-darkest-surface: $on-darkest-surface,
189
+ ax-sys-color-border-#{$name}-darkest-surface: $darkest-surface-border
190
+ );
191
+ }
192
+
193
+ @mixin generate-pallete-variables($colors, $theme-surfaces, $generate-color-range: true) {
194
+ /************** Light Palette **************/
195
+ :root,
196
+ .ax-light {
197
+ // Generate Base Surfaces
198
+ @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, false));
199
+ // Generate Ranges
200
+ @if $generate-color-range {
201
+ /* Ranges */
202
+ @each $name, $color in $colors {
203
+ @include convert-to-rgb(generate-color-ranges-variables($name, $color, false));
204
+ }
205
+ }
206
+ // Generate Colored Surfaces
207
+ @each $name, $color in $colors {
208
+ @include convert-to-rgb(generate-color-surfaces-variables($name, $color, false));
209
+ }
210
+ }
211
+
212
+ /************** Dark Palette **************/
213
+ .ax-dark {
214
+ // Generate Base Surfaces
215
+ @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, true));
216
+ // Generate Ranges
217
+ @if $generate-color-range {
218
+ /* Ranges */
219
+ @each $name, $color in $colors {
220
+ @include convert-to-rgb(generate-color-ranges-variables($name, $color, true));
221
+ }
222
+ }
223
+ // Generate Colored Surfaces
224
+ @each $name, $color in $colors {
225
+ @include convert-to-rgb(generate-color-surfaces-variables($name, $color, true));
226
+ }
227
+ }
228
+ }
@@ -0,0 +1,286 @@
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) {
137
+ @if ($lightness >= math.div(lightness-calc(math.div($hue, 1deg)), 100)) {
138
+ @return true;
139
+ } @else {
140
+ @return false;
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)) {
152
+ // $l: math.div(map.get($lightColors, 700), 2);
153
+ $l: 0.3;
154
+ } @else {
155
+ $l: 0.995;
156
+ }
157
+ } @else {
158
+ @if (is-dark-on-surface($lightness, $hue)) {
159
+ // $l: map.get($lightColors, 900);
160
+ $l: 0.3;
161
+ } @else {
162
+ $l: 0.995;
163
+ }
164
+ }
165
+ $oklch-color: oklch($l $chroma $hue);
166
+ @return color.to-gamut($oklch-color, $space: rgb, $method: local-minde);
167
+ }
168
+
169
+ @function border-color($color, $is-dark) {
170
+ @if $is-dark {
171
+ // Dark theme: lightening the border color for contrast
172
+ @return color.adjust($color, $lightness: 9%);
173
+ } @else {
174
+ // Light theme: darkening the border color for contrast
175
+ @return color.adjust($color, $lightness: -7%);
176
+ }
177
+ }
178
+
179
+ @function light-palette-generator($color) {
180
+ $shades: (
181
+ 50: 40,
182
+ 100: 90,
183
+ 200: 160,
184
+ 300: 270,
185
+ 400: 410,
186
+ 500: 500,
187
+ 600: 590,
188
+ 700: 700,
189
+ 800: 790,
190
+ 900: 860,
191
+ 950: 1060,
192
+ );
193
+ $palette: ();
194
+ $hue: color.channel($color, 'hue', $space: oklch);
195
+ $chroma: color.channel($color, 'chroma', $space: oklch);
196
+ $lightness: color.channel($color, 'lightness', $space: oklch);
197
+ $lightness: math.div($lightness, 100%);
198
+ @each $name, $shade in $shades {
199
+ $l: null;
200
+ @if (meta.type-of($shade) == number) {
201
+ @if ($shade <= 500) {
202
+ $l: math.div((-$shade + $shade * $lightness + 500), 500);
203
+ } @else {
204
+ $l: (1 - math.div(($shade - 500), 500)) * ($lightness - 0.3) + 0.3;
205
+ }
206
+ $palette: map.set($palette, $name, $l);
207
+ }
208
+ $oklch-color: oklch((map.get($palette, $name) * 100%) $chroma $hue);
209
+ $gamut-oklch: color.to-gamut($oklch-color, $space: rgb, $method: local-minde);
210
+ @if ($name==950) {
211
+ $gamut-oklch: color.scale($gamut-oklch, $chroma: -50%, $space: oklch);
212
+ }
213
+ @if ($name==900) {
214
+ $gamut-oklch: color.scale($gamut-oklch, $chroma: -33%, $space: oklch);
215
+ }
216
+ @if ($name==800) {
217
+ $gamut-oklch: color.scale($gamut-oklch, $chroma: -8%, $space: oklch);
218
+ }
219
+ $palette: map.set($palette, $name, $gamut-oklch);
220
+ }
221
+ @return $palette;
222
+ }
223
+
224
+ @function dark-palette-generator($color) {
225
+ $shades: (
226
+ 50: 40,
227
+ 100: 90,
228
+ 200: 160,
229
+ 300: 270,
230
+ 400: 410,
231
+ 500: 500,
232
+ 600: 590,
233
+ 700: 700,
234
+ 800: 790,
235
+ 900: 860,
236
+ 950: 1060,
237
+ );
238
+ $palette: ();
239
+ $hue: color.channel($color, 'hue', $space: oklch);
240
+ $chroma: color.channel($color, 'chroma', $space: oklch);
241
+ $lightness: color.channel($color, 'lightness', $space: oklch);
242
+ $lightness: math.div($lightness, 100%);
243
+ @each $name, $shade in $shades {
244
+ $l: null;
245
+ @if (meta.type-of($shade) == number) {
246
+ @if ($shade <= 700) {
247
+ $l: math.div((-$shade + $shade * $lightness + 700), 700);
248
+ } @else {
249
+ $l: (1 - math.div(($shade - 700), 700)) * ($lightness - 0.3) + 0.3;
250
+ }
251
+ $palette: map.set($palette, $name, $l);
252
+ }
253
+ $oklch-color: oklch((map.get($palette, $name) * 100%) $chroma $hue);
254
+ $gamut-oklch: color.to-gamut($oklch-color, $space: rgb, $method: local-minde);
255
+ $palette: map.set($palette, $name, $gamut-oklch);
256
+ }
257
+ @return $palette;
258
+ }
259
+
260
+ @function generate-color-ranges-variables($name, $color, $is-dark: false) {
261
+ $colors: ();
262
+ $light-shades: (50, 100, 200, 300, 400);
263
+ $dark-shades: (600, 700, 800, 900, 950);
264
+
265
+ @if $is-dark {
266
+ $palette: dark-palette-generator($color);
267
+ @each $shade, $color in $palette {
268
+ $colors: map.merge($colors, (ax-sys-color-#{$name}-#{$shade}: $color));
269
+ }
270
+ $colors: map.merge(
271
+ $colors,
272
+ (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))
273
+ );
274
+ } @else {
275
+ $palette: light-palette-generator($color);
276
+ @each $shade, $color in $palette {
277
+ $colors: map.merge($colors, (ax-sys-color-#{$name}-#{$shade}: $color));
278
+ }
279
+ $colors: map.merge(
280
+ $colors,
281
+ (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))
282
+ );
283
+ }
284
+
285
+ @return $colors;
286
+ }
@@ -0,0 +1,2 @@
1
+ @forward './theme-generator';
2
+ @forward './utils';
@@ -0,0 +1,8 @@
1
+ $theme-colors: (
2
+ 'primary': #3b82f6,
3
+ 'secondary': #64748b,
4
+ 'success': #22c55e,
5
+ 'warning': #f59e0b,
6
+ 'danger': #f43f5e,
7
+ 'ghost': #71717a,
8
+ ) !default;
@@ -0,0 +1 @@
1
+ $theme-looks: 'solid', 'outline', 'twotone', 'blank', 'link' !default;
@@ -0,0 +1,2 @@
1
+ @forward './colors';
2
+ @forward './looks';