@amulet-laboratories/hex 0.3.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.
- package/LICENSE +21 -0
- package/README.md +120 -0
- package/dist/aldricpace.css +5 -0
- package/dist/briarcove.css +5 -0
- package/dist/briarcovelib.css +5 -0
- package/dist/compass.css +5 -0
- package/dist/duskline.css +5 -0
- package/dist/forge.css +5 -0
- package/dist/garden.css +5 -0
- package/dist/greyline.css +5 -0
- package/dist/hex.css +5 -0
- package/dist/kbcv.css +5 -0
- package/dist/lanternhouse.css +5 -0
- package/dist/marenlys.css +5 -0
- package/dist/quizbit.css +5 -0
- package/dist/saltsignal.css +5 -0
- package/dist/scoped.css +1 -0
- package/dist/spacewizard.css +5 -0
- package/dist/tidemark.css +5 -0
- package/dist/undertow.css +5 -0
- package/dist/vscode.css +5 -0
- package/package.json +119 -0
- package/src/index.css +10 -0
- package/src/scoped/bridge.css +47 -0
- package/src/scoped/index.css +51 -0
- package/src/scoped/themes/aldricpace.css +115 -0
- package/src/scoped/themes/briarcove.css +123 -0
- package/src/scoped/themes/briarcovelib.css +111 -0
- package/src/scoped/themes/compass.css +111 -0
- package/src/scoped/themes/duskline.css +117 -0
- package/src/scoped/themes/forge.css +123 -0
- package/src/scoped/themes/garden.css +123 -0
- package/src/scoped/themes/greyline.css +116 -0
- package/src/scoped/themes/kbcv.css +111 -0
- package/src/scoped/themes/lanternhouse.css +111 -0
- package/src/scoped/themes/marenlys.css +112 -0
- package/src/scoped/themes/quizbit.css +101 -0
- package/src/scoped/themes/saltsignal.css +114 -0
- package/src/scoped/themes/spacewizard.css +115 -0
- package/src/scoped/themes/tidemark.css +119 -0
- package/src/scoped/themes/undertow.css +113 -0
- package/src/scoped/themes/vscode.css +230 -0
- package/src/scoped/tokens.css +21 -0
- package/src/shared/a11y.css +175 -0
- package/src/shared/components/core.css +1654 -0
- package/src/shared/components/data.css +418 -0
- package/src/shared/components/editor.css +358 -0
- package/src/shared/components/extras.css +897 -0
- package/src/shared/components/layout.css +663 -0
- package/src/shared/components/lists.css +278 -0
- package/src/shared/components/menus.css +377 -0
- package/src/shared/components/nav.css +943 -0
- package/src/shared/components/prose.css +302 -0
- package/src/shared/components/shell.css +528 -0
- package/src/shared/components/spatial.css +184 -0
- package/src/shared/components/temporal.css +191 -0
- package/src/shared/components/web.css +1689 -0
- package/src/shared/rig-defaults.css +121 -0
- package/src/shared/scroll-animations.css +176 -0
- package/src/shared/tokens.css +125 -0
- package/src/shared/utilities.css +204 -0
- package/src/themes/aldricpace/base.css +114 -0
- package/src/themes/aldricpace/components.css +22 -0
- package/src/themes/aldricpace/domains.css +19 -0
- package/src/themes/aldricpace/index.css +6 -0
- package/src/themes/aldricpace/tokens.css +169 -0
- package/src/themes/andrewpassanisi/base.css +192 -0
- package/src/themes/andrewpassanisi/index.css +11 -0
- package/src/themes/andrewpassanisi/tokens.css +136 -0
- package/src/themes/briarcove/base.css +170 -0
- package/src/themes/briarcove/components.css +27 -0
- package/src/themes/briarcove/domains.css +72 -0
- package/src/themes/briarcove/index.css +6 -0
- package/src/themes/briarcove/tokens.css +179 -0
- package/src/themes/briarcovelib/base.css +111 -0
- package/src/themes/briarcovelib/components.css +22 -0
- package/src/themes/briarcovelib/domains.css +19 -0
- package/src/themes/briarcovelib/index.css +6 -0
- package/src/themes/briarcovelib/tokens.css +167 -0
- package/src/themes/compass/base.css +112 -0
- package/src/themes/compass/components.css +22 -0
- package/src/themes/compass/domains.css +19 -0
- package/src/themes/compass/index.css +6 -0
- package/src/themes/compass/tokens.css +167 -0
- package/src/themes/duskline/base.css +167 -0
- package/src/themes/duskline/components.css +27 -0
- package/src/themes/duskline/domains.css +72 -0
- package/src/themes/duskline/index.css +6 -0
- package/src/themes/duskline/tokens.css +171 -0
- package/src/themes/forge/base.css +165 -0
- package/src/themes/forge/components.css +24 -0
- package/src/themes/forge/domains.css +72 -0
- package/src/themes/forge/index.css +6 -0
- package/src/themes/forge/tokens.css +178 -0
- package/src/themes/garden/base.css +167 -0
- package/src/themes/garden/components.css +27 -0
- package/src/themes/garden/domains.css +72 -0
- package/src/themes/garden/index.css +6 -0
- package/src/themes/garden/tokens.css +178 -0
- package/src/themes/greyline/base.css +165 -0
- package/src/themes/greyline/components.css +24 -0
- package/src/themes/greyline/domains.css +70 -0
- package/src/themes/greyline/index.css +6 -0
- package/src/themes/greyline/tokens.css +161 -0
- package/src/themes/kbcv/base.css +112 -0
- package/src/themes/kbcv/components.css +22 -0
- package/src/themes/kbcv/domains.css +19 -0
- package/src/themes/kbcv/index.css +6 -0
- package/src/themes/kbcv/tokens.css +167 -0
- package/src/themes/lanternhouse/base.css +170 -0
- package/src/themes/lanternhouse/components.css +27 -0
- package/src/themes/lanternhouse/domains.css +72 -0
- package/src/themes/lanternhouse/index.css +6 -0
- package/src/themes/lanternhouse/tokens.css +167 -0
- package/src/themes/marenlys/base.css +181 -0
- package/src/themes/marenlys/components.css +27 -0
- package/src/themes/marenlys/domains.css +72 -0
- package/src/themes/marenlys/index.css +6 -0
- package/src/themes/marenlys/tokens.css +167 -0
- package/src/themes/quizbit/base.css +120 -0
- package/src/themes/quizbit/components.css +27 -0
- package/src/themes/quizbit/domains.css +7 -0
- package/src/themes/quizbit/index.css +6 -0
- package/src/themes/quizbit/tokens.css +132 -0
- package/src/themes/saltsignal/base.css +168 -0
- package/src/themes/saltsignal/components.css +27 -0
- package/src/themes/saltsignal/domains.css +72 -0
- package/src/themes/saltsignal/index.css +6 -0
- package/src/themes/saltsignal/tokens.css +170 -0
- package/src/themes/spacewizard/base.css +165 -0
- package/src/themes/spacewizard/components.css +24 -0
- package/src/themes/spacewizard/domains.css +70 -0
- package/src/themes/spacewizard/index.css +6 -0
- package/src/themes/spacewizard/tokens.css +160 -0
- package/src/themes/tidemark/base.css +169 -0
- package/src/themes/tidemark/components.css +27 -0
- package/src/themes/tidemark/domains.css +72 -0
- package/src/themes/tidemark/index.css +6 -0
- package/src/themes/tidemark/tokens.css +175 -0
- package/src/themes/undertow/base.css +114 -0
- package/src/themes/undertow/components.css +22 -0
- package/src/themes/undertow/domains.css +19 -0
- package/src/themes/undertow/index.css +6 -0
- package/src/themes/undertow/tokens.css +171 -0
- package/src/themes/vscode/base.css +104 -0
- package/src/themes/vscode/components.css +24 -0
- package/src/themes/vscode/domains.css +132 -0
- package/src/themes/vscode/index.css +13 -0
- package/src/themes/vscode/tokens.css +346 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/* Hex — garden (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Garden Design Tokens
|
|
4
|
+
* Warm botanical palette derived from Garden Estudio's brand identity.
|
|
5
|
+
* Deep purple background, warm cream text, rose accents, botanical greens.
|
|
6
|
+
* Dark mode marketing theme — suited for portfolio and showcase sites.
|
|
7
|
+
*
|
|
8
|
+
* Full palette (13 swatch colors):
|
|
9
|
+
* #331F3C deep purple — background
|
|
10
|
+
* #AC3954 dark rose — secondary, borders
|
|
11
|
+
* #EB4963 amulet rose — primary brand
|
|
12
|
+
* #F16874 warm pink — accent
|
|
13
|
+
* #F58384 coral pink — destructive
|
|
14
|
+
* #F99C94 warm salmon — status
|
|
15
|
+
* #F9B0A2 light salmon — muted foreground
|
|
16
|
+
* #F8C7B3 apricot — soft accent
|
|
17
|
+
* #F7D7B9 peach — warning
|
|
18
|
+
* #F5E3BC warm cream — foreground text
|
|
19
|
+
* #EDECC0 pale chartreuse — subtle highlights
|
|
20
|
+
* #D8E8C3 sage green — info
|
|
21
|
+
* #CBE6C5 mint green — success
|
|
22
|
+
*
|
|
23
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
24
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
[data-hex-theme='garden'] {
|
|
28
|
+
--color-background: #331f3c;
|
|
29
|
+
--color-foreground: #f5e3bc;
|
|
30
|
+
--color-card: #eb4963;
|
|
31
|
+
--color-card-foreground: #f5e3bc;
|
|
32
|
+
--color-popover: #331f3c;
|
|
33
|
+
--color-popover-foreground: #f5e3bc;
|
|
34
|
+
--color-primary: #eb4963;
|
|
35
|
+
--color-primary-foreground: #f5e3bc;
|
|
36
|
+
--color-secondary: #ac3954;
|
|
37
|
+
--color-secondary-foreground: #f5e3bc;
|
|
38
|
+
--color-muted: #ac3954;
|
|
39
|
+
--color-muted-foreground: #f9b0a2;
|
|
40
|
+
--color-accent: #f16874;
|
|
41
|
+
--color-accent-foreground: #331f3c;
|
|
42
|
+
--color-destructive: #f58384;
|
|
43
|
+
--color-destructive-foreground: #331f3c;
|
|
44
|
+
--color-success: #cbe6c5;
|
|
45
|
+
--color-warning: #f7d7b9;
|
|
46
|
+
--color-info: #d8e8c3;
|
|
47
|
+
--color-border: #ac3954;
|
|
48
|
+
--color-input: #ac3954;
|
|
49
|
+
--color-ring: #eb4963;
|
|
50
|
+
--font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', ui-monospace, monospace;
|
|
51
|
+
--font-sans: 'Roboto Slab', 'Georgia', 'Times New Roman', serif;
|
|
52
|
+
--font-serif: 'Roboto Slab', 'Georgia', 'Times New Roman', serif;
|
|
53
|
+
--font-size-2xs: 0.625rem;
|
|
54
|
+
--font-size-2xs--line-height: 1.25;
|
|
55
|
+
--font-size-xs: 0.75rem;
|
|
56
|
+
--font-size-xs--line-height: 1.5;
|
|
57
|
+
--font-size-sm: 0.8125rem;
|
|
58
|
+
--font-size-sm--line-height: 1.5;
|
|
59
|
+
--font-size-base: 0.875rem;
|
|
60
|
+
--font-size-base--line-height: 1.5;
|
|
61
|
+
--font-size-lg: 1.125rem;
|
|
62
|
+
--font-size-lg--line-height: 1.25;
|
|
63
|
+
--font-size-xl: 1.25rem;
|
|
64
|
+
--font-size-xl--line-height: 1.25;
|
|
65
|
+
--font-display: var(--font-sans);
|
|
66
|
+
--radius: 7px;
|
|
67
|
+
--background: #331f3c;
|
|
68
|
+
--foreground: #f5e3bc;
|
|
69
|
+
--card: #eb4963;
|
|
70
|
+
--card-foreground: #f5e3bc;
|
|
71
|
+
--popover: #331f3c;
|
|
72
|
+
--popover-foreground: #f5e3bc;
|
|
73
|
+
--primary: #eb4963;
|
|
74
|
+
--primary-foreground: #f5e3bc;
|
|
75
|
+
--secondary: #ac3954;
|
|
76
|
+
--secondary-foreground: #f5e3bc;
|
|
77
|
+
--muted: #ac3954;
|
|
78
|
+
--muted-foreground: #f9b0a2;
|
|
79
|
+
--accent: #f16874;
|
|
80
|
+
--accent-foreground: #331f3c;
|
|
81
|
+
--destructive: #f58384;
|
|
82
|
+
--destructive-foreground: #331f3c;
|
|
83
|
+
--success: #cbe6c5;
|
|
84
|
+
--warning: #f7d7b9;
|
|
85
|
+
--info: #d8e8c3;
|
|
86
|
+
--border: #ac3954;
|
|
87
|
+
--input: #ac3954;
|
|
88
|
+
--ring: #eb4963;
|
|
89
|
+
--text-2xs: 0.625rem;
|
|
90
|
+
--text-xs: 0.75rem;
|
|
91
|
+
--text-sm: 0.8125rem;
|
|
92
|
+
--text-base: 0.875rem;
|
|
93
|
+
--text-lg: 1.125rem;
|
|
94
|
+
--text-xl: 1.25rem;
|
|
95
|
+
--leading-tight: 1.25;
|
|
96
|
+
--leading-snug: 1.375;
|
|
97
|
+
--leading-normal: 1.5;
|
|
98
|
+
--leading-relaxed: 1.625;
|
|
99
|
+
--weight-normal: 400;
|
|
100
|
+
--weight-medium: 500;
|
|
101
|
+
--weight-semibold: 600;
|
|
102
|
+
--weight-bold: 700;
|
|
103
|
+
--tracking-tight: -0.01em;
|
|
104
|
+
--tracking-normal: 0;
|
|
105
|
+
--tracking-wide: 0.05em;
|
|
106
|
+
--tracking-wider: 0.08em;
|
|
107
|
+
--garden-deep-purple: #331f3c;
|
|
108
|
+
--garden-dark-rose: #ac3954;
|
|
109
|
+
--garden-rose: #eb4963;
|
|
110
|
+
--garden-warm-pink: #f16874;
|
|
111
|
+
--garden-coral: #f58384;
|
|
112
|
+
--garden-warm-salmon: #f99c94;
|
|
113
|
+
--garden-light-salmon: #f9b0a2;
|
|
114
|
+
--garden-apricot: #f8c7b3;
|
|
115
|
+
--garden-peach: #f7d7b9;
|
|
116
|
+
--garden-cream: #f5e3bc;
|
|
117
|
+
--garden-chartreuse: #edecc0;
|
|
118
|
+
--garden-sage: #d8e8c3;
|
|
119
|
+
--garden-mint: #cbe6c5;
|
|
120
|
+
--rig-button-hover-bg: #ac3954;
|
|
121
|
+
--rig-scrollbar-thumb: rgba(245, 227, 188, 0.18);
|
|
122
|
+
--rig-scrollbar-thumb-hover: rgba(245, 227, 188, 0.35);
|
|
123
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
/* Hex — greyline (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Greyline Design Tokens
|
|
4
|
+
* True achromatic monochrome. Grayscale newspaper / monochrome monitor.
|
|
5
|
+
* Dark mode corporate/consultancy theme — suited for professional services.
|
|
6
|
+
* Every color is pure gray (h=0, s=0) — no blue, no warm tint.
|
|
7
|
+
*
|
|
8
|
+
* Palette:
|
|
9
|
+
* #0c0c0c near-black — background
|
|
10
|
+
* #141414 charcoal — card, popover
|
|
11
|
+
* #1c1c1c dark gray — secondary, muted
|
|
12
|
+
* #2a2a2a border gray — borders
|
|
13
|
+
* #606060 medium gray — muted foreground
|
|
14
|
+
* #9a9a9a silver — primary brand
|
|
15
|
+
* #b5b5b5 light silver — accent
|
|
16
|
+
* #e8e8e8 near-white — foreground text
|
|
17
|
+
* #f87171 red — destructive
|
|
18
|
+
* #fbbf24 amber — warning
|
|
19
|
+
* #34d399 emerald — success
|
|
20
|
+
* #60a5fa blue — info
|
|
21
|
+
*
|
|
22
|
+
* @theme feeds Tailwind v4 utility generation.
|
|
23
|
+
* :root provides standalone CSS custom property access.
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
[data-hex-theme='greyline'] {
|
|
27
|
+
--color-background: #0c0c0c;
|
|
28
|
+
--color-foreground: #e8e8e8;
|
|
29
|
+
--color-card: #141414;
|
|
30
|
+
--color-card-foreground: #e8e8e8;
|
|
31
|
+
--color-popover: #141414;
|
|
32
|
+
--color-popover-foreground: #e8e8e8;
|
|
33
|
+
--color-primary: #9a9a9a;
|
|
34
|
+
--color-primary-foreground: #0c0c0c;
|
|
35
|
+
--color-secondary: #1c1c1c;
|
|
36
|
+
--color-secondary-foreground: #e8e8e8;
|
|
37
|
+
--color-muted: #1c1c1c;
|
|
38
|
+
--color-muted-foreground: #606060;
|
|
39
|
+
--color-accent: #b5b5b5;
|
|
40
|
+
--color-accent-foreground: #0c0c0c;
|
|
41
|
+
--color-destructive: #f87171;
|
|
42
|
+
--color-destructive-foreground: #0c0c0c;
|
|
43
|
+
--color-success: #34d399;
|
|
44
|
+
--color-warning: #fbbf24;
|
|
45
|
+
--color-info: #60a5fa;
|
|
46
|
+
--color-border: #2a2a2a;
|
|
47
|
+
--color-input: #2a2a2a;
|
|
48
|
+
--color-ring: #9a9a9a;
|
|
49
|
+
--font-mono: 'IBM Plex Mono', 'SF Mono', 'JetBrains Mono', ui-monospace, monospace;
|
|
50
|
+
--font-sans: 'IBM Plex Sans', 'Inter', system-ui, sans-serif;
|
|
51
|
+
--font-size-2xs: 0.625rem;
|
|
52
|
+
--font-size-2xs--line-height: 1.25;
|
|
53
|
+
--font-size-xs: 0.75rem;
|
|
54
|
+
--font-size-xs--line-height: 1.5;
|
|
55
|
+
--font-size-sm: 0.8125rem;
|
|
56
|
+
--font-size-sm--line-height: 1.5;
|
|
57
|
+
--font-size-base: 0.875rem;
|
|
58
|
+
--font-size-base--line-height: 1.5;
|
|
59
|
+
--font-size-lg: 1.125rem;
|
|
60
|
+
--font-size-lg--line-height: 1.25;
|
|
61
|
+
--font-size-xl: 1.25rem;
|
|
62
|
+
--font-size-xl--line-height: 1.25;
|
|
63
|
+
--font-display: var(--font-sans);
|
|
64
|
+
--radius: 4px;
|
|
65
|
+
--background: #0c0c0c;
|
|
66
|
+
--foreground: #e8e8e8;
|
|
67
|
+
--card: #141414;
|
|
68
|
+
--card-foreground: #e8e8e8;
|
|
69
|
+
--popover: #141414;
|
|
70
|
+
--popover-foreground: #e8e8e8;
|
|
71
|
+
--primary: #9a9a9a;
|
|
72
|
+
--primary-foreground: #0c0c0c;
|
|
73
|
+
--secondary: #1c1c1c;
|
|
74
|
+
--secondary-foreground: #e8e8e8;
|
|
75
|
+
--muted: #1c1c1c;
|
|
76
|
+
--muted-foreground: #606060;
|
|
77
|
+
--accent: #b5b5b5;
|
|
78
|
+
--accent-foreground: #0c0c0c;
|
|
79
|
+
--destructive: #f87171;
|
|
80
|
+
--destructive-foreground: #0c0c0c;
|
|
81
|
+
--success: #34d399;
|
|
82
|
+
--warning: #fbbf24;
|
|
83
|
+
--info: #60a5fa;
|
|
84
|
+
--border: #2a2a2a;
|
|
85
|
+
--input: #2a2a2a;
|
|
86
|
+
--ring: #9a9a9a;
|
|
87
|
+
--text-2xs: 0.625rem;
|
|
88
|
+
--text-xs: 0.75rem;
|
|
89
|
+
--text-sm: 0.8125rem;
|
|
90
|
+
--text-base: 0.875rem;
|
|
91
|
+
--text-lg: 1.125rem;
|
|
92
|
+
--text-xl: 1.25rem;
|
|
93
|
+
--leading-tight: 1.25;
|
|
94
|
+
--leading-snug: 1.375;
|
|
95
|
+
--leading-normal: 1.5;
|
|
96
|
+
--leading-relaxed: 1.625;
|
|
97
|
+
--weight-normal: 400;
|
|
98
|
+
--weight-medium: 500;
|
|
99
|
+
--weight-semibold: 600;
|
|
100
|
+
--weight-bold: 700;
|
|
101
|
+
--tracking-tight: -0.01em;
|
|
102
|
+
--tracking-normal: 0;
|
|
103
|
+
--tracking-wide: 0.05em;
|
|
104
|
+
--tracking-wider: 0.08em;
|
|
105
|
+
--gl-black: #0c0c0c;
|
|
106
|
+
--gl-charcoal: #141414;
|
|
107
|
+
--gl-surface: #1c1c1c;
|
|
108
|
+
--gl-border: #2a2a2a;
|
|
109
|
+
--gl-muted: #606060;
|
|
110
|
+
--gl-silver: #9a9a9a;
|
|
111
|
+
--gl-silver-light: #b5b5b5;
|
|
112
|
+
--gl-white: #e8e8e8;
|
|
113
|
+
--rig-button-hover-bg: #1c1c1c;
|
|
114
|
+
--rig-scrollbar-thumb: rgba(232, 232, 232, 0.12);
|
|
115
|
+
--rig-scrollbar-thumb-hover: rgba(232, 232, 232, 0.25);
|
|
116
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* Hex — kbcv (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — KBCV Design Tokens
|
|
4
|
+
* Community radio station. Warm neutral with analog character.
|
|
5
|
+
* Parchment background, broadcast red, dial green accents.
|
|
6
|
+
*
|
|
7
|
+
* Full palette (7 swatch colors):
|
|
8
|
+
* #F7F3EE parchment — background
|
|
9
|
+
* #EDEAE4 oatmeal — card
|
|
10
|
+
* #DDD7CE kraft — secondary, muted
|
|
11
|
+
* #2A2521 espresso — foreground text
|
|
12
|
+
* #706459 walnut — muted foreground
|
|
13
|
+
* #B83232 broadcast red — primary, ring
|
|
14
|
+
* #2D6A4F dial green — accent
|
|
15
|
+
*
|
|
16
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
17
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
[data-hex-theme='kbcv'] {
|
|
21
|
+
--color-background: #f7f3ee;
|
|
22
|
+
--color-foreground: #2a2521;
|
|
23
|
+
--color-card: #edeae4;
|
|
24
|
+
--color-card-foreground: #2a2521;
|
|
25
|
+
--color-popover: #ffffff;
|
|
26
|
+
--color-popover-foreground: #2a2521;
|
|
27
|
+
--color-primary: #b83232;
|
|
28
|
+
--color-primary-foreground: #fffdf8;
|
|
29
|
+
--color-secondary: #ddd7ce;
|
|
30
|
+
--color-secondary-foreground: #2a2521;
|
|
31
|
+
--color-muted: #ddd7ce;
|
|
32
|
+
--color-muted-foreground: #706459;
|
|
33
|
+
--color-accent: #2d6a4f;
|
|
34
|
+
--color-accent-foreground: #fffdf8;
|
|
35
|
+
--color-destructive: #b83232;
|
|
36
|
+
--color-destructive-foreground: #fffdf8;
|
|
37
|
+
--color-success: #2d6a4f;
|
|
38
|
+
--color-warning: #d4a030;
|
|
39
|
+
--color-info: #4a6a8a;
|
|
40
|
+
--color-border: #cbc4ba;
|
|
41
|
+
--color-input: #cbc4ba;
|
|
42
|
+
--color-ring: #b83232;
|
|
43
|
+
--font-sans: 'Chivo', 'Inter', system-ui, sans-serif;
|
|
44
|
+
--font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
|
|
45
|
+
--font-serif: 'Newsreader', Georgia, serif;
|
|
46
|
+
--font-heading: 'Chivo', 'Inter', system-ui, sans-serif;
|
|
47
|
+
--font-size-2xs: 0.625rem;
|
|
48
|
+
--font-size-2xs--line-height: 1.25;
|
|
49
|
+
--font-size-xs: 0.75rem;
|
|
50
|
+
--font-size-xs--line-height: 1.5;
|
|
51
|
+
--font-size-sm: 0.8125rem;
|
|
52
|
+
--font-size-sm--line-height: 1.5;
|
|
53
|
+
--font-size-base: 0.875rem;
|
|
54
|
+
--font-size-base--line-height: 1.5;
|
|
55
|
+
--font-size-lg: 1.125rem;
|
|
56
|
+
--font-size-lg--line-height: 1.25;
|
|
57
|
+
--font-size-xl: 1.25rem;
|
|
58
|
+
--font-size-xl--line-height: 1.25;
|
|
59
|
+
--font-display: var(--font-sans);
|
|
60
|
+
--radius: 6px;
|
|
61
|
+
--background: #f7f3ee;
|
|
62
|
+
--foreground: #2a2521;
|
|
63
|
+
--card: #edeae4;
|
|
64
|
+
--card-foreground: #2a2521;
|
|
65
|
+
--popover: #ffffff;
|
|
66
|
+
--popover-foreground: #2a2521;
|
|
67
|
+
--primary: #b83232;
|
|
68
|
+
--primary-foreground: #fffdf8;
|
|
69
|
+
--secondary: #ddd7ce;
|
|
70
|
+
--secondary-foreground: #2a2521;
|
|
71
|
+
--muted: #ddd7ce;
|
|
72
|
+
--muted-foreground: #706459;
|
|
73
|
+
--accent: #2d6a4f;
|
|
74
|
+
--accent-foreground: #fffdf8;
|
|
75
|
+
--destructive: #b83232;
|
|
76
|
+
--destructive-foreground: #fffdf8;
|
|
77
|
+
--success: #2d6a4f;
|
|
78
|
+
--warning: #d4a030;
|
|
79
|
+
--info: #4a6a8a;
|
|
80
|
+
--border: #cbc4ba;
|
|
81
|
+
--input: #cbc4ba;
|
|
82
|
+
--ring: #b83232;
|
|
83
|
+
--text-2xs: 0.625rem;
|
|
84
|
+
--text-xs: 0.75rem;
|
|
85
|
+
--text-sm: 0.8125rem;
|
|
86
|
+
--text-base: 0.875rem;
|
|
87
|
+
--text-lg: 1.125rem;
|
|
88
|
+
--text-xl: 1.25rem;
|
|
89
|
+
--leading-tight: 1.25;
|
|
90
|
+
--leading-snug: 1.375;
|
|
91
|
+
--leading-normal: 1.5;
|
|
92
|
+
--leading-relaxed: 1.625;
|
|
93
|
+
--weight-normal: 400;
|
|
94
|
+
--weight-medium: 500;
|
|
95
|
+
--weight-semibold: 600;
|
|
96
|
+
--weight-bold: 700;
|
|
97
|
+
--tracking-tight: -0.01em;
|
|
98
|
+
--tracking-normal: 0;
|
|
99
|
+
--tracking-wide: 0.05em;
|
|
100
|
+
--tracking-wider: 0.08em;
|
|
101
|
+
--kbcv-parchment: #f7f3ee;
|
|
102
|
+
--kbcv-oatmeal: #edeae4;
|
|
103
|
+
--kbcv-kraft: #ddd7ce;
|
|
104
|
+
--kbcv-espresso: #2a2521;
|
|
105
|
+
--kbcv-walnut: #706459;
|
|
106
|
+
--kbcv-red: #b83232;
|
|
107
|
+
--kbcv-green: #2d6a4f;
|
|
108
|
+
--rig-button-hover-bg: #ddd7ce;
|
|
109
|
+
--rig-scrollbar-thumb: rgba(42, 37, 33, 0.12);
|
|
110
|
+
--rig-scrollbar-thumb-hover: rgba(42, 37, 33, 0.25);
|
|
111
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* Hex — lanternhouse (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Lanternhouse Design Tokens
|
|
4
|
+
* Evening observatory. Soft violet glow on deep plum.
|
|
5
|
+
* Boutique hospitality theme with lavender accent on dark plum canvas.
|
|
6
|
+
*
|
|
7
|
+
* Full palette (7 swatch colors):
|
|
8
|
+
* #110E18 dark plum — background
|
|
9
|
+
* #1A1624 deep violet — card, popover
|
|
10
|
+
* #221E30 muted plum — secondary, muted
|
|
11
|
+
* #E4DFF0 lavender white — foreground text
|
|
12
|
+
* #8A80A0 dusty violet — muted foreground
|
|
13
|
+
* #7A8EB8 cool blue — info
|
|
14
|
+
* #A87BD4 soft lavender — primary, accent (h≈280)
|
|
15
|
+
*
|
|
16
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
17
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
[data-hex-theme='lanternhouse'] {
|
|
21
|
+
--color-background: #110e18;
|
|
22
|
+
--color-foreground: #e4dff0;
|
|
23
|
+
--color-card: #1a1624;
|
|
24
|
+
--color-card-foreground: #e4dff0;
|
|
25
|
+
--color-popover: #1a1624;
|
|
26
|
+
--color-popover-foreground: #e4dff0;
|
|
27
|
+
--color-primary: #a87bd4;
|
|
28
|
+
--color-primary-foreground: #110e18;
|
|
29
|
+
--color-secondary: #221e30;
|
|
30
|
+
--color-secondary-foreground: #e4dff0;
|
|
31
|
+
--color-muted: #221e30;
|
|
32
|
+
--color-muted-foreground: #8a80a0;
|
|
33
|
+
--color-accent: #a87bd4;
|
|
34
|
+
--color-accent-foreground: #110e18;
|
|
35
|
+
--color-destructive: #c04a4a;
|
|
36
|
+
--color-destructive-foreground: #e4dff0;
|
|
37
|
+
--color-success: #5aaa70;
|
|
38
|
+
--color-warning: #d4a843;
|
|
39
|
+
--color-info: #7a8eb8;
|
|
40
|
+
--color-border: #2e2840;
|
|
41
|
+
--color-input: #2e2840;
|
|
42
|
+
--color-ring: #a87bd4;
|
|
43
|
+
--font-sans: 'Josefin Sans', 'Inter', system-ui, sans-serif;
|
|
44
|
+
--font-mono: 'Josefin Sans', 'SF Mono', ui-monospace, monospace;
|
|
45
|
+
--font-serif: 'Bodoni Moda', 'Lora', Georgia, serif;
|
|
46
|
+
--font-heading: 'Bodoni Moda', 'Lora', Georgia, serif;
|
|
47
|
+
--font-size-2xs: 0.625rem;
|
|
48
|
+
--font-size-2xs--line-height: 1.25;
|
|
49
|
+
--font-size-xs: 0.75rem;
|
|
50
|
+
--font-size-xs--line-height: 1.5;
|
|
51
|
+
--font-size-sm: 0.8125rem;
|
|
52
|
+
--font-size-sm--line-height: 1.5;
|
|
53
|
+
--font-size-base: 0.875rem;
|
|
54
|
+
--font-size-base--line-height: 1.5;
|
|
55
|
+
--font-size-lg: 1.125rem;
|
|
56
|
+
--font-size-lg--line-height: 1.25;
|
|
57
|
+
--font-size-xl: 1.25rem;
|
|
58
|
+
--font-size-xl--line-height: 1.25;
|
|
59
|
+
--font-display: var(--font-sans);
|
|
60
|
+
--radius: 5px;
|
|
61
|
+
--background: #110e18;
|
|
62
|
+
--foreground: #e4dff0;
|
|
63
|
+
--card: #1a1624;
|
|
64
|
+
--card-foreground: #e4dff0;
|
|
65
|
+
--popover: #1a1624;
|
|
66
|
+
--popover-foreground: #e4dff0;
|
|
67
|
+
--primary: #a87bd4;
|
|
68
|
+
--primary-foreground: #110e18;
|
|
69
|
+
--secondary: #221e30;
|
|
70
|
+
--secondary-foreground: #e4dff0;
|
|
71
|
+
--muted: #221e30;
|
|
72
|
+
--muted-foreground: #8a80a0;
|
|
73
|
+
--accent: #a87bd4;
|
|
74
|
+
--accent-foreground: #110e18;
|
|
75
|
+
--destructive: #c04a4a;
|
|
76
|
+
--destructive-foreground: #e4dff0;
|
|
77
|
+
--success: #5aaa70;
|
|
78
|
+
--warning: #d4a843;
|
|
79
|
+
--info: #7a8eb8;
|
|
80
|
+
--border: #2e2840;
|
|
81
|
+
--input: #2e2840;
|
|
82
|
+
--ring: #a87bd4;
|
|
83
|
+
--text-2xs: 0.625rem;
|
|
84
|
+
--text-xs: 0.75rem;
|
|
85
|
+
--text-sm: 0.8125rem;
|
|
86
|
+
--text-base: 0.875rem;
|
|
87
|
+
--text-lg: 1.125rem;
|
|
88
|
+
--text-xl: 1.25rem;
|
|
89
|
+
--leading-tight: 1.25;
|
|
90
|
+
--leading-snug: 1.375;
|
|
91
|
+
--leading-normal: 1.5;
|
|
92
|
+
--leading-relaxed: 1.625;
|
|
93
|
+
--weight-normal: 400;
|
|
94
|
+
--weight-medium: 500;
|
|
95
|
+
--weight-semibold: 600;
|
|
96
|
+
--weight-bold: 700;
|
|
97
|
+
--tracking-tight: -0.01em;
|
|
98
|
+
--tracking-normal: 0;
|
|
99
|
+
--tracking-wide: 0.05em;
|
|
100
|
+
--tracking-wider: 0.08em;
|
|
101
|
+
--lh-plum: #110e18;
|
|
102
|
+
--lh-deep: #1a1624;
|
|
103
|
+
--lh-charcoal: #221e30;
|
|
104
|
+
--lh-cream: #e4dff0;
|
|
105
|
+
--lh-dusty: #8a80a0;
|
|
106
|
+
--lh-steel: #7a8eb8;
|
|
107
|
+
--lh-lavender: #a87bd4;
|
|
108
|
+
--rig-button-hover-bg: #221e30;
|
|
109
|
+
--rig-scrollbar-thumb: rgba(228, 223, 240, 0.15);
|
|
110
|
+
--rig-scrollbar-thumb-hover: rgba(228, 223, 240, 0.3);
|
|
111
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
/* Hex — marenlys (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Marenlys Design Tokens
|
|
4
|
+
* Editorial polish. Crisp white with magenta-pink signature.
|
|
5
|
+
* Ultra-light mode artist portfolio theme with magenta-pink accent.
|
|
6
|
+
*
|
|
7
|
+
* Full palette (7 swatch colors):
|
|
8
|
+
* #FAFAFA gallery white — background
|
|
9
|
+
* #FAF5F8 pink tint — card
|
|
10
|
+
* #F2E8F0 blush — secondary, muted
|
|
11
|
+
* #1A0A18 dark magenta — foreground text
|
|
12
|
+
* #846578 mauve — muted foreground
|
|
13
|
+
* #E5D5E0 rose border — borders
|
|
14
|
+
* #C43A8A magenta-pink — primary, accent
|
|
15
|
+
*
|
|
16
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
17
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
[data-hex-theme='marenlys'] {
|
|
21
|
+
--color-background: #fafafa;
|
|
22
|
+
--color-foreground: #1a0a18;
|
|
23
|
+
--color-card: #faf5f8;
|
|
24
|
+
--color-card-foreground: #1a0a18;
|
|
25
|
+
--color-popover: #ffffff;
|
|
26
|
+
--color-popover-foreground: #1a0a18;
|
|
27
|
+
--color-primary: #c43a8a;
|
|
28
|
+
--color-primary-foreground: #ffffff;
|
|
29
|
+
--color-secondary: #f2e8f0;
|
|
30
|
+
--color-secondary-foreground: #1a0a18;
|
|
31
|
+
--color-muted: #f2e8f0;
|
|
32
|
+
--color-muted-foreground: #846578;
|
|
33
|
+
--color-accent: #c43a8a;
|
|
34
|
+
--color-accent-foreground: #ffffff;
|
|
35
|
+
--color-destructive: #cc4444;
|
|
36
|
+
--color-destructive-foreground: #ffffff;
|
|
37
|
+
--color-success: #44884a;
|
|
38
|
+
--color-warning: #b8952a;
|
|
39
|
+
--color-info: #7a5a9a;
|
|
40
|
+
--color-border: #e5d5e0;
|
|
41
|
+
--color-input: #e5d5e0;
|
|
42
|
+
--color-ring: #c43a8a;
|
|
43
|
+
--font-sans: 'Instrument Sans', 'Inter', system-ui, sans-serif;
|
|
44
|
+
--font-mono: 'Instrument Sans', 'SF Mono', ui-monospace, monospace;
|
|
45
|
+
--font-serif: 'Instrument Serif', Georgia, serif;
|
|
46
|
+
--font-heading: 'Instrument Serif', Georgia, serif;
|
|
47
|
+
--font-size-2xs: 0.625rem;
|
|
48
|
+
--font-size-2xs--line-height: 1.25;
|
|
49
|
+
--font-size-xs: 0.75rem;
|
|
50
|
+
--font-size-xs--line-height: 1.5;
|
|
51
|
+
--font-size-sm: 0.8125rem;
|
|
52
|
+
--font-size-sm--line-height: 1.5;
|
|
53
|
+
--font-size-base: 0.875rem;
|
|
54
|
+
--font-size-base--line-height: 1.5;
|
|
55
|
+
--font-size-lg: 1.125rem;
|
|
56
|
+
--font-size-lg--line-height: 1.25;
|
|
57
|
+
--font-size-xl: 1.25rem;
|
|
58
|
+
--font-size-xl--line-height: 1.25;
|
|
59
|
+
--font-display: var(--font-sans);
|
|
60
|
+
--radius: 0px;
|
|
61
|
+
--background: #fafafa;
|
|
62
|
+
--foreground: #1a0a18;
|
|
63
|
+
--card: #faf5f8;
|
|
64
|
+
--card-foreground: #1a0a18;
|
|
65
|
+
--popover: #ffffff;
|
|
66
|
+
--popover-foreground: #1a0a18;
|
|
67
|
+
--primary: #c43a8a;
|
|
68
|
+
--primary-foreground: #ffffff;
|
|
69
|
+
--secondary: #f2e8f0;
|
|
70
|
+
--secondary-foreground: #1a0a18;
|
|
71
|
+
--muted: #f2e8f0;
|
|
72
|
+
--muted-foreground: #846578;
|
|
73
|
+
--accent: #c43a8a;
|
|
74
|
+
--accent-foreground: #ffffff;
|
|
75
|
+
--destructive: #cc4444;
|
|
76
|
+
--destructive-foreground: #ffffff;
|
|
77
|
+
--success: #44884a;
|
|
78
|
+
--warning: #b8952a;
|
|
79
|
+
--info: #7a5a9a;
|
|
80
|
+
--border: #e5d5e0;
|
|
81
|
+
--input: #e5d5e0;
|
|
82
|
+
--ring: #c43a8a;
|
|
83
|
+
--text-2xs: 0.625rem;
|
|
84
|
+
--text-xs: 0.75rem;
|
|
85
|
+
--text-sm: 0.8125rem;
|
|
86
|
+
--text-base: 0.875rem;
|
|
87
|
+
--text-lg: 1.125rem;
|
|
88
|
+
--text-xl: 1.25rem;
|
|
89
|
+
--leading-tight: 1.25;
|
|
90
|
+
--leading-snug: 1.375;
|
|
91
|
+
--leading-normal: 1.5;
|
|
92
|
+
--leading-relaxed: 1.625;
|
|
93
|
+
--weight-normal: 400;
|
|
94
|
+
--weight-medium: 500;
|
|
95
|
+
--weight-semibold: 600;
|
|
96
|
+
--weight-bold: 700;
|
|
97
|
+
--tracking-tight: -0.01em;
|
|
98
|
+
--tracking-normal: 0;
|
|
99
|
+
--tracking-wide: 0.05em;
|
|
100
|
+
--tracking-wider: 0.08em;
|
|
101
|
+
--ml-gallery: #fafafa;
|
|
102
|
+
--ml-pink-tint: #faf5f8;
|
|
103
|
+
--ml-blush: #f2e8f0;
|
|
104
|
+
--ml-dark-magenta: #1a0a18;
|
|
105
|
+
--ml-mauve: #846578;
|
|
106
|
+
--ml-rose-border: #e5d5e0;
|
|
107
|
+
--ml-magenta: #c43a8a;
|
|
108
|
+
--rig-button-hover-bg: #f2e8f0;
|
|
109
|
+
--rig-scrollbar-thumb: rgba(26, 10, 24, 0.08);
|
|
110
|
+
--rig-scrollbar-thumb-hover: rgba(26, 10, 24, 0.18);
|
|
111
|
+
--site-max-width: 64rem;
|
|
112
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/* Hex — quizbit (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Quizbit Design Tokens
|
|
4
|
+
* Dark earth palette with warm bronze accents on parchment highlights.
|
|
5
|
+
* Amulet brand family: warm ink (#12100c), bronze (#c9956d), parchment (#f5f1ed).
|
|
6
|
+
* Personality quiz hub — playful yet sophisticated dark theme.
|
|
7
|
+
*
|
|
8
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
9
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
[data-hex-theme='quizbit'] {
|
|
13
|
+
--color-background: #12100c;
|
|
14
|
+
--color-foreground: #f5f1ed;
|
|
15
|
+
--color-card: #1e1a14;
|
|
16
|
+
--color-card-foreground: #f5f1ed;
|
|
17
|
+
--color-popover: #1e1a14;
|
|
18
|
+
--color-popover-foreground: #f5f1ed;
|
|
19
|
+
--color-primary: #c9956d;
|
|
20
|
+
--color-primary-foreground: #12100c;
|
|
21
|
+
--color-secondary: #2a2520;
|
|
22
|
+
--color-secondary-foreground: #f5f1ed;
|
|
23
|
+
--color-muted: #2a2520;
|
|
24
|
+
--color-muted-foreground: #a89e94;
|
|
25
|
+
--color-accent: #d4a574;
|
|
26
|
+
--color-accent-foreground: #12100c;
|
|
27
|
+
--color-destructive: #ef4444;
|
|
28
|
+
--color-destructive-foreground: #f5f1ed;
|
|
29
|
+
--color-success: #22c55e;
|
|
30
|
+
--color-warning: #f59e0b;
|
|
31
|
+
--color-info: #3b82f6;
|
|
32
|
+
--color-border: #302a22;
|
|
33
|
+
--color-input: #302a22;
|
|
34
|
+
--color-ring: #c9956d;
|
|
35
|
+
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
|
|
36
|
+
--font-serif: 'Inter', system-ui, -apple-system, sans-serif;
|
|
37
|
+
--font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', ui-monospace, monospace;
|
|
38
|
+
--radius: 8px;
|
|
39
|
+
--font-size-2xs: 0.625rem;
|
|
40
|
+
--font-size-2xs--line-height: 1.25;
|
|
41
|
+
--font-size-xs: 0.75rem;
|
|
42
|
+
--font-size-xs--line-height: 1.5;
|
|
43
|
+
--font-size-sm: 0.875rem;
|
|
44
|
+
--font-size-sm--line-height: 1.5;
|
|
45
|
+
--font-size-base: 1rem;
|
|
46
|
+
--font-size-base--line-height: 1.5;
|
|
47
|
+
--font-size-lg: 1.125rem;
|
|
48
|
+
--font-size-lg--line-height: 1.25;
|
|
49
|
+
--font-size-xl: 1.25rem;
|
|
50
|
+
--font-size-xl--line-height: 1.25;
|
|
51
|
+
--font-display: var(--font-sans);
|
|
52
|
+
--font-heading: var(--font-sans);
|
|
53
|
+
--background: #12100c;
|
|
54
|
+
--foreground: #f5f1ed;
|
|
55
|
+
--card: #1e1a14;
|
|
56
|
+
--card-foreground: #f5f1ed;
|
|
57
|
+
--popover: #1e1a14;
|
|
58
|
+
--popover-foreground: #f5f1ed;
|
|
59
|
+
--primary: #c9956d;
|
|
60
|
+
--primary-foreground: #12100c;
|
|
61
|
+
--secondary: #2a2520;
|
|
62
|
+
--secondary-foreground: #f5f1ed;
|
|
63
|
+
--muted: #2a2520;
|
|
64
|
+
--muted-foreground: #a89e94;
|
|
65
|
+
--accent: #d4a574;
|
|
66
|
+
--accent-foreground: #12100c;
|
|
67
|
+
--destructive: #ef4444;
|
|
68
|
+
--destructive-foreground: #f5f1ed;
|
|
69
|
+
--success: #22c55e;
|
|
70
|
+
--warning: #f59e0b;
|
|
71
|
+
--info: #3b82f6;
|
|
72
|
+
--border: #302a22;
|
|
73
|
+
--input: #302a22;
|
|
74
|
+
--ring: #c9956d;
|
|
75
|
+
--text-2xs: 0.625rem;
|
|
76
|
+
--text-xs: 0.75rem;
|
|
77
|
+
--text-sm: 0.875rem;
|
|
78
|
+
--text-base: 1rem;
|
|
79
|
+
--text-lg: 1.125rem;
|
|
80
|
+
--text-xl: 1.25rem;
|
|
81
|
+
--leading-tight: 1.25;
|
|
82
|
+
--leading-snug: 1.375;
|
|
83
|
+
--leading-normal: 1.5;
|
|
84
|
+
--leading-relaxed: 1.625;
|
|
85
|
+
--weight-normal: 400;
|
|
86
|
+
--weight-medium: 500;
|
|
87
|
+
--weight-semibold: 600;
|
|
88
|
+
--weight-bold: 700;
|
|
89
|
+
--tracking-tight: -0.01em;
|
|
90
|
+
--tracking-normal: 0;
|
|
91
|
+
--tracking-wide: 0.05em;
|
|
92
|
+
--quizbit-ink: #12100c;
|
|
93
|
+
--quizbit-ink-light: #1e1a14;
|
|
94
|
+
--quizbit-bronze: #c9956d;
|
|
95
|
+
--quizbit-bronze-light: #d4a574;
|
|
96
|
+
--quizbit-parchment: #f5f1ed;
|
|
97
|
+
--quizbit-muted: #a89e94;
|
|
98
|
+
--rig-button-hover-bg: #302a22;
|
|
99
|
+
--rig-scrollbar-thumb: rgba(201, 149, 109, 0.18);
|
|
100
|
+
--rig-scrollbar-thumb-hover: rgba(201, 149, 109, 0.35);
|
|
101
|
+
}
|