@almadar/ui 1.0.21 → 1.0.22
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
package/themes/ocean.css
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ocean Theme - "Deep Sea Calm"
|
|
3
|
+
*
|
|
4
|
+
* Inspired by the tranquil depths of the ocean. Features soft layered
|
|
5
|
+
* shadows with blue tints, smooth wave-like border radii, and a serene
|
|
6
|
+
* palette ranging from deep navy to bright cyan. Slow, fluid transitions
|
|
7
|
+
* create a calm, immersive experience like light filtering through water.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* ==========================================================================
|
|
11
|
+
* LIGHT MODE
|
|
12
|
+
* ========================================================================== */
|
|
13
|
+
[data-theme="ocean-light"] {
|
|
14
|
+
/* Shadows - Soft layered with blue tint */
|
|
15
|
+
--shadow-main:
|
|
16
|
+
0 4px 12px rgba(0, 119, 182, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
17
|
+
--shadow-sm: 0 2px 6px rgba(0, 119, 182, 0.08);
|
|
18
|
+
--shadow-lg:
|
|
19
|
+
0 8px 28px rgba(0, 119, 182, 0.14), 0 4px 10px rgba(0, 0, 0, 0.05);
|
|
20
|
+
--shadow-inner: inset 0 1px 3px rgba(0, 119, 182, 0.06);
|
|
21
|
+
--shadow-none: none;
|
|
22
|
+
--shadow-hover:
|
|
23
|
+
0 12px 36px rgba(0, 119, 182, 0.18), 0 4px 12px rgba(0, 180, 216, 0.1);
|
|
24
|
+
--shadow-active: 0 2px 6px rgba(0, 119, 182, 0.12);
|
|
25
|
+
|
|
26
|
+
/* Border radius - Smooth like waves */
|
|
27
|
+
--radius-none: 0px;
|
|
28
|
+
--radius-sm: 8px;
|
|
29
|
+
--radius-md: 12px;
|
|
30
|
+
--radius-lg: 16px;
|
|
31
|
+
--radius-xl: 18px;
|
|
32
|
+
--radius-full: 9999px;
|
|
33
|
+
|
|
34
|
+
/* Border width */
|
|
35
|
+
--border-width: 1px;
|
|
36
|
+
--border-width-thin: 1px;
|
|
37
|
+
--border-width-thick: 2px;
|
|
38
|
+
|
|
39
|
+
/* Colors - Ocean blue on light background */
|
|
40
|
+
--color-primary: #0077b6;
|
|
41
|
+
--color-primary-hover: #005f8a;
|
|
42
|
+
--color-primary-foreground: #ffffff;
|
|
43
|
+
|
|
44
|
+
--color-secondary: #edf6f9;
|
|
45
|
+
--color-secondary-hover: #d6eef5;
|
|
46
|
+
--color-secondary-foreground: #023e5a;
|
|
47
|
+
|
|
48
|
+
--color-accent: #00b4d8;
|
|
49
|
+
--color-accent-foreground: #ffffff;
|
|
50
|
+
|
|
51
|
+
--color-muted: #edf6f9;
|
|
52
|
+
--color-muted-foreground: #5a7d8e;
|
|
53
|
+
|
|
54
|
+
--color-background: #f7fbfd;
|
|
55
|
+
--color-foreground: #0a2540;
|
|
56
|
+
--color-card: #ffffff;
|
|
57
|
+
--color-card-foreground: #0a2540;
|
|
58
|
+
--color-surface: #edf6f9;
|
|
59
|
+
--color-border: rgba(0, 119, 182, 0.2);
|
|
60
|
+
--color-input: rgba(0, 119, 182, 0.15);
|
|
61
|
+
--color-ring: #0077b6;
|
|
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: #0ea5e9;
|
|
71
|
+
--color-info-foreground: #ffffff;
|
|
72
|
+
|
|
73
|
+
/* Typography - Clean, spacious */
|
|
74
|
+
--font-family:
|
|
75
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
76
|
+
--font-weight-normal: 400;
|
|
77
|
+
--font-weight-medium: 500;
|
|
78
|
+
--font-weight-bold: 600;
|
|
79
|
+
--letter-spacing: 0.01em;
|
|
80
|
+
--line-height: 1.65;
|
|
81
|
+
|
|
82
|
+
/* Icon styling */
|
|
83
|
+
--icon-stroke-width: 1.75;
|
|
84
|
+
--icon-color: #0077b6;
|
|
85
|
+
|
|
86
|
+
/* Transitions - Slow and smooth like currents */
|
|
87
|
+
--transition-fast: 200ms;
|
|
88
|
+
--transition-normal: 350ms;
|
|
89
|
+
--transition-slow: 500ms;
|
|
90
|
+
--transition-timing: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
91
|
+
|
|
92
|
+
/* Hover/Active transforms */
|
|
93
|
+
--hover-scale: 1.02;
|
|
94
|
+
--hover-translate-y: -2px;
|
|
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: #0077b6;
|
|
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="ocean-dark"] {
|
|
113
|
+
/* Shadows - Blue-tinted colored glow */
|
|
114
|
+
--shadow-main:
|
|
115
|
+
0 4px 14px rgba(72, 202, 228, 0.12), 0 1px 3px rgba(0, 0, 0, 0.15);
|
|
116
|
+
--shadow-sm: 0 2px 6px rgba(72, 202, 228, 0.08);
|
|
117
|
+
--shadow-lg:
|
|
118
|
+
0 8px 30px rgba(72, 202, 228, 0.2), 0 4px 10px rgba(0, 0, 0, 0.12);
|
|
119
|
+
--shadow-inner: inset 0 1px 3px rgba(0, 0, 0, 0.15);
|
|
120
|
+
--shadow-none: none;
|
|
121
|
+
--shadow-hover:
|
|
122
|
+
0 12px 40px rgba(72, 202, 228, 0.3), 0 4px 12px rgba(0, 180, 216, 0.15);
|
|
123
|
+
--shadow-active: 0 2px 8px rgba(72, 202, 228, 0.18);
|
|
124
|
+
|
|
125
|
+
/* Border radius - Smooth like waves */
|
|
126
|
+
--radius-none: 0px;
|
|
127
|
+
--radius-sm: 8px;
|
|
128
|
+
--radius-md: 12px;
|
|
129
|
+
--radius-lg: 16px;
|
|
130
|
+
--radius-xl: 18px;
|
|
131
|
+
--radius-full: 9999px;
|
|
132
|
+
|
|
133
|
+
/* Border width */
|
|
134
|
+
--border-width: 1px;
|
|
135
|
+
--border-width-thin: 1px;
|
|
136
|
+
--border-width-thick: 2px;
|
|
137
|
+
|
|
138
|
+
/* Colors - Bright cyan on deep navy */
|
|
139
|
+
--color-primary: #48cae4;
|
|
140
|
+
--color-primary-hover: #76d8eb;
|
|
141
|
+
--color-primary-foreground: #062031;
|
|
142
|
+
|
|
143
|
+
--color-secondary: #112840;
|
|
144
|
+
--color-secondary-hover: #1a3654;
|
|
145
|
+
--color-secondary-foreground: #cae9f5;
|
|
146
|
+
|
|
147
|
+
--color-accent: #00b4d8;
|
|
148
|
+
--color-accent-foreground: #062031;
|
|
149
|
+
|
|
150
|
+
--color-muted: #112840;
|
|
151
|
+
--color-muted-foreground: #8ab4c8;
|
|
152
|
+
|
|
153
|
+
--color-background: #0a1628;
|
|
154
|
+
--color-foreground: #e8f0f5;
|
|
155
|
+
--color-card: #0f2035;
|
|
156
|
+
--color-card-foreground: #e8f0f5;
|
|
157
|
+
--color-surface: #112840;
|
|
158
|
+
--color-border: rgba(72, 202, 228, 0.22);
|
|
159
|
+
--color-input: rgba(72, 202, 228, 0.25);
|
|
160
|
+
--color-ring: #48cae4;
|
|
161
|
+
|
|
162
|
+
/* Semantic colors - Brighter for dark mode */
|
|
163
|
+
--color-error: #f87171;
|
|
164
|
+
--color-error-foreground: #000000;
|
|
165
|
+
--color-success: #4ade80;
|
|
166
|
+
--color-success-foreground: #000000;
|
|
167
|
+
--color-warning: #fbbf24;
|
|
168
|
+
--color-warning-foreground: #000000;
|
|
169
|
+
--color-info: #38bdf8;
|
|
170
|
+
--color-info-foreground: #000000;
|
|
171
|
+
|
|
172
|
+
/* Typography - Clean, spacious */
|
|
173
|
+
--font-family:
|
|
174
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
175
|
+
--font-weight-normal: 400;
|
|
176
|
+
--font-weight-medium: 500;
|
|
177
|
+
--font-weight-bold: 600;
|
|
178
|
+
--letter-spacing: 0.01em;
|
|
179
|
+
--line-height: 1.65;
|
|
180
|
+
|
|
181
|
+
/* Icon styling */
|
|
182
|
+
--icon-stroke-width: 1.75;
|
|
183
|
+
--icon-color: #48cae4;
|
|
184
|
+
|
|
185
|
+
/* Transitions - Slow and smooth like currents */
|
|
186
|
+
--transition-fast: 200ms;
|
|
187
|
+
--transition-normal: 350ms;
|
|
188
|
+
--transition-slow: 500ms;
|
|
189
|
+
--transition-timing: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
190
|
+
|
|
191
|
+
/* Hover/Active transforms */
|
|
192
|
+
--hover-scale: 1.02;
|
|
193
|
+
--hover-translate-y: -2px;
|
|
194
|
+
--hover-translate-x: 0;
|
|
195
|
+
--active-scale: 0.98;
|
|
196
|
+
--active-translate-y: 0;
|
|
197
|
+
|
|
198
|
+
/* Focus ring */
|
|
199
|
+
--focus-ring-width: 2px;
|
|
200
|
+
--focus-ring-offset: 2px;
|
|
201
|
+
--focus-ring-color: #48cae4;
|
|
202
|
+
|
|
203
|
+
/* Apply background and foreground colors */
|
|
204
|
+
background-color: var(--color-background);
|
|
205
|
+
color: var(--color-foreground);
|
|
206
|
+
}
|
package/themes/rose.css
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Rose Theme — "Elegant Bloom"
|
|
3
|
+
*
|
|
4
|
+
* Pink and rose palette with warm, elegant, and sophisticated aesthetics.
|
|
5
|
+
* Gentle curves, graceful transitions, and rose-tinted shadows create
|
|
6
|
+
* a refined atmosphere perfect for lifestyle, beauty, and luxury UIs.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* ==========================================================================
|
|
10
|
+
* LIGHT MODE
|
|
11
|
+
* ========================================================================== */
|
|
12
|
+
[data-theme="rose-light"] {
|
|
13
|
+
/* Shadows - Rose-tinted, warm */
|
|
14
|
+
--shadow-main: 0 1px 3px rgba(225, 29, 72, 0.08), 0 1px 2px rgba(225, 29, 72, 0.05);
|
|
15
|
+
--shadow-sm: 0 1px 2px rgba(225, 29, 72, 0.05);
|
|
16
|
+
--shadow-lg:
|
|
17
|
+
0 10px 25px -5px rgba(225, 29, 72, 0.12), 0 8px 10px -6px rgba(225, 29, 72, 0.08);
|
|
18
|
+
--shadow-inner: inset 0 1px 2px rgba(225, 29, 72, 0.06);
|
|
19
|
+
--shadow-none: none;
|
|
20
|
+
--shadow-hover: 0 10px 40px -10px rgba(225, 29, 72, 0.2);
|
|
21
|
+
--shadow-active: 0 1px 2px rgba(225, 29, 72, 0.05);
|
|
22
|
+
|
|
23
|
+
/* Border radius - Gentle curves */
|
|
24
|
+
--radius-none: 0px;
|
|
25
|
+
--radius-sm: 8px;
|
|
26
|
+
--radius-md: 12px;
|
|
27
|
+
--radius-lg: 16px;
|
|
28
|
+
--radius-xl: 22px;
|
|
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 - Rose palette, warm and elegant */
|
|
37
|
+
--color-primary: #e11d48;
|
|
38
|
+
--color-primary-hover: #be123c;
|
|
39
|
+
--color-primary-foreground: #ffffff;
|
|
40
|
+
|
|
41
|
+
--color-secondary: #fff1f2;
|
|
42
|
+
--color-secondary-hover: #ffe4e6;
|
|
43
|
+
--color-secondary-foreground: #9f1239;
|
|
44
|
+
|
|
45
|
+
--color-accent: #fb7185;
|
|
46
|
+
--color-accent-foreground: #4c0519;
|
|
47
|
+
|
|
48
|
+
--color-muted: #ffe4e6;
|
|
49
|
+
--color-muted-foreground: #6b7280;
|
|
50
|
+
|
|
51
|
+
--color-background: #fff1f2;
|
|
52
|
+
--color-foreground: #4c0519;
|
|
53
|
+
--color-card: #ffffff;
|
|
54
|
+
--color-card-foreground: #4c0519;
|
|
55
|
+
--color-surface: #ffe4e6;
|
|
56
|
+
--color-border: rgba(225, 29, 72, 0.15);
|
|
57
|
+
--color-input: rgba(225, 29, 72, 0.12);
|
|
58
|
+
--color-ring: #e11d48;
|
|
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 - Light, elegant */
|
|
71
|
+
--font-family:
|
|
72
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
73
|
+
--font-weight-normal: 300;
|
|
74
|
+
--font-weight-medium: 450;
|
|
75
|
+
--font-weight-bold: 600;
|
|
76
|
+
--letter-spacing: -0.01em;
|
|
77
|
+
--line-height: 1.65;
|
|
78
|
+
|
|
79
|
+
/* Icon styling - Rose tint */
|
|
80
|
+
--icon-stroke-width: 1.5;
|
|
81
|
+
--icon-color: #e11d48;
|
|
82
|
+
|
|
83
|
+
/* Transitions - Graceful, smooth */
|
|
84
|
+
--transition-fast: 200ms;
|
|
85
|
+
--transition-normal: 350ms;
|
|
86
|
+
--transition-slow: 500ms;
|
|
87
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
88
|
+
|
|
89
|
+
/* Hover/Active transforms - Subtle, elegant */
|
|
90
|
+
--hover-scale: 1.01;
|
|
91
|
+
--hover-translate-y: -1px;
|
|
92
|
+
--hover-translate-x: 0;
|
|
93
|
+
--active-scale: 0.99;
|
|
94
|
+
--active-translate-y: 0;
|
|
95
|
+
|
|
96
|
+
/* Focus ring */
|
|
97
|
+
--focus-ring-width: 2px;
|
|
98
|
+
--focus-ring-offset: 2px;
|
|
99
|
+
--focus-ring-color: #e11d48;
|
|
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="rose-dark"] {
|
|
110
|
+
/* Shadows - Deep rose-tinted */
|
|
111
|
+
--shadow-main: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(225, 29, 72, 0.12);
|
|
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(225, 29, 72, 0.15);
|
|
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(251, 113, 133, 0.3);
|
|
118
|
+
--shadow-active: 0 1px 2px rgba(0, 0, 0, 0.25);
|
|
119
|
+
|
|
120
|
+
/* Border radius - Gentle curves */
|
|
121
|
+
--radius-none: 0px;
|
|
122
|
+
--radius-sm: 8px;
|
|
123
|
+
--radius-md: 12px;
|
|
124
|
+
--radius-lg: 16px;
|
|
125
|
+
--radius-xl: 22px;
|
|
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 rose dark mode */
|
|
134
|
+
--color-primary: #fb7185;
|
|
135
|
+
--color-primary-hover: #fda4af;
|
|
136
|
+
--color-primary-foreground: #4c0519;
|
|
137
|
+
|
|
138
|
+
--color-secondary: #2a0a1a;
|
|
139
|
+
--color-secondary-hover: #3d1025;
|
|
140
|
+
--color-secondary-foreground: #fecdd3;
|
|
141
|
+
|
|
142
|
+
--color-accent: #fb7185;
|
|
143
|
+
--color-accent-foreground: #4c0519;
|
|
144
|
+
|
|
145
|
+
--color-muted: #2a0a1a;
|
|
146
|
+
--color-muted-foreground: #fda4af;
|
|
147
|
+
|
|
148
|
+
--color-background: #1a0510;
|
|
149
|
+
--color-foreground: #ffe4e6;
|
|
150
|
+
--color-card: #2a0a1a;
|
|
151
|
+
--color-card-foreground: #ffe4e6;
|
|
152
|
+
--color-surface: #3d1025;
|
|
153
|
+
--color-border: rgba(251, 113, 133, 0.2);
|
|
154
|
+
--color-input: rgba(251, 113, 133, 0.15);
|
|
155
|
+
--color-ring: #fb7185;
|
|
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: 300;
|
|
171
|
+
--font-weight-medium: 450;
|
|
172
|
+
--font-weight-bold: 600;
|
|
173
|
+
--letter-spacing: -0.01em;
|
|
174
|
+
--line-height: 1.65;
|
|
175
|
+
|
|
176
|
+
/* Icon styling - Lighter rose for dark */
|
|
177
|
+
--icon-stroke-width: 1.5;
|
|
178
|
+
--icon-color: #fb7185;
|
|
179
|
+
|
|
180
|
+
/* Transitions - Graceful, smooth */
|
|
181
|
+
--transition-fast: 200ms;
|
|
182
|
+
--transition-normal: 350ms;
|
|
183
|
+
--transition-slow: 500ms;
|
|
184
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
185
|
+
|
|
186
|
+
/* Hover/Active transforms - Subtle, elegant */
|
|
187
|
+
--hover-scale: 1.01;
|
|
188
|
+
--hover-translate-y: -1px;
|
|
189
|
+
--hover-translate-x: 0;
|
|
190
|
+
--active-scale: 0.99;
|
|
191
|
+
--active-translate-y: 0;
|
|
192
|
+
|
|
193
|
+
/* Focus ring */
|
|
194
|
+
--focus-ring-width: 2px;
|
|
195
|
+
--focus-ring-offset: 2px;
|
|
196
|
+
--focus-ring-color: #fb7185;
|
|
197
|
+
|
|
198
|
+
/* Apply background and foreground colors */
|
|
199
|
+
background-color: var(--color-background);
|
|
200
|
+
color: var(--color-foreground);
|
|
201
|
+
}
|
package/themes/sand.css
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sand Theme — "Desert Minimal"
|
|
3
|
+
*
|
|
4
|
+
* Warm beige and amber earth tones that evoke sun-baked desert landscapes.
|
|
5
|
+
* A calm, natural aesthetic with soft golden shadows, rounded organic radii,
|
|
6
|
+
* and gentle transitions. The palette draws from sandstone, amber, and
|
|
7
|
+
* sun-bleached clay — grounded, warm, and inviting.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* ==========================================================================
|
|
11
|
+
* LIGHT MODE
|
|
12
|
+
* ========================================================================== */
|
|
13
|
+
[data-theme="sand-light"] {
|
|
14
|
+
/* Shadows - Warm earth-toned, amber-tinted */
|
|
15
|
+
--shadow-main: 0 1px 3px rgba(146, 64, 14, 0.08), 0 1px 2px rgba(146, 64, 14, 0.05);
|
|
16
|
+
--shadow-sm: 0 1px 2px rgba(146, 64, 14, 0.05);
|
|
17
|
+
--shadow-lg:
|
|
18
|
+
0 10px 25px -5px rgba(146, 64, 14, 0.1), 0 8px 10px -6px rgba(146, 64, 14, 0.06);
|
|
19
|
+
--shadow-inner: inset 0 1px 2px rgba(146, 64, 14, 0.05);
|
|
20
|
+
--shadow-none: none;
|
|
21
|
+
--shadow-hover: 0 10px 40px -10px rgba(146, 64, 14, 0.14);
|
|
22
|
+
--shadow-active: 0 1px 2px rgba(146, 64, 14, 0.05);
|
|
23
|
+
|
|
24
|
+
/* Border radius - Natural, soft */
|
|
25
|
+
--radius-none: 0px;
|
|
26
|
+
--radius-sm: 6px;
|
|
27
|
+
--radius-md: 8px;
|
|
28
|
+
--radius-lg: 12px;
|
|
29
|
+
--radius-xl: 16px;
|
|
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 - Warm amber earth tones */
|
|
38
|
+
--color-primary: #92400e;
|
|
39
|
+
--color-primary-hover: #78350f;
|
|
40
|
+
--color-primary-foreground: #ffffff;
|
|
41
|
+
|
|
42
|
+
--color-secondary: #fef9c3;
|
|
43
|
+
--color-secondary-hover: #fef3c7;
|
|
44
|
+
--color-secondary-foreground: #451a03;
|
|
45
|
+
|
|
46
|
+
--color-accent: #d97706;
|
|
47
|
+
--color-accent-foreground: #ffffff;
|
|
48
|
+
|
|
49
|
+
--color-muted: #fef9c3;
|
|
50
|
+
--color-muted-foreground: #78716c;
|
|
51
|
+
|
|
52
|
+
--color-background: #fefdfb;
|
|
53
|
+
--color-foreground: #451a03;
|
|
54
|
+
--color-card: #ffffff;
|
|
55
|
+
--color-card-foreground: #451a03;
|
|
56
|
+
--color-surface: #fef3c7;
|
|
57
|
+
--color-border: rgba(146, 64, 14, 0.2);
|
|
58
|
+
--color-input: rgba(146, 64, 14, 0.22);
|
|
59
|
+
--color-ring: #92400e;
|
|
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 */
|
|
72
|
+
--font-family:
|
|
73
|
+
"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
74
|
+
--font-weight-normal: 400;
|
|
75
|
+
--font-weight-medium: 500;
|
|
76
|
+
--font-weight-bold: 600;
|
|
77
|
+
--letter-spacing: 0em;
|
|
78
|
+
--line-height: 1.6;
|
|
79
|
+
|
|
80
|
+
/* Icon styling */
|
|
81
|
+
--icon-stroke-width: 1.75;
|
|
82
|
+
--icon-color: #92400e;
|
|
83
|
+
|
|
84
|
+
/* Transitions - Gentle, natural */
|
|
85
|
+
--transition-fast: 150ms;
|
|
86
|
+
--transition-normal: 300ms;
|
|
87
|
+
--transition-slow: 450ms;
|
|
88
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
89
|
+
|
|
90
|
+
/* Hover/Active transforms */
|
|
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: #92400e;
|
|
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="sand-dark"] {
|
|
111
|
+
/* Shadows - Deep warm amber glow */
|
|
112
|
+
--shadow-main: 0 1px 3px rgba(217, 119, 6, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
113
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
114
|
+
--shadow-lg:
|
|
115
|
+
0 10px 25px -5px rgba(0, 0, 0, 0.35), 0 8px 10px -6px rgba(217, 119, 6, 0.08);
|
|
116
|
+
--shadow-inner: inset 0 1px 2px rgba(0, 0, 0, 0.25);
|
|
117
|
+
--shadow-none: none;
|
|
118
|
+
--shadow-hover: 0 10px 40px -10px rgba(217, 119, 6, 0.15);
|
|
119
|
+
--shadow-active: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
120
|
+
|
|
121
|
+
/* Border radius - Natural, soft */
|
|
122
|
+
--radius-none: 0px;
|
|
123
|
+
--radius-sm: 6px;
|
|
124
|
+
--radius-md: 8px;
|
|
125
|
+
--radius-lg: 12px;
|
|
126
|
+
--radius-xl: 16px;
|
|
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 - Warm amber on deep brown */
|
|
135
|
+
--color-primary: #fbbf24;
|
|
136
|
+
--color-primary-hover: #fcd34d;
|
|
137
|
+
--color-primary-foreground: #18120a;
|
|
138
|
+
|
|
139
|
+
--color-secondary: #241c10;
|
|
140
|
+
--color-secondary-hover: #302416;
|
|
141
|
+
--color-secondary-foreground: #fef3c7;
|
|
142
|
+
|
|
143
|
+
--color-accent: #d97706;
|
|
144
|
+
--color-accent-foreground: #ffffff;
|
|
145
|
+
|
|
146
|
+
--color-muted: #241c10;
|
|
147
|
+
--color-muted-foreground: #fbbf24;
|
|
148
|
+
|
|
149
|
+
--color-background: #18120a;
|
|
150
|
+
--color-foreground: #fef3c7;
|
|
151
|
+
--color-card: #241c10;
|
|
152
|
+
--color-card-foreground: #fef3c7;
|
|
153
|
+
--color-surface: #302416;
|
|
154
|
+
--color-border: rgba(217, 119, 6, 0.2);
|
|
155
|
+
--color-input: rgba(217, 119, 6, 0.25);
|
|
156
|
+
--color-ring: #fbbf24;
|
|
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: 400;
|
|
172
|
+
--font-weight-medium: 500;
|
|
173
|
+
--font-weight-bold: 600;
|
|
174
|
+
--letter-spacing: 0em;
|
|
175
|
+
--line-height: 1.6;
|
|
176
|
+
|
|
177
|
+
/* Icon styling */
|
|
178
|
+
--icon-stroke-width: 1.75;
|
|
179
|
+
--icon-color: #d97706;
|
|
180
|
+
|
|
181
|
+
/* Transitions - Gentle, natural */
|
|
182
|
+
--transition-fast: 150ms;
|
|
183
|
+
--transition-normal: 300ms;
|
|
184
|
+
--transition-slow: 450ms;
|
|
185
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
186
|
+
|
|
187
|
+
/* Hover/Active transforms */
|
|
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: #d97706;
|
|
198
|
+
|
|
199
|
+
/* Apply background and foreground colors */
|
|
200
|
+
background-color: var(--color-background);
|
|
201
|
+
color: var(--color-foreground);
|
|
202
|
+
}
|