@acorex/styles 19.10.0-next.0 → 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 (38) hide show
  1. package/base/index.scss +22 -0
  2. package/{src/shared → components}/_drop-down.scss +2 -2
  3. package/{src/shared → components}/_editor-container.scss +2 -18
  4. package/{src/shared/_utils.scss → components/_uploader.scss} +11 -46
  5. package/{src/shared → components}/index.scss +3 -6
  6. package/index.scss +5 -7
  7. package/package.json +1 -1
  8. package/tailwind-base.js +203 -180
  9. package/themes/default.scss +24 -237
  10. package/utils/_theme-generator.scss +228 -0
  11. package/utils/_utils.scss +286 -0
  12. package/utils/index.scss +2 -0
  13. package/variables/_colors.scss +8 -0
  14. package/variables/_looks.scss +1 -0
  15. package/variables/index.scss +2 -0
  16. package/index.css +0 -988
  17. package/index.min.css +0 -1
  18. package/src/base/index.scss +0 -11
  19. package/src/shared/_inputs.scss +0 -0
  20. package/src/utility/index.scss +0 -4
  21. package/src/variables/_colors.scss +0 -2
  22. package/src/variables/_degrees.scss +0 -1
  23. package/src/variables/index.scss +0 -2
  24. package/themes/default.css +0 -1
  25. package/themes/test.scss +0 -237
  26. /package/{src/base → base}/_preflight.scss +0 -0
  27. /package/{src/shared → components}/_action-item.scss +0 -0
  28. /package/{src/shared → components}/_actionsheet.scss +0 -0
  29. /package/{src/shared → components}/_check-box.scss +0 -0
  30. /package/{src/shared → components}/_general-button.scss +0 -0
  31. /package/{src/shared → components}/_list.scss +0 -0
  32. /package/{src/shared → components}/_radio.scss +0 -0
  33. /package/{src/shared → components}/_ripple.scss +0 -0
  34. /package/{src/shared → components}/_table.scss +0 -0
  35. /package/{src/mixins → mixins}/_look.scss +0 -0
  36. /package/{src/mixins → mixins}/_media.scss +0 -0
  37. /package/{src/mixins → mixins}/_util.scss +0 -0
  38. /package/{src/mixins → mixins}/index.scss +0 -0
@@ -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';