@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,115 @@
|
|
|
1
|
+
/* Hex — aldricpace (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Aldricpace Design Tokens
|
|
4
|
+
* Conservative law firm. Cold light mode with navy and brass accents.
|
|
5
|
+
* Institutional restraint — suited for professional services, legal, finance.
|
|
6
|
+
*
|
|
7
|
+
* Full palette (8 swatch colors):
|
|
8
|
+
* #FAFBFC cold white — background
|
|
9
|
+
* #F2F4F7 fog — card
|
|
10
|
+
* #E6E9EF slate wash — secondary, muted
|
|
11
|
+
* #1B2033 ink — foreground text
|
|
12
|
+
* #555E73 graphite — muted foreground
|
|
13
|
+
* #2B4C7E navy — primary, ring
|
|
14
|
+
* #8B6F4E brass — accent
|
|
15
|
+
* #9E3B3B merlot — destructive
|
|
16
|
+
*
|
|
17
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
18
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
[data-hex-theme='aldricpace'] {
|
|
22
|
+
--color-background: #fafbfc;
|
|
23
|
+
--color-foreground: #1b2033;
|
|
24
|
+
--color-card: #f2f4f7;
|
|
25
|
+
--color-card-foreground: #1b2033;
|
|
26
|
+
--color-popover: #ffffff;
|
|
27
|
+
--color-popover-foreground: #1b2033;
|
|
28
|
+
--color-primary: #2b4c7e;
|
|
29
|
+
--color-primary-foreground: #fafbfc;
|
|
30
|
+
--color-secondary: #e6e9ef;
|
|
31
|
+
--color-secondary-foreground: #1b2033;
|
|
32
|
+
--color-muted: #e6e9ef;
|
|
33
|
+
--color-muted-foreground: #555e73;
|
|
34
|
+
--color-accent: #8b6f4e;
|
|
35
|
+
--color-accent-foreground: #fafbfc;
|
|
36
|
+
--color-destructive: #9e3b3b;
|
|
37
|
+
--color-destructive-foreground: #fafbfc;
|
|
38
|
+
--color-success: #3b7a57;
|
|
39
|
+
--color-warning: #b8952a;
|
|
40
|
+
--color-info: #2b4c7e;
|
|
41
|
+
--color-border: #d1d5de;
|
|
42
|
+
--color-input: #d1d5de;
|
|
43
|
+
--color-ring: #2b4c7e;
|
|
44
|
+
--font-sans: 'Inter', system-ui, sans-serif;
|
|
45
|
+
--font-mono: 'Inter', 'SF Mono', ui-monospace, monospace;
|
|
46
|
+
--font-serif: 'EB Garamond', Georgia, serif;
|
|
47
|
+
--font-heading: 'EB Garamond', Georgia, serif;
|
|
48
|
+
--font-size-2xs: 0.625rem;
|
|
49
|
+
--font-size-2xs--line-height: 1.25;
|
|
50
|
+
--font-size-xs: 0.75rem;
|
|
51
|
+
--font-size-xs--line-height: 1.5;
|
|
52
|
+
--font-size-sm: 0.8125rem;
|
|
53
|
+
--font-size-sm--line-height: 1.5;
|
|
54
|
+
--font-size-base: 0.875rem;
|
|
55
|
+
--font-size-base--line-height: 1.5;
|
|
56
|
+
--font-size-lg: 1.125rem;
|
|
57
|
+
--font-size-lg--line-height: 1.25;
|
|
58
|
+
--font-size-xl: 1.25rem;
|
|
59
|
+
--font-size-xl--line-height: 1.25;
|
|
60
|
+
--font-display: var(--font-sans);
|
|
61
|
+
--radius: 3px;
|
|
62
|
+
--background: #fafbfc;
|
|
63
|
+
--foreground: #1b2033;
|
|
64
|
+
--card: #f2f4f7;
|
|
65
|
+
--card-foreground: #1b2033;
|
|
66
|
+
--popover: #ffffff;
|
|
67
|
+
--popover-foreground: #1b2033;
|
|
68
|
+
--primary: #2b4c7e;
|
|
69
|
+
--primary-foreground: #fafbfc;
|
|
70
|
+
--secondary: #e6e9ef;
|
|
71
|
+
--secondary-foreground: #1b2033;
|
|
72
|
+
--muted: #e6e9ef;
|
|
73
|
+
--muted-foreground: #555e73;
|
|
74
|
+
--accent: #8b6f4e;
|
|
75
|
+
--accent-foreground: #fafbfc;
|
|
76
|
+
--destructive: #9e3b3b;
|
|
77
|
+
--destructive-foreground: #fafbfc;
|
|
78
|
+
--success: #3b7a57;
|
|
79
|
+
--warning: #b8952a;
|
|
80
|
+
--info: #2b4c7e;
|
|
81
|
+
--border: #d1d5de;
|
|
82
|
+
--input: #d1d5de;
|
|
83
|
+
--ring: #2b4c7e;
|
|
84
|
+
--text-2xs: 0.625rem;
|
|
85
|
+
--text-xs: 0.75rem;
|
|
86
|
+
--text-sm: 0.8125rem;
|
|
87
|
+
--text-base: 0.875rem;
|
|
88
|
+
--text-lg: 1.125rem;
|
|
89
|
+
--text-xl: 1.25rem;
|
|
90
|
+
--leading-tight: 1.25;
|
|
91
|
+
--leading-snug: 1.375;
|
|
92
|
+
--leading-normal: 1.5;
|
|
93
|
+
--leading-relaxed: 1.625;
|
|
94
|
+
--weight-normal: 400;
|
|
95
|
+
--weight-medium: 500;
|
|
96
|
+
--weight-semibold: 600;
|
|
97
|
+
--weight-bold: 700;
|
|
98
|
+
--tracking-tight: -0.01em;
|
|
99
|
+
--tracking-normal: 0;
|
|
100
|
+
--tracking-wide: 0.05em;
|
|
101
|
+
--tracking-wider: 0.08em;
|
|
102
|
+
--ap-cold-white: #fafbfc;
|
|
103
|
+
--ap-fog: #f2f4f7;
|
|
104
|
+
--ap-slate: #e6e9ef;
|
|
105
|
+
--ap-ink: #1b2033;
|
|
106
|
+
--ap-graphite: #555e73;
|
|
107
|
+
--ap-navy: #2b4c7e;
|
|
108
|
+
--ap-brass: #8b6f4e;
|
|
109
|
+
--ap-merlot: #9e3b3b;
|
|
110
|
+
--rig-button-hover-bg: #e6e9ef;
|
|
111
|
+
--rig-scrollbar-thumb: rgba(27, 32, 51, 0.12);
|
|
112
|
+
--rig-scrollbar-thumb-hover: rgba(27, 32, 51, 0.25);
|
|
113
|
+
--site-nav-utility-bg: var(--color-primary);
|
|
114
|
+
--site-max-width: 64rem;
|
|
115
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/* Hex — briarcove (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Briarcove Design Tokens
|
|
4
|
+
* Studio clarity. Clean white canvas with violet accents.
|
|
5
|
+
* WCAG 2.1 AA compliant. Pure white background, dark purple-tinted foreground.
|
|
6
|
+
* Light mode studio theme — suited for creative platforms and portfolios.
|
|
7
|
+
*
|
|
8
|
+
* Full palette (10 swatch colors):
|
|
9
|
+
* #FFFFFF white — background
|
|
10
|
+
* #F5F2FA violet tint — card
|
|
11
|
+
* #EDE8F5 lavender — secondary, muted
|
|
12
|
+
* #D8D0E5 violet border — borders
|
|
13
|
+
* #6A5A80 purple gray — muted foreground
|
|
14
|
+
* #1A1428 dark violet — foreground text
|
|
15
|
+
* #6D42C4 violet — primary, accent, info
|
|
16
|
+
* #DC2626 red — destructive
|
|
17
|
+
* #D97706 amber — warning
|
|
18
|
+
* #16A34A green — success
|
|
19
|
+
*
|
|
20
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
21
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
[data-hex-theme='briarcove'] {
|
|
25
|
+
--color-background: #ffffff;
|
|
26
|
+
--color-foreground: #1a1428;
|
|
27
|
+
--color-card: #f5f2fa;
|
|
28
|
+
--color-card-foreground: #1a1428;
|
|
29
|
+
--color-popover: #ffffff;
|
|
30
|
+
--color-popover-foreground: #1a1428;
|
|
31
|
+
--color-primary: #6d42c4;
|
|
32
|
+
--color-primary-foreground: #ffffff;
|
|
33
|
+
--color-secondary: #ede8f5;
|
|
34
|
+
--color-secondary-foreground: #1a1428;
|
|
35
|
+
--color-muted: #ede8f5;
|
|
36
|
+
--color-muted-foreground: #6a5a80;
|
|
37
|
+
--color-accent: #d97706;
|
|
38
|
+
--color-accent-foreground: #ffffff;
|
|
39
|
+
--color-destructive: #dc2626;
|
|
40
|
+
--color-destructive-foreground: #ffffff;
|
|
41
|
+
--color-success: #16a34a;
|
|
42
|
+
--color-warning: #d97706;
|
|
43
|
+
--color-info: #6d42c4;
|
|
44
|
+
--color-border: #d8d0e5;
|
|
45
|
+
--color-input: #d8d0e5;
|
|
46
|
+
--color-ring: #6d42c4;
|
|
47
|
+
--font-sans: 'Libre Franklin', 'Inter', system-ui, sans-serif;
|
|
48
|
+
--font-mono: 'SF Mono', ui-monospace, monospace;
|
|
49
|
+
--font-serif: 'Merriweather', Georgia, serif;
|
|
50
|
+
--font-heading: 'Merriweather', Georgia, 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: 3px;
|
|
65
|
+
--background: #ffffff;
|
|
66
|
+
--foreground: #1a1428;
|
|
67
|
+
--card: #f5f2fa;
|
|
68
|
+
--card-foreground: #1a1428;
|
|
69
|
+
--popover: #ffffff;
|
|
70
|
+
--popover-foreground: #1a1428;
|
|
71
|
+
--primary: #6d42c4;
|
|
72
|
+
--primary-foreground: #ffffff;
|
|
73
|
+
--secondary: #ede8f5;
|
|
74
|
+
--secondary-foreground: #1a1428;
|
|
75
|
+
--muted: #ede8f5;
|
|
76
|
+
--muted-foreground: #6a5a80;
|
|
77
|
+
--accent: #d97706;
|
|
78
|
+
--accent-foreground: #ffffff;
|
|
79
|
+
--destructive: #dc2626;
|
|
80
|
+
--destructive-foreground: #ffffff;
|
|
81
|
+
--success: #16a34a;
|
|
82
|
+
--warning: #d97706;
|
|
83
|
+
--info: #6d42c4;
|
|
84
|
+
--border: #d8d0e5;
|
|
85
|
+
--input: #d8d0e5;
|
|
86
|
+
--ring: #6d42c4;
|
|
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
|
+
--bc-white: #ffffff;
|
|
106
|
+
--bc-violet-tint: #f5f2fa;
|
|
107
|
+
--bc-lavender: #ede8f5;
|
|
108
|
+
--bc-dark: #1a1428;
|
|
109
|
+
--bc-purple-gray: #6a5a80;
|
|
110
|
+
--bc-violet: #6d42c4;
|
|
111
|
+
--bc-red: #dc2626;
|
|
112
|
+
--bc-amber: #d97706;
|
|
113
|
+
--bc-green: #16a34a;
|
|
114
|
+
--bc-violet-border: #d8d0e5;
|
|
115
|
+
--rig-button-hover-bg: #5c37a6;
|
|
116
|
+
--rig-button-hover-fg: #ffffff;
|
|
117
|
+
--rig-button-secondary-bg: transparent;
|
|
118
|
+
--rig-button-secondary-fg: var(--color-foreground);
|
|
119
|
+
--rig-button-secondary-hover-bg: #ede8f5;
|
|
120
|
+
--rig-button-secondary-hover-fg: var(--color-foreground);
|
|
121
|
+
--rig-scrollbar-thumb: rgba(26, 20, 40, 0.15);
|
|
122
|
+
--rig-scrollbar-thumb-hover: rgba(26, 20, 40, 0.3);
|
|
123
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* Hex — briarcovelib (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Briarcovelib Design Tokens
|
|
4
|
+
* Public library. Warm light mode with sienna and slate blue.
|
|
5
|
+
* Civic warmth — welcoming, literary, community-focused.
|
|
6
|
+
*
|
|
7
|
+
* Full palette (7 swatch colors):
|
|
8
|
+
* #FAF8F4 vellum — background
|
|
9
|
+
* #F0ECE3 linen — card
|
|
10
|
+
* #E2DCD0 sandstone — secondary, muted
|
|
11
|
+
* #2B2622 umber — foreground text
|
|
12
|
+
* #6B6054 driftwood — muted foreground
|
|
13
|
+
* #9E5229 sienna — primary, ring
|
|
14
|
+
* #3A6B8C slate blue — 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='briarcovelib'] {
|
|
21
|
+
--color-background: #faf8f4;
|
|
22
|
+
--color-foreground: #2b2622;
|
|
23
|
+
--color-card: #f0ece3;
|
|
24
|
+
--color-card-foreground: #2b2622;
|
|
25
|
+
--color-popover: #ffffff;
|
|
26
|
+
--color-popover-foreground: #2b2622;
|
|
27
|
+
--color-primary: #9e5229;
|
|
28
|
+
--color-primary-foreground: #faf8f4;
|
|
29
|
+
--color-secondary: #e2dcd0;
|
|
30
|
+
--color-secondary-foreground: #2b2622;
|
|
31
|
+
--color-muted: #e2dcd0;
|
|
32
|
+
--color-muted-foreground: #6b6054;
|
|
33
|
+
--color-accent: #3a6b8c;
|
|
34
|
+
--color-accent-foreground: #faf8f4;
|
|
35
|
+
--color-destructive: #b83232;
|
|
36
|
+
--color-destructive-foreground: #faf8f4;
|
|
37
|
+
--color-success: #3b7a57;
|
|
38
|
+
--color-warning: #c49030;
|
|
39
|
+
--color-info: #3a6b8c;
|
|
40
|
+
--color-border: #d0c8ba;
|
|
41
|
+
--color-input: #d0c8ba;
|
|
42
|
+
--color-ring: #9e5229;
|
|
43
|
+
--font-sans: 'Cabin', 'Inter', system-ui, sans-serif;
|
|
44
|
+
--font-mono: 'Cabin', 'SF Mono', ui-monospace, monospace;
|
|
45
|
+
--font-serif: 'Bitter', Georgia, serif;
|
|
46
|
+
--font-heading: 'Bitter', 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: 6px;
|
|
61
|
+
--background: #faf8f4;
|
|
62
|
+
--foreground: #2b2622;
|
|
63
|
+
--card: #f0ece3;
|
|
64
|
+
--card-foreground: #2b2622;
|
|
65
|
+
--popover: #ffffff;
|
|
66
|
+
--popover-foreground: #2b2622;
|
|
67
|
+
--primary: #9e5229;
|
|
68
|
+
--primary-foreground: #faf8f4;
|
|
69
|
+
--secondary: #e2dcd0;
|
|
70
|
+
--secondary-foreground: #2b2622;
|
|
71
|
+
--muted: #e2dcd0;
|
|
72
|
+
--muted-foreground: #6b6054;
|
|
73
|
+
--accent: #3a6b8c;
|
|
74
|
+
--accent-foreground: #faf8f4;
|
|
75
|
+
--destructive: #b83232;
|
|
76
|
+
--destructive-foreground: #faf8f4;
|
|
77
|
+
--success: #3b7a57;
|
|
78
|
+
--warning: #c49030;
|
|
79
|
+
--info: #3a6b8c;
|
|
80
|
+
--border: #d0c8ba;
|
|
81
|
+
--input: #d0c8ba;
|
|
82
|
+
--ring: #9e5229;
|
|
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
|
+
--bl-vellum: #faf8f4;
|
|
102
|
+
--bl-linen: #f0ece3;
|
|
103
|
+
--bl-sandstone: #e2dcd0;
|
|
104
|
+
--bl-umber: #2b2622;
|
|
105
|
+
--bl-driftwood: #6b6054;
|
|
106
|
+
--bl-sienna: #9e5229;
|
|
107
|
+
--bl-slate: #3a6b8c;
|
|
108
|
+
--rig-button-hover-bg: #e2dcd0;
|
|
109
|
+
--rig-scrollbar-thumb: rgba(43, 38, 34, 0.12);
|
|
110
|
+
--rig-scrollbar-thumb-hover: rgba(43, 38, 34, 0.25);
|
|
111
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* Hex — compass (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Compass Design Tokens
|
|
4
|
+
* Veterinary clinic. Soft light mode with true green and warm coral.
|
|
5
|
+
* Clinical warmth — reassuring, accessible, nature-forward.
|
|
6
|
+
*
|
|
7
|
+
* Full palette (7 swatch colors):
|
|
8
|
+
* #F8FDF6 mint green — background
|
|
9
|
+
* #F0F5EE soft sage — card
|
|
10
|
+
* #E0ECE0 pale eucalyptus — secondary, muted
|
|
11
|
+
* #1A2A1A deep moss — foreground text
|
|
12
|
+
* #4A6A4A fern — muted foreground
|
|
13
|
+
* #2B743B true green — primary, ring
|
|
14
|
+
* #BB572D warm coral — accent, action
|
|
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='compass'] {
|
|
21
|
+
--color-background: #f8fdf6;
|
|
22
|
+
--color-foreground: #1a2a1a;
|
|
23
|
+
--color-card: #f0f5ee;
|
|
24
|
+
--color-card-foreground: #1a2a1a;
|
|
25
|
+
--color-popover: #ffffff;
|
|
26
|
+
--color-popover-foreground: #1a2a1a;
|
|
27
|
+
--color-primary: #2b743b;
|
|
28
|
+
--color-primary-foreground: #f8fdf6;
|
|
29
|
+
--color-secondary: #e0ece0;
|
|
30
|
+
--color-secondary-foreground: #1a2a1a;
|
|
31
|
+
--color-muted: #e0ece0;
|
|
32
|
+
--color-muted-foreground: #4a6a4a;
|
|
33
|
+
--color-accent: #bb572d;
|
|
34
|
+
--color-accent-foreground: #f8fdf6;
|
|
35
|
+
--color-destructive: #cc3b3b;
|
|
36
|
+
--color-destructive-foreground: #f8fdf6;
|
|
37
|
+
--color-success: #2b743b;
|
|
38
|
+
--color-warning: #d4a030;
|
|
39
|
+
--color-info: #4a7a9e;
|
|
40
|
+
--color-border: #c0d8c0;
|
|
41
|
+
--color-input: #c0d8c0;
|
|
42
|
+
--color-ring: #2b743b;
|
|
43
|
+
--font-sans: 'Outfit', 'Inter', system-ui, sans-serif;
|
|
44
|
+
--font-mono: 'Outfit', 'SF Mono', ui-monospace, monospace;
|
|
45
|
+
--font-serif: 'Atkinson Hyperlegible', 'Inter', system-ui, sans-serif;
|
|
46
|
+
--font-heading: 'Outfit', '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: 8px;
|
|
61
|
+
--background: #f8fdf6;
|
|
62
|
+
--foreground: #1a2a1a;
|
|
63
|
+
--card: #f0f5ee;
|
|
64
|
+
--card-foreground: #1a2a1a;
|
|
65
|
+
--popover: #ffffff;
|
|
66
|
+
--popover-foreground: #1a2a1a;
|
|
67
|
+
--primary: #2b743b;
|
|
68
|
+
--primary-foreground: #f8fdf6;
|
|
69
|
+
--secondary: #e0ece0;
|
|
70
|
+
--secondary-foreground: #1a2a1a;
|
|
71
|
+
--muted: #e0ece0;
|
|
72
|
+
--muted-foreground: #4a6a4a;
|
|
73
|
+
--accent: #bb572d;
|
|
74
|
+
--accent-foreground: #f8fdf6;
|
|
75
|
+
--destructive: #cc3b3b;
|
|
76
|
+
--destructive-foreground: #f8fdf6;
|
|
77
|
+
--success: #2b743b;
|
|
78
|
+
--warning: #d4a030;
|
|
79
|
+
--info: #4a7a9e;
|
|
80
|
+
--border: #c0d8c0;
|
|
81
|
+
--input: #c0d8c0;
|
|
82
|
+
--ring: #2b743b;
|
|
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
|
+
--ca-mint-green: #f8fdf6;
|
|
102
|
+
--ca-sage: #f0f5ee;
|
|
103
|
+
--ca-eucalyptus: #e0ece0;
|
|
104
|
+
--ca-moss: #1a2a1a;
|
|
105
|
+
--ca-fern: #4a6a4a;
|
|
106
|
+
--ca-green: #2b743b;
|
|
107
|
+
--ca-coral: #bb572d;
|
|
108
|
+
--rig-button-hover-bg: #e0ece0;
|
|
109
|
+
--rig-scrollbar-thumb: rgba(26, 42, 26, 0.12);
|
|
110
|
+
--rig-scrollbar-thumb-hover: rgba(26, 42, 26, 0.25);
|
|
111
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
/* Hex — duskline (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Duskline Design Tokens
|
|
4
|
+
* Digital frost. Cold-running terminal with teal-cyan glow.
|
|
5
|
+
* Dark mode investigative palette — cold blue-black background, cool white text,
|
|
6
|
+
* teal-cyan highlights that pulse like frozen circuitry.
|
|
7
|
+
*
|
|
8
|
+
* Full palette (7 swatch colors):
|
|
9
|
+
* #0A0F14 cold black — background
|
|
10
|
+
* #121A22 cold graphite — card, popover
|
|
11
|
+
* #1A2430 cold charcoal — secondary, muted
|
|
12
|
+
* #4A6478 dim — subtle text
|
|
13
|
+
* #7090A2 steel — muted foreground
|
|
14
|
+
* #3CC8B4 teal-cyan — primary, accent, ring (h≈170)
|
|
15
|
+
* #D8E4EC cool white — foreground text
|
|
16
|
+
*
|
|
17
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
18
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
[data-hex-theme='duskline'] {
|
|
22
|
+
--color-background: #0a0f14;
|
|
23
|
+
--color-foreground: #d8e4ec;
|
|
24
|
+
--color-card: #121a22;
|
|
25
|
+
--color-card-foreground: #d8e4ec;
|
|
26
|
+
--color-popover: #121a22;
|
|
27
|
+
--color-popover-foreground: #d8e4ec;
|
|
28
|
+
--color-primary: #3cc8b4;
|
|
29
|
+
--color-primary-foreground: #0a0f14;
|
|
30
|
+
--color-secondary: #1a2430;
|
|
31
|
+
--color-secondary-foreground: #d8e4ec;
|
|
32
|
+
--color-muted: #1a2430;
|
|
33
|
+
--color-muted-foreground: #7090a2;
|
|
34
|
+
--color-accent: #d4a040;
|
|
35
|
+
--color-accent-foreground: #0a0f14;
|
|
36
|
+
--color-destructive: #c94545;
|
|
37
|
+
--color-destructive-foreground: #d8e4ec;
|
|
38
|
+
--color-success: #2db87a;
|
|
39
|
+
--color-warning: #d4a040;
|
|
40
|
+
--color-info: #5a8ab8;
|
|
41
|
+
--color-border: #1e3040;
|
|
42
|
+
--color-input: #1e3040;
|
|
43
|
+
--color-ring: #3cc8b4;
|
|
44
|
+
--font-sans: 'IBM Plex Sans', 'Inter', system-ui, sans-serif;
|
|
45
|
+
--font-mono: 'IBM Plex Mono', 'SF Mono', ui-monospace, monospace;
|
|
46
|
+
--font-heading: 'IBM Plex Sans Condensed', 'IBM Plex Sans', 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: 2px;
|
|
61
|
+
--background: #0a0f14;
|
|
62
|
+
--foreground: #d8e4ec;
|
|
63
|
+
--card: #121a22;
|
|
64
|
+
--card-foreground: #d8e4ec;
|
|
65
|
+
--popover: #121a22;
|
|
66
|
+
--popover-foreground: #d8e4ec;
|
|
67
|
+
--primary: #3cc8b4;
|
|
68
|
+
--primary-foreground: #0a0f14;
|
|
69
|
+
--secondary: #1a2430;
|
|
70
|
+
--secondary-foreground: #d8e4ec;
|
|
71
|
+
--muted: #1a2430;
|
|
72
|
+
--muted-foreground: #7090a2;
|
|
73
|
+
--accent: #d4a040;
|
|
74
|
+
--accent-foreground: #0a0f14;
|
|
75
|
+
--destructive: #c94545;
|
|
76
|
+
--destructive-foreground: #d8e4ec;
|
|
77
|
+
--success: #2db87a;
|
|
78
|
+
--warning: #d4a040;
|
|
79
|
+
--info: #5a8ab8;
|
|
80
|
+
--border: #1e3040;
|
|
81
|
+
--input: #1e3040;
|
|
82
|
+
--ring: #3cc8b4;
|
|
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
|
+
--dk-black: #0a0f14;
|
|
102
|
+
--dk-graphite: #121a22;
|
|
103
|
+
--dk-charcoal: #1a2430;
|
|
104
|
+
--dk-steel: #7090a2;
|
|
105
|
+
--dk-dim: #4a6478;
|
|
106
|
+
--dk-cyan: #3cc8b4;
|
|
107
|
+
--dk-white: #d8e4ec;
|
|
108
|
+
--rig-button-hover-bg: #2ea89a;
|
|
109
|
+
--rig-button-hover-fg: #0a0f14;
|
|
110
|
+
--rig-button-secondary-bg: transparent;
|
|
111
|
+
--rig-button-secondary-fg: var(--color-foreground);
|
|
112
|
+
--rig-button-secondary-hover-bg: #1a2430;
|
|
113
|
+
--rig-button-secondary-hover-fg: var(--color-foreground);
|
|
114
|
+
--rig-scrollbar-thumb: rgba(216, 228, 236, 0.1);
|
|
115
|
+
--rig-scrollbar-thumb-hover: rgba(216, 228, 236, 0.22);
|
|
116
|
+
--site-footer-color: var(--color-background);
|
|
117
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/* Hex — forge (scoped) */
|
|
2
|
+
|
|
3
|
+
/* Hex — Forge Design Tokens
|
|
4
|
+
* 1980s spacecraft cockpit hardware — CRT phosphor displays, beige ABS plastic
|
|
5
|
+
* housings, brushed aluminum channels, dark rubber gaskets.
|
|
6
|
+
* Dark mode industrial theme — deep carbon hull, yellow phosphor accents,
|
|
7
|
+
* IBM Plex instrument typography, machined 2px radii.
|
|
8
|
+
*
|
|
9
|
+
* Key palette:
|
|
10
|
+
* #0E0D0C deep carbon hull — background
|
|
11
|
+
* #1E1C1A dark composite panel — card / muted / sidebar
|
|
12
|
+
* #2A2826 elevated panel — popover / overlay
|
|
13
|
+
* #3A3530 dark panel seam — border
|
|
14
|
+
* #D4CCBA warm off-white — foreground (12.8:1 on base)
|
|
15
|
+
* #8A8478 mid warm gray — muted foreground (5.8:1 on base)
|
|
16
|
+
* #E6C830 CRT yellow phosphor — primary accent (h≈55)
|
|
17
|
+
* #33DD33 phosphor green — success (9.6:1 on base)
|
|
18
|
+
* #FFCC44 bright yellow — warning
|
|
19
|
+
* #FF4444 phosphor red — destructive (5.4:1 on base)
|
|
20
|
+
* #4488FF phosphor blue — info (5.6:1 on base)
|
|
21
|
+
*
|
|
22
|
+
* @theme feeds Tailwind v4 utility generation (bg-background, text-foreground, etc.)
|
|
23
|
+
* :root provides standalone CSS custom property access for non-Tailwind consumers.
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
[data-hex-theme='forge'] {
|
|
27
|
+
--color-background: #0e0d0c;
|
|
28
|
+
--color-foreground: #d4ccba;
|
|
29
|
+
--color-card: #1e1c1a;
|
|
30
|
+
--color-card-foreground: #d4ccba;
|
|
31
|
+
--color-popover: #2a2826;
|
|
32
|
+
--color-popover-foreground: #d4ccba;
|
|
33
|
+
--color-primary: #e6c830;
|
|
34
|
+
--color-primary-foreground: #0e0d0c;
|
|
35
|
+
--color-secondary: #1e1c1a;
|
|
36
|
+
--color-secondary-foreground: #d4ccba;
|
|
37
|
+
--color-muted: #1e1c1a;
|
|
38
|
+
--color-muted-foreground: #8a8478;
|
|
39
|
+
--color-accent: #e6c830;
|
|
40
|
+
--color-accent-foreground: #0e0d0c;
|
|
41
|
+
--color-destructive: #ff4444;
|
|
42
|
+
--color-destructive-foreground: #0e0d0c;
|
|
43
|
+
--color-success: #33dd33;
|
|
44
|
+
--color-warning: #ffcc44;
|
|
45
|
+
--color-info: #4488ff;
|
|
46
|
+
--color-border: #3a3530;
|
|
47
|
+
--color-input: #3a3530;
|
|
48
|
+
--color-ring: #e6c830;
|
|
49
|
+
--font-mono: 'IBM Plex Mono', 'Courier New', ui-monospace, monospace;
|
|
50
|
+
--font-sans: 'IBM Plex Sans', system-ui, sans-serif;
|
|
51
|
+
--font-serif: 'IBM Plex Serif', Georgia, serif;
|
|
52
|
+
--font-size-2xs: 0.625rem;
|
|
53
|
+
--font-size-2xs--line-height: 1.25;
|
|
54
|
+
--font-size-xs: 0.75rem;
|
|
55
|
+
--font-size-xs--line-height: 1.5;
|
|
56
|
+
--font-size-sm: 0.8125rem;
|
|
57
|
+
--font-size-sm--line-height: 1.5;
|
|
58
|
+
--font-size-base: 0.875rem;
|
|
59
|
+
--font-size-base--line-height: 1.5;
|
|
60
|
+
--font-size-lg: 1.125rem;
|
|
61
|
+
--font-size-lg--line-height: 1.25;
|
|
62
|
+
--font-size-xl: 1.25rem;
|
|
63
|
+
--font-size-xl--line-height: 1.25;
|
|
64
|
+
--font-display: var(--font-sans);
|
|
65
|
+
--radius: 2px;
|
|
66
|
+
--background: #0e0d0c;
|
|
67
|
+
--foreground: #d4ccba;
|
|
68
|
+
--card: #1e1c1a;
|
|
69
|
+
--card-foreground: #d4ccba;
|
|
70
|
+
--popover: #2a2826;
|
|
71
|
+
--popover-foreground: #d4ccba;
|
|
72
|
+
--primary: #e6c830;
|
|
73
|
+
--primary-foreground: #0e0d0c;
|
|
74
|
+
--secondary: #1e1c1a;
|
|
75
|
+
--secondary-foreground: #d4ccba;
|
|
76
|
+
--muted: #1e1c1a;
|
|
77
|
+
--muted-foreground: #8a8478;
|
|
78
|
+
--accent: #e6c830;
|
|
79
|
+
--accent-foreground: #0e0d0c;
|
|
80
|
+
--destructive: #ff4444;
|
|
81
|
+
--destructive-foreground: #0e0d0c;
|
|
82
|
+
--success: #33dd33;
|
|
83
|
+
--warning: #ffcc44;
|
|
84
|
+
--info: #4488ff;
|
|
85
|
+
--border: #3a3530;
|
|
86
|
+
--input: #3a3530;
|
|
87
|
+
--ring: #e6c830;
|
|
88
|
+
--text-2xs: 0.625rem;
|
|
89
|
+
--text-xs: 0.75rem;
|
|
90
|
+
--text-sm: 0.8125rem;
|
|
91
|
+
--text-base: 0.875rem;
|
|
92
|
+
--text-lg: 1.125rem;
|
|
93
|
+
--text-xl: 1.25rem;
|
|
94
|
+
--leading-tight: 1.25;
|
|
95
|
+
--leading-snug: 1.375;
|
|
96
|
+
--leading-normal: 1.5;
|
|
97
|
+
--leading-relaxed: 1.625;
|
|
98
|
+
--weight-normal: 400;
|
|
99
|
+
--weight-medium: 500;
|
|
100
|
+
--weight-semibold: 600;
|
|
101
|
+
--weight-bold: 700;
|
|
102
|
+
--tracking-tight: -0.01em;
|
|
103
|
+
--tracking-normal: 0;
|
|
104
|
+
--tracking-wide: 0.05em;
|
|
105
|
+
--tracking-wider: 0.08em;
|
|
106
|
+
--forge-hull: #0e0d0c;
|
|
107
|
+
--forge-panel: #1e1c1a;
|
|
108
|
+
--forge-overlay: #2a2826;
|
|
109
|
+
--forge-well: #060605;
|
|
110
|
+
--forge-seam: #3a3530;
|
|
111
|
+
--forge-seam-subtle: #1e1c1a;
|
|
112
|
+
--forge-text: #d4ccba;
|
|
113
|
+
--forge-text-mid: #8a8478;
|
|
114
|
+
--forge-text-dim: #5a5548;
|
|
115
|
+
--forge-yellow: #e6c830;
|
|
116
|
+
--forge-yellow-bright: #f0d84a;
|
|
117
|
+
--forge-green: #33dd33;
|
|
118
|
+
--forge-red: #ff4444;
|
|
119
|
+
--forge-blue: #4488ff;
|
|
120
|
+
--rig-scrollbar-thumb: rgba(212, 204, 186, 0.15);
|
|
121
|
+
--rig-scrollbar-thumb-hover: rgba(212, 204, 186, 0.28);
|
|
122
|
+
--rig-button-hover-bg: #c4aa28;
|
|
123
|
+
}
|