@paraxe/design 1.0.0

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.
@@ -0,0 +1,45 @@
1
+ /* ==========================================================================
2
+ @loba/design — themes/orchid.css
3
+ Creative — Vibrant orchid (#bd4fbc) on midnight purple (#140f2d)
4
+ LAYER 2 — COLOR TOKENS (consumes tokens.css)
5
+ ========================================================================== */
6
+
7
+ @import "./default.css";
8
+
9
+ :root {
10
+ --brand-primary: #bd4fbc;
11
+ --brand-primary-hover: #a044a0;
12
+ --brand-primary-active: #883a88;
13
+ --brand-primary-light: #d68ad5;
14
+ --brand-primary-muted: color-mix(in srgb, #bd4fbc 15%, transparent);
15
+ --brand-glow: color-mix(in srgb, #bd4fbc 25%, transparent);
16
+ --text-on-brand: #ffffff;
17
+
18
+ --background-primary: #140f2d;
19
+ --background-secondary: color-mix(in srgb, #140f2d 92%, white);
20
+
21
+ --surface-base: color-mix(in srgb, #140f2d 92%, white);
22
+ --surface-raised: color-mix(in srgb, #140f2d 84%, white);
23
+ --surface-card: color-mix(in srgb, #140f2d 88%, white);
24
+ --surface-hover: color-mix(in srgb, #140f2d 84%, white);
25
+
26
+ --text-primary: color-mix(in srgb, #140f2d 4%, white);
27
+ --text-secondary: color-mix(in srgb, #140f2d 40%, white);
28
+ --text-muted: color-mix(in srgb, #140f2d 60%, white);
29
+ --text-inverse: color-mix(in srgb, white 96%, black);
30
+ }
31
+
32
+ [data-theme="light"] {
33
+ --background-primary: #ffffff;
34
+ --background-secondary: color-mix(in srgb, #ffffff 95%, black);
35
+
36
+ --surface-base: color-mix(in srgb, #ffffff 93%, black);
37
+ --surface-raised: color-mix(in srgb, #ffffff 86%, black);
38
+ --surface-card: color-mix(in srgb, #ffffff 97%, black);
39
+ --surface-hover: color-mix(in srgb, #ffffff 90%, black);
40
+
41
+ --text-primary: color-mix(in srgb, black 92%, white);
42
+ --text-secondary: color-mix(in srgb, black 70%, white);
43
+ --text-muted: color-mix(in srgb, black 55%, white);
44
+ --text-inverse: color-mix(in srgb, white 96%, black);
45
+ }
@@ -0,0 +1,45 @@
1
+ /* ==========================================================================
2
+ @loba/design — themes/sand.css
3
+ Luxury — Soft gold (#e1ca96) on rich espresso (#1f1b16)
4
+ LAYER 2 — COLOR TOKENS (consumes tokens.css)
5
+ ========================================================================== */
6
+
7
+ @import "./default.css";
8
+
9
+ :root {
10
+ --brand-primary: #e1ca96;
11
+ --brand-primary-hover: #d4ba7e;
12
+ --brand-primary-active: #c7aa66;
13
+ --brand-primary-light: #efe0be;
14
+ --brand-primary-muted: color-mix(in srgb, #e1ca96 15%, transparent);
15
+ --brand-glow: color-mix(in srgb, #e1ca96 25%, transparent);
16
+ --text-on-brand: #1f1b16;
17
+
18
+ --background-primary: #1f1b16;
19
+ --background-secondary: color-mix(in srgb, #1f1b16 92%, white);
20
+
21
+ --surface-base: color-mix(in srgb, #1f1b16 92%, white);
22
+ --surface-raised: color-mix(in srgb, #1f1b16 84%, white);
23
+ --surface-card: color-mix(in srgb, #1f1b16 88%, white);
24
+ --surface-hover: color-mix(in srgb, #1f1b16 84%, white);
25
+
26
+ --text-primary: color-mix(in srgb, #1f1b16 4%, white);
27
+ --text-secondary: color-mix(in srgb, #1f1b16 40%, white);
28
+ --text-muted: color-mix(in srgb, #1f1b16 60%, white);
29
+ --text-inverse: color-mix(in srgb, white 96%, black);
30
+ }
31
+
32
+ [data-theme="light"] {
33
+ --background-primary: #ffffff;
34
+ --background-secondary: color-mix(in srgb, #ffffff 95%, black);
35
+
36
+ --surface-base: color-mix(in srgb, #ffffff 93%, black);
37
+ --surface-raised: color-mix(in srgb, #ffffff 86%, black);
38
+ --surface-card: color-mix(in srgb, #ffffff 97%, black);
39
+ --surface-hover: color-mix(in srgb, #ffffff 90%, black);
40
+
41
+ --text-primary: color-mix(in srgb, black 92%, white);
42
+ --text-secondary: color-mix(in srgb, black 70%, white);
43
+ --text-muted: color-mix(in srgb, black 55%, white);
44
+ --text-inverse: color-mix(in srgb, white 96%, black);
45
+ }