@almadar/ui 1.0.21 → 1.0.23
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/dist/{chunk-I5RSZIOE.js → chunk-4UFNDD6B.js} +82 -26
- package/dist/{chunk-VE4ZELYZ.js → chunk-ITRZURGQ.js} +3 -115
- package/dist/chunk-W5YTXLXL.js +29 -0
- package/dist/{chunk-TTXKOHDO.js → chunk-WXFQV3ZP.js} +148 -2
- package/dist/components/index.d.ts +724 -278
- package/dist/components/index.js +1549 -901
- package/dist/context/index.js +14 -3
- package/dist/hooks/index.d.ts +124 -122
- package/dist/hooks/index.js +3 -3
- package/dist/providers/index.d.ts +0 -1
- package/dist/providers/index.js +14 -5
- package/package.json +10 -5
- package/themes/arctic.css +203 -0
- package/themes/copper.css +203 -0
- package/themes/ember.css +206 -0
- package/themes/forest.css +206 -0
- package/themes/index.css +15 -0
- package/themes/lavender.css +201 -0
- package/themes/midnight.css +202 -0
- package/themes/neon.css +208 -0
- package/themes/ocean.css +206 -0
- package/themes/rose.css +201 -0
- package/themes/sand.css +202 -0
- package/themes/slate.css +201 -0
- package/themes/sunset.css +206 -0
- package/dist/chunk-4FRUCUO5.js +0 -14
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lavender Theme — "Creative Studio"
|
|
3
|
+
*
|
|
4
|
+
* Violet/purple palette with soft, creative, and playful aesthetics.
|
|
5
|
+
* Pillowy rounded corners, bouncy transitions, and purple-tinted shadows
|
|
6
|
+
* make this theme ideal for creative tools, design apps, and playful UIs.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* ==========================================================================
|
|
10
|
+
* LIGHT MODE
|
|
11
|
+
* ========================================================================== */
|
|
12
|
+
[data-theme="lavender-light"] {
|
|
13
|
+
/* Shadows - Purple-tinted, soft */
|
|
14
|
+
--shadow-main: 0 1px 3px rgba(124, 58, 237, 0.1), 0 1px 2px rgba(124, 58, 237, 0.06);
|
|
15
|
+
--shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.06);
|
|
16
|
+
--shadow-lg:
|
|
17
|
+
0 10px 25px -5px rgba(124, 58, 237, 0.15), 0 8px 10px -6px rgba(124, 58, 237, 0.1);
|
|
18
|
+
--shadow-inner: inset 0 1px 2px rgba(124, 58, 237, 0.08);
|
|
19
|
+
--shadow-none: none;
|
|
20
|
+
--shadow-hover: 0 10px 40px -10px rgba(124, 58, 237, 0.25);
|
|
21
|
+
--shadow-active: 0 1px 2px rgba(124, 58, 237, 0.06);
|
|
22
|
+
|
|
23
|
+
/* Border radius - Pillowy, very rounded */
|
|
24
|
+
--radius-none: 0px;
|
|
25
|
+
--radius-sm: 12px;
|
|
26
|
+
--radius-md: 16px;
|
|
27
|
+
--radius-lg: 24px;
|
|
28
|
+
--radius-xl: 32px;
|
|
29
|
+
--radius-full: 9999px;
|
|
30
|
+
|
|
31
|
+
/* Border width */
|
|
32
|
+
--border-width: 1px;
|
|
33
|
+
--border-width-thin: 1px;
|
|
34
|
+
--border-width-thick: 2px;
|
|
35
|
+
|
|
36
|
+
/* Colors - Violet palette, soft and creative */
|
|
37
|
+
--color-primary: #7c3aed;
|
|
38
|
+
--color-primary-hover: #6d28d9;
|
|
39
|
+
--color-primary-foreground: #ffffff;
|
|
40
|
+
|
|
41
|
+
--color-secondary: #f5f3ff;
|
|
42
|
+
--color-secondary-hover: #ede9fe;
|
|
43
|
+
--color-secondary-foreground: #5b21b6;
|
|
44
|
+
|
|
45
|
+
--color-accent: #a78bfa;
|
|
46
|
+
--color-accent-foreground: #2e1065;
|
|
47
|
+
|
|
48
|
+
--color-muted: #ede9fe;
|
|
49
|
+
--color-muted-foreground: #6b7280;
|
|
50
|
+
|
|
51
|
+
--color-background: #faf5ff;
|
|
52
|
+
--color-foreground: #2e1065;
|
|
53
|
+
--color-card: #ffffff;
|
|
54
|
+
--color-card-foreground: #2e1065;
|
|
55
|
+
--color-surface: #f3e8ff;
|
|
56
|
+
--color-border: rgba(124, 58, 237, 0.2);
|
|
57
|
+
--color-input: rgba(124, 58, 237, 0.15);
|
|
58
|
+
--color-ring: #7c3aed;
|
|
59
|
+
|
|
60
|
+
/* Semantic colors */
|
|
61
|
+
--color-error: #dc2626;
|
|
62
|
+
--color-error-foreground: #ffffff;
|
|
63
|
+
--color-success: #16a34a;
|
|
64
|
+
--color-success-foreground: #ffffff;
|
|
65
|
+
--color-warning: #ca8a04;
|
|
66
|
+
--color-warning-foreground: #000000;
|
|
67
|
+
--color-info: #2563eb;
|
|
68
|
+
--color-info-foreground: #ffffff;
|
|
69
|
+
|
|
70
|
+
/* Typography - Clean, slightly loose */
|
|
71
|
+
--font-family:
|
|
72
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
73
|
+
--font-weight-normal: 400;
|
|
74
|
+
--font-weight-medium: 500;
|
|
75
|
+
--font-weight-bold: 600;
|
|
76
|
+
--letter-spacing: -0.01em;
|
|
77
|
+
--line-height: 1.6;
|
|
78
|
+
|
|
79
|
+
/* Icon styling - Violet tint */
|
|
80
|
+
--icon-stroke-width: 1.5;
|
|
81
|
+
--icon-color: #7c3aed;
|
|
82
|
+
|
|
83
|
+
/* Transitions - Bouncy, playful */
|
|
84
|
+
--transition-fast: 180ms;
|
|
85
|
+
--transition-normal: 300ms;
|
|
86
|
+
--transition-slow: 450ms;
|
|
87
|
+
--transition-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
88
|
+
|
|
89
|
+
/* Hover/Active transforms - Playful lift */
|
|
90
|
+
--hover-scale: 1.02;
|
|
91
|
+
--hover-translate-y: -2px;
|
|
92
|
+
--hover-translate-x: 0;
|
|
93
|
+
--active-scale: 0.98;
|
|
94
|
+
--active-translate-y: 0;
|
|
95
|
+
|
|
96
|
+
/* Focus ring */
|
|
97
|
+
--focus-ring-width: 2px;
|
|
98
|
+
--focus-ring-offset: 2px;
|
|
99
|
+
--focus-ring-color: #7c3aed;
|
|
100
|
+
|
|
101
|
+
/* Apply background and foreground colors */
|
|
102
|
+
background-color: var(--color-background);
|
|
103
|
+
color: var(--color-foreground);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/* ==========================================================================
|
|
107
|
+
* DARK MODE
|
|
108
|
+
* ========================================================================== */
|
|
109
|
+
[data-theme="lavender-dark"] {
|
|
110
|
+
/* Shadows - Deep purple-tinted */
|
|
111
|
+
--shadow-main: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(124, 58, 237, 0.15);
|
|
112
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
|
|
113
|
+
--shadow-lg:
|
|
114
|
+
0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(124, 58, 237, 0.2);
|
|
115
|
+
--shadow-inner: inset 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
116
|
+
--shadow-none: none;
|
|
117
|
+
--shadow-hover: 0 10px 40px -10px rgba(124, 58, 237, 0.35);
|
|
118
|
+
--shadow-active: 0 1px 2px rgba(0, 0, 0, 0.25);
|
|
119
|
+
|
|
120
|
+
/* Border radius - Pillowy, very rounded */
|
|
121
|
+
--radius-none: 0px;
|
|
122
|
+
--radius-sm: 12px;
|
|
123
|
+
--radius-md: 16px;
|
|
124
|
+
--radius-lg: 24px;
|
|
125
|
+
--radius-xl: 32px;
|
|
126
|
+
--radius-full: 9999px;
|
|
127
|
+
|
|
128
|
+
/* Border width */
|
|
129
|
+
--border-width: 1px;
|
|
130
|
+
--border-width-thin: 1px;
|
|
131
|
+
--border-width-thick: 2px;
|
|
132
|
+
|
|
133
|
+
/* Colors - Deep purple dark mode */
|
|
134
|
+
--color-primary: #a78bfa;
|
|
135
|
+
--color-primary-hover: #c4b5fd;
|
|
136
|
+
--color-primary-foreground: #2e1065;
|
|
137
|
+
|
|
138
|
+
--color-secondary: #1a0d30;
|
|
139
|
+
--color-secondary-hover: #251445;
|
|
140
|
+
--color-secondary-foreground: #e9d5ff;
|
|
141
|
+
|
|
142
|
+
--color-accent: #a78bfa;
|
|
143
|
+
--color-accent-foreground: #2e1065;
|
|
144
|
+
|
|
145
|
+
--color-muted: #1a0d30;
|
|
146
|
+
--color-muted-foreground: #c4b5fd;
|
|
147
|
+
|
|
148
|
+
--color-background: #0f0720;
|
|
149
|
+
--color-foreground: #f3e8ff;
|
|
150
|
+
--color-card: #1a0d30;
|
|
151
|
+
--color-card-foreground: #f3e8ff;
|
|
152
|
+
--color-surface: #251445;
|
|
153
|
+
--color-border: rgba(167, 139, 250, 0.2);
|
|
154
|
+
--color-input: rgba(167, 139, 250, 0.15);
|
|
155
|
+
--color-ring: #a78bfa;
|
|
156
|
+
|
|
157
|
+
/* Semantic colors - Brighter for dark mode */
|
|
158
|
+
--color-error: #f87171;
|
|
159
|
+
--color-error-foreground: #000000;
|
|
160
|
+
--color-success: #4ade80;
|
|
161
|
+
--color-success-foreground: #000000;
|
|
162
|
+
--color-warning: #fbbf24;
|
|
163
|
+
--color-warning-foreground: #000000;
|
|
164
|
+
--color-info: #60a5fa;
|
|
165
|
+
--color-info-foreground: #000000;
|
|
166
|
+
|
|
167
|
+
/* Typography */
|
|
168
|
+
--font-family:
|
|
169
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
170
|
+
--font-weight-normal: 400;
|
|
171
|
+
--font-weight-medium: 500;
|
|
172
|
+
--font-weight-bold: 600;
|
|
173
|
+
--letter-spacing: -0.01em;
|
|
174
|
+
--line-height: 1.6;
|
|
175
|
+
|
|
176
|
+
/* Icon styling - Lighter violet for dark */
|
|
177
|
+
--icon-stroke-width: 1.5;
|
|
178
|
+
--icon-color: #a78bfa;
|
|
179
|
+
|
|
180
|
+
/* Transitions - Bouncy, playful */
|
|
181
|
+
--transition-fast: 180ms;
|
|
182
|
+
--transition-normal: 300ms;
|
|
183
|
+
--transition-slow: 450ms;
|
|
184
|
+
--transition-timing: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
185
|
+
|
|
186
|
+
/* Hover/Active transforms - Playful lift */
|
|
187
|
+
--hover-scale: 1.02;
|
|
188
|
+
--hover-translate-y: -2px;
|
|
189
|
+
--hover-translate-x: 0;
|
|
190
|
+
--active-scale: 0.98;
|
|
191
|
+
--active-translate-y: 0;
|
|
192
|
+
|
|
193
|
+
/* Focus ring */
|
|
194
|
+
--focus-ring-width: 2px;
|
|
195
|
+
--focus-ring-offset: 2px;
|
|
196
|
+
--focus-ring-color: #a78bfa;
|
|
197
|
+
|
|
198
|
+
/* Apply background and foreground colors */
|
|
199
|
+
background-color: var(--color-background);
|
|
200
|
+
color: var(--color-foreground);
|
|
201
|
+
}
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Midnight Theme — "Noir Elegance"
|
|
3
|
+
*
|
|
4
|
+
* Indigo/navy palette with sophisticated and luxurious aesthetics.
|
|
5
|
+
* Refined corners, slow luxurious transitions, and deep indigo-tinted
|
|
6
|
+
* shadows create an atmosphere of understated elegance, perfect for
|
|
7
|
+
* dashboards, analytics, and professional enterprise UIs.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* ==========================================================================
|
|
11
|
+
* LIGHT MODE
|
|
12
|
+
* ========================================================================== */
|
|
13
|
+
[data-theme="midnight-light"] {
|
|
14
|
+
/* Shadows - Indigo-tinted, deep */
|
|
15
|
+
--shadow-main: 0 1px 3px rgba(99, 102, 241, 0.1), 0 1px 2px rgba(99, 102, 241, 0.06);
|
|
16
|
+
--shadow-sm: 0 1px 2px rgba(99, 102, 241, 0.06);
|
|
17
|
+
--shadow-lg:
|
|
18
|
+
0 10px 25px -5px rgba(99, 102, 241, 0.15), 0 8px 10px -6px rgba(99, 102, 241, 0.1);
|
|
19
|
+
--shadow-inner: inset 0 1px 2px rgba(99, 102, 241, 0.08);
|
|
20
|
+
--shadow-none: none;
|
|
21
|
+
--shadow-hover: 0 10px 40px -10px rgba(99, 102, 241, 0.22);
|
|
22
|
+
--shadow-active: 0 1px 2px rgba(99, 102, 241, 0.06);
|
|
23
|
+
|
|
24
|
+
/* Border radius - Refined */
|
|
25
|
+
--radius-none: 0px;
|
|
26
|
+
--radius-sm: 6px;
|
|
27
|
+
--radius-md: 10px;
|
|
28
|
+
--radius-lg: 14px;
|
|
29
|
+
--radius-xl: 18px;
|
|
30
|
+
--radius-full: 9999px;
|
|
31
|
+
|
|
32
|
+
/* Border width */
|
|
33
|
+
--border-width: 1px;
|
|
34
|
+
--border-width-thin: 1px;
|
|
35
|
+
--border-width-thick: 2px;
|
|
36
|
+
|
|
37
|
+
/* Colors - Indigo palette, sophisticated */
|
|
38
|
+
--color-primary: #6366f1;
|
|
39
|
+
--color-primary-hover: #4f46e5;
|
|
40
|
+
--color-primary-foreground: #ffffff;
|
|
41
|
+
|
|
42
|
+
--color-secondary: #eef2ff;
|
|
43
|
+
--color-secondary-hover: #e0e7ff;
|
|
44
|
+
--color-secondary-foreground: #3730a3;
|
|
45
|
+
|
|
46
|
+
--color-accent: #818cf8;
|
|
47
|
+
--color-accent-foreground: #1e1b4b;
|
|
48
|
+
|
|
49
|
+
--color-muted: #e0e7ff;
|
|
50
|
+
--color-muted-foreground: #6b7280;
|
|
51
|
+
|
|
52
|
+
--color-background: #eef2ff;
|
|
53
|
+
--color-foreground: #1e1b4b;
|
|
54
|
+
--color-card: #ffffff;
|
|
55
|
+
--color-card-foreground: #1e1b4b;
|
|
56
|
+
--color-surface: #e0e7ff;
|
|
57
|
+
--color-border: rgba(99, 102, 241, 0.2);
|
|
58
|
+
--color-input: rgba(99, 102, 241, 0.15);
|
|
59
|
+
--color-ring: #6366f1;
|
|
60
|
+
|
|
61
|
+
/* Semantic colors */
|
|
62
|
+
--color-error: #dc2626;
|
|
63
|
+
--color-error-foreground: #ffffff;
|
|
64
|
+
--color-success: #16a34a;
|
|
65
|
+
--color-success-foreground: #ffffff;
|
|
66
|
+
--color-warning: #ca8a04;
|
|
67
|
+
--color-warning-foreground: #000000;
|
|
68
|
+
--color-info: #2563eb;
|
|
69
|
+
--color-info-foreground: #ffffff;
|
|
70
|
+
|
|
71
|
+
/* Typography - Wide, elegant */
|
|
72
|
+
--font-family:
|
|
73
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
74
|
+
--font-weight-normal: 300;
|
|
75
|
+
--font-weight-medium: 450;
|
|
76
|
+
--font-weight-bold: 600;
|
|
77
|
+
--letter-spacing: 0.02em;
|
|
78
|
+
--line-height: 1.6;
|
|
79
|
+
|
|
80
|
+
/* Icon styling - Indigo tint */
|
|
81
|
+
--icon-stroke-width: 1.5;
|
|
82
|
+
--icon-color: #6366f1;
|
|
83
|
+
|
|
84
|
+
/* Transitions - Slow, luxurious */
|
|
85
|
+
--transition-fast: 200ms;
|
|
86
|
+
--transition-normal: 400ms;
|
|
87
|
+
--transition-slow: 600ms;
|
|
88
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
89
|
+
|
|
90
|
+
/* Hover/Active transforms - Dignified, minimal */
|
|
91
|
+
--hover-scale: 1.01;
|
|
92
|
+
--hover-translate-y: -1px;
|
|
93
|
+
--hover-translate-x: 0;
|
|
94
|
+
--active-scale: 0.99;
|
|
95
|
+
--active-translate-y: 0;
|
|
96
|
+
|
|
97
|
+
/* Focus ring */
|
|
98
|
+
--focus-ring-width: 2px;
|
|
99
|
+
--focus-ring-offset: 2px;
|
|
100
|
+
--focus-ring-color: #6366f1;
|
|
101
|
+
|
|
102
|
+
/* Apply background and foreground colors */
|
|
103
|
+
background-color: var(--color-background);
|
|
104
|
+
color: var(--color-foreground);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* ==========================================================================
|
|
108
|
+
* DARK MODE
|
|
109
|
+
* ========================================================================== */
|
|
110
|
+
[data-theme="midnight-dark"] {
|
|
111
|
+
/* Shadows - Deep indigo-tinted */
|
|
112
|
+
--shadow-main: 0 1px 3px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(99, 102, 241, 0.1);
|
|
113
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
114
|
+
--shadow-lg:
|
|
115
|
+
0 10px 25px -5px rgba(0, 0, 0, 0.45), 0 8px 10px -6px rgba(99, 102, 241, 0.15);
|
|
116
|
+
--shadow-inner: inset 0 1px 2px rgba(0, 0, 0, 0.35);
|
|
117
|
+
--shadow-none: none;
|
|
118
|
+
--shadow-hover: 0 10px 40px -10px rgba(129, 140, 248, 0.3);
|
|
119
|
+
--shadow-active: 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
120
|
+
|
|
121
|
+
/* Border radius - Refined */
|
|
122
|
+
--radius-none: 0px;
|
|
123
|
+
--radius-sm: 6px;
|
|
124
|
+
--radius-md: 10px;
|
|
125
|
+
--radius-lg: 14px;
|
|
126
|
+
--radius-xl: 18px;
|
|
127
|
+
--radius-full: 9999px;
|
|
128
|
+
|
|
129
|
+
/* Border width */
|
|
130
|
+
--border-width: 1px;
|
|
131
|
+
--border-width-thin: 1px;
|
|
132
|
+
--border-width-thick: 2px;
|
|
133
|
+
|
|
134
|
+
/* Colors - Near-black indigo dark mode */
|
|
135
|
+
--color-primary: #818cf8;
|
|
136
|
+
--color-primary-hover: #a5b4fc;
|
|
137
|
+
--color-primary-foreground: #1e1b4b;
|
|
138
|
+
|
|
139
|
+
--color-secondary: #12122a;
|
|
140
|
+
--color-secondary-hover: #1e1e3d;
|
|
141
|
+
--color-secondary-foreground: #c7d2fe;
|
|
142
|
+
|
|
143
|
+
--color-accent: #818cf8;
|
|
144
|
+
--color-accent-foreground: #1e1b4b;
|
|
145
|
+
|
|
146
|
+
--color-muted: #1e1e3d;
|
|
147
|
+
--color-muted-foreground: #a5b4fc;
|
|
148
|
+
|
|
149
|
+
--color-background: #0a0a1a;
|
|
150
|
+
--color-foreground: #e0e7ff;
|
|
151
|
+
--color-card: #12122a;
|
|
152
|
+
--color-card-foreground: #e0e7ff;
|
|
153
|
+
--color-surface: #1e1e3d;
|
|
154
|
+
--color-border: rgba(129, 140, 248, 0.2);
|
|
155
|
+
--color-input: rgba(129, 140, 248, 0.15);
|
|
156
|
+
--color-ring: #818cf8;
|
|
157
|
+
|
|
158
|
+
/* Semantic colors - Brighter for dark mode */
|
|
159
|
+
--color-error: #f87171;
|
|
160
|
+
--color-error-foreground: #000000;
|
|
161
|
+
--color-success: #4ade80;
|
|
162
|
+
--color-success-foreground: #000000;
|
|
163
|
+
--color-warning: #fbbf24;
|
|
164
|
+
--color-warning-foreground: #000000;
|
|
165
|
+
--color-info: #60a5fa;
|
|
166
|
+
--color-info-foreground: #000000;
|
|
167
|
+
|
|
168
|
+
/* Typography */
|
|
169
|
+
--font-family:
|
|
170
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
171
|
+
--font-weight-normal: 300;
|
|
172
|
+
--font-weight-medium: 450;
|
|
173
|
+
--font-weight-bold: 600;
|
|
174
|
+
--letter-spacing: 0.02em;
|
|
175
|
+
--line-height: 1.6;
|
|
176
|
+
|
|
177
|
+
/* Icon styling - Lighter indigo for dark */
|
|
178
|
+
--icon-stroke-width: 1.5;
|
|
179
|
+
--icon-color: #818cf8;
|
|
180
|
+
|
|
181
|
+
/* Transitions - Slow, luxurious */
|
|
182
|
+
--transition-fast: 200ms;
|
|
183
|
+
--transition-normal: 400ms;
|
|
184
|
+
--transition-slow: 600ms;
|
|
185
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
186
|
+
|
|
187
|
+
/* Hover/Active transforms - Dignified, minimal */
|
|
188
|
+
--hover-scale: 1.01;
|
|
189
|
+
--hover-translate-y: -1px;
|
|
190
|
+
--hover-translate-x: 0;
|
|
191
|
+
--active-scale: 0.99;
|
|
192
|
+
--active-translate-y: 0;
|
|
193
|
+
|
|
194
|
+
/* Focus ring */
|
|
195
|
+
--focus-ring-width: 2px;
|
|
196
|
+
--focus-ring-offset: 2px;
|
|
197
|
+
--focus-ring-color: #818cf8;
|
|
198
|
+
|
|
199
|
+
/* Apply background and foreground colors */
|
|
200
|
+
background-color: var(--color-background);
|
|
201
|
+
color: var(--color-foreground);
|
|
202
|
+
}
|
package/themes/neon.css
ADDED
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Neon Theme — "Cyberpunk"
|
|
3
|
+
*
|
|
4
|
+
* A high-contrast cyberpunk palette with bright cyan and pink on dark
|
|
5
|
+
* backgrounds. Features neon glow box-shadows that intensify on hover,
|
|
6
|
+
* razor-sharp corners for a tech aesthetic, thick outlined borders, and
|
|
7
|
+
* near-instant linear transitions that feel digital and responsive.
|
|
8
|
+
* Wide letter-spacing and heavy weights evoke sci-fi terminal readouts.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/* ==========================================================================
|
|
12
|
+
* LIGHT MODE
|
|
13
|
+
* ========================================================================== */
|
|
14
|
+
[data-theme="neon-light"] {
|
|
15
|
+
/* Shadows - Soft standard (light mode is more restrained) */
|
|
16
|
+
--shadow-main: 0 2px 8px rgba(34, 211, 238, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
17
|
+
--shadow-sm: 0 1px 4px rgba(34, 211, 238, 0.08);
|
|
18
|
+
--shadow-lg:
|
|
19
|
+
0 6px 20px rgba(34, 211, 238, 0.12), 0 3px 8px rgba(0, 0, 0, 0.06);
|
|
20
|
+
--shadow-inner: inset 0 1px 3px rgba(34, 211, 238, 0.06);
|
|
21
|
+
--shadow-none: none;
|
|
22
|
+
--shadow-hover:
|
|
23
|
+
0 6px 24px rgba(34, 211, 238, 0.16), 0 2px 8px rgba(244, 114, 182, 0.06);
|
|
24
|
+
--shadow-active: 0 1px 4px rgba(34, 211, 238, 0.1);
|
|
25
|
+
|
|
26
|
+
/* Border radius - Sharp, tech aesthetic */
|
|
27
|
+
--radius-none: 0px;
|
|
28
|
+
--radius-sm: 2px;
|
|
29
|
+
--radius-md: 4px;
|
|
30
|
+
--radius-lg: 6px;
|
|
31
|
+
--radius-xl: 6px;
|
|
32
|
+
--radius-full: 9999px;
|
|
33
|
+
|
|
34
|
+
/* Border width - Thick outlined look */
|
|
35
|
+
--border-width: 2px;
|
|
36
|
+
--border-width-thin: 1px;
|
|
37
|
+
--border-width-thick: 3px;
|
|
38
|
+
|
|
39
|
+
/* Colors - Teal-tinted light mode */
|
|
40
|
+
--color-primary: #0891b2;
|
|
41
|
+
--color-primary-hover: #0e7490;
|
|
42
|
+
--color-primary-foreground: #ffffff;
|
|
43
|
+
|
|
44
|
+
--color-secondary: #ccfbf1;
|
|
45
|
+
--color-secondary-hover: #99f6e4;
|
|
46
|
+
--color-secondary-foreground: #134e4a;
|
|
47
|
+
|
|
48
|
+
--color-accent: #ec4899;
|
|
49
|
+
--color-accent-foreground: #ffffff;
|
|
50
|
+
|
|
51
|
+
--color-muted: #ccfbf1;
|
|
52
|
+
--color-muted-foreground: #64748b;
|
|
53
|
+
|
|
54
|
+
--color-background: #f0fdfa;
|
|
55
|
+
--color-foreground: #134e4a;
|
|
56
|
+
--color-card: #ffffff;
|
|
57
|
+
--color-card-foreground: #134e4a;
|
|
58
|
+
--color-surface: #ccfbf1;
|
|
59
|
+
--color-border: rgba(34, 211, 238, 0.3);
|
|
60
|
+
--color-input: rgba(34, 211, 238, 0.35);
|
|
61
|
+
--color-ring: #22d3ee;
|
|
62
|
+
|
|
63
|
+
/* Semantic colors */
|
|
64
|
+
--color-error: #dc2626;
|
|
65
|
+
--color-error-foreground: #ffffff;
|
|
66
|
+
--color-success: #16a34a;
|
|
67
|
+
--color-success-foreground: #ffffff;
|
|
68
|
+
--color-warning: #ca8a04;
|
|
69
|
+
--color-warning-foreground: #000000;
|
|
70
|
+
--color-info: #2563eb;
|
|
71
|
+
--color-info-foreground: #ffffff;
|
|
72
|
+
|
|
73
|
+
/* Typography - Wide, tech */
|
|
74
|
+
--font-family:
|
|
75
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
76
|
+
--font-weight-normal: 500;
|
|
77
|
+
--font-weight-medium: 600;
|
|
78
|
+
--font-weight-bold: 800;
|
|
79
|
+
--letter-spacing: 0.05em;
|
|
80
|
+
--line-height: 1.5;
|
|
81
|
+
|
|
82
|
+
/* Icon styling */
|
|
83
|
+
--icon-stroke-width: 2.0;
|
|
84
|
+
--icon-color: #22d3ee;
|
|
85
|
+
|
|
86
|
+
/* Transitions - Instant, digital */
|
|
87
|
+
--transition-fast: 50ms;
|
|
88
|
+
--transition-normal: 100ms;
|
|
89
|
+
--transition-slow: 150ms;
|
|
90
|
+
--transition-timing: linear;
|
|
91
|
+
|
|
92
|
+
/* Hover/Active transforms - Glow comes from shadow, not movement */
|
|
93
|
+
--hover-scale: 1.0;
|
|
94
|
+
--hover-translate-y: 0;
|
|
95
|
+
--hover-translate-x: 0;
|
|
96
|
+
--active-scale: 0.98;
|
|
97
|
+
--active-translate-y: 0;
|
|
98
|
+
|
|
99
|
+
/* Focus ring */
|
|
100
|
+
--focus-ring-width: 2px;
|
|
101
|
+
--focus-ring-offset: 2px;
|
|
102
|
+
--focus-ring-color: #22d3ee;
|
|
103
|
+
|
|
104
|
+
/* Apply background and foreground colors */
|
|
105
|
+
background-color: var(--color-background);
|
|
106
|
+
color: var(--color-foreground);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* ==========================================================================
|
|
110
|
+
* DARK MODE
|
|
111
|
+
* ========================================================================== */
|
|
112
|
+
[data-theme="neon-dark"] {
|
|
113
|
+
/* Shadows - NEON GLOW effect */
|
|
114
|
+
--shadow-main:
|
|
115
|
+
0 0 12px rgba(34, 211, 238, 0.3), 0 4px 14px rgba(0, 0, 0, 0.4);
|
|
116
|
+
--shadow-sm:
|
|
117
|
+
0 0 6px rgba(34, 211, 238, 0.2), 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
118
|
+
--shadow-lg:
|
|
119
|
+
0 0 24px rgba(34, 211, 238, 0.4), 0 8px 30px rgba(0, 0, 0, 0.5);
|
|
120
|
+
--shadow-inner: inset 0 0 8px rgba(34, 211, 238, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
121
|
+
--shadow-none: none;
|
|
122
|
+
--shadow-hover:
|
|
123
|
+
0 0 20px rgba(34, 211, 238, 0.5), 0 0 40px rgba(244, 114, 182, 0.2);
|
|
124
|
+
--shadow-active:
|
|
125
|
+
0 0 8px rgba(34, 211, 238, 0.25), 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
126
|
+
|
|
127
|
+
/* Border radius - Sharp, tech aesthetic */
|
|
128
|
+
--radius-none: 0px;
|
|
129
|
+
--radius-sm: 2px;
|
|
130
|
+
--radius-md: 4px;
|
|
131
|
+
--radius-lg: 6px;
|
|
132
|
+
--radius-xl: 6px;
|
|
133
|
+
--radius-full: 9999px;
|
|
134
|
+
|
|
135
|
+
/* Border width - Thick outlined look */
|
|
136
|
+
--border-width: 2px;
|
|
137
|
+
--border-width-thin: 1px;
|
|
138
|
+
--border-width-thick: 3px;
|
|
139
|
+
|
|
140
|
+
/* Colors - Cyberpunk dark */
|
|
141
|
+
--color-primary: #22d3ee;
|
|
142
|
+
--color-primary-hover: #06b6d4;
|
|
143
|
+
--color-primary-foreground: #042f2e;
|
|
144
|
+
|
|
145
|
+
--color-secondary: #0f172a;
|
|
146
|
+
--color-secondary-hover: #1e293b;
|
|
147
|
+
--color-secondary-foreground: #e2e8f0;
|
|
148
|
+
|
|
149
|
+
--color-accent: #f472b6;
|
|
150
|
+
--color-accent-foreground: #4a044e;
|
|
151
|
+
|
|
152
|
+
--color-muted: #1e293b;
|
|
153
|
+
--color-muted-foreground: #67e8f9;
|
|
154
|
+
|
|
155
|
+
--color-background: #020617;
|
|
156
|
+
--color-foreground: #e2e8f0;
|
|
157
|
+
--color-card: #0f172a;
|
|
158
|
+
--color-card-foreground: #e2e8f0;
|
|
159
|
+
--color-surface: #1e293b;
|
|
160
|
+
--color-border: rgba(34, 211, 238, 0.3);
|
|
161
|
+
--color-input: rgba(34, 211, 238, 0.35);
|
|
162
|
+
--color-ring: #22d3ee;
|
|
163
|
+
|
|
164
|
+
/* Semantic colors - Neon-bright for dark mode */
|
|
165
|
+
--color-error: #ff6b6b;
|
|
166
|
+
--color-error-foreground: #000000;
|
|
167
|
+
--color-success: #4ade80;
|
|
168
|
+
--color-success-foreground: #000000;
|
|
169
|
+
--color-warning: #fbbf24;
|
|
170
|
+
--color-warning-foreground: #000000;
|
|
171
|
+
--color-info: #38bdf8;
|
|
172
|
+
--color-info-foreground: #000000;
|
|
173
|
+
|
|
174
|
+
/* Typography - Wide, tech */
|
|
175
|
+
--font-family:
|
|
176
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
177
|
+
--font-weight-normal: 500;
|
|
178
|
+
--font-weight-medium: 600;
|
|
179
|
+
--font-weight-bold: 800;
|
|
180
|
+
--letter-spacing: 0.05em;
|
|
181
|
+
--line-height: 1.5;
|
|
182
|
+
|
|
183
|
+
/* Icon styling */
|
|
184
|
+
--icon-stroke-width: 2.0;
|
|
185
|
+
--icon-color: #22d3ee;
|
|
186
|
+
|
|
187
|
+
/* Transitions - Instant, digital */
|
|
188
|
+
--transition-fast: 50ms;
|
|
189
|
+
--transition-normal: 100ms;
|
|
190
|
+
--transition-slow: 150ms;
|
|
191
|
+
--transition-timing: linear;
|
|
192
|
+
|
|
193
|
+
/* Hover/Active transforms - Glow comes from shadow, not movement */
|
|
194
|
+
--hover-scale: 1.0;
|
|
195
|
+
--hover-translate-y: 0;
|
|
196
|
+
--hover-translate-x: 0;
|
|
197
|
+
--active-scale: 0.98;
|
|
198
|
+
--active-translate-y: 0;
|
|
199
|
+
|
|
200
|
+
/* Focus ring */
|
|
201
|
+
--focus-ring-width: 2px;
|
|
202
|
+
--focus-ring-offset: 2px;
|
|
203
|
+
--focus-ring-color: #22d3ee;
|
|
204
|
+
|
|
205
|
+
/* Apply background and foreground colors */
|
|
206
|
+
background-color: var(--color-background);
|
|
207
|
+
color: var(--color-foreground);
|
|
208
|
+
}
|