@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/slate.css
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Slate Theme — "Corporate Edge"
|
|
3
|
+
*
|
|
4
|
+
* A cool gray, professional palette built for corporate dashboards
|
|
5
|
+
* and business applications. Features sharp, almost-square corners,
|
|
6
|
+
* minimal shadows with small offsets, and snappy transitions that
|
|
7
|
+
* convey precision and efficiency. Heavy Inter weights anchor the
|
|
8
|
+
* typography with tight negative letter-spacing for a dense, data-rich feel.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/* ==========================================================================
|
|
12
|
+
* LIGHT MODE
|
|
13
|
+
* ========================================================================== */
|
|
14
|
+
[data-theme="slate-light"] {
|
|
15
|
+
/* Shadows - Sharp minimal (small offset, low blur) */
|
|
16
|
+
--shadow-main: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
|
|
17
|
+
--shadow-sm: 0 1px 1px rgba(15, 23, 42, 0.04);
|
|
18
|
+
--shadow-lg: 0 4px 8px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
|
|
19
|
+
--shadow-inner: inset 0 1px 2px rgba(15, 23, 42, 0.05);
|
|
20
|
+
--shadow-none: none;
|
|
21
|
+
--shadow-hover: 0 4px 12px -4px rgba(15, 23, 42, 0.1);
|
|
22
|
+
--shadow-active: 0 1px 1px rgba(15, 23, 42, 0.04);
|
|
23
|
+
|
|
24
|
+
/* Border radius - Almost sharp, corporate */
|
|
25
|
+
--radius-none: 0px;
|
|
26
|
+
--radius-sm: 2px;
|
|
27
|
+
--radius-md: 4px;
|
|
28
|
+
--radius-lg: 6px;
|
|
29
|
+
--radius-xl: 8px;
|
|
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 - Cool slate grays */
|
|
38
|
+
--color-primary: #475569;
|
|
39
|
+
--color-primary-hover: #334155;
|
|
40
|
+
--color-primary-foreground: #ffffff;
|
|
41
|
+
|
|
42
|
+
--color-secondary: #f1f5f9;
|
|
43
|
+
--color-secondary-hover: #e2e8f0;
|
|
44
|
+
--color-secondary-foreground: #1e293b;
|
|
45
|
+
|
|
46
|
+
--color-accent: #0ea5e9;
|
|
47
|
+
--color-accent-foreground: #ffffff;
|
|
48
|
+
|
|
49
|
+
--color-muted: #f1f5f9;
|
|
50
|
+
--color-muted-foreground: #64748b;
|
|
51
|
+
|
|
52
|
+
--color-background: #f8fafc;
|
|
53
|
+
--color-foreground: #0f172a;
|
|
54
|
+
--color-card: #ffffff;
|
|
55
|
+
--color-card-foreground: #0f172a;
|
|
56
|
+
--color-surface: #f1f5f9;
|
|
57
|
+
--color-border: #cbd5e1;
|
|
58
|
+
--color-input: #cbd5e1;
|
|
59
|
+
--color-ring: #475569;
|
|
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: 700;
|
|
77
|
+
--letter-spacing: -0.02em;
|
|
78
|
+
--line-height: 1.5;
|
|
79
|
+
|
|
80
|
+
/* Icon styling */
|
|
81
|
+
--icon-stroke-width: 1.75;
|
|
82
|
+
--icon-color: #475569;
|
|
83
|
+
|
|
84
|
+
/* Transitions - Snappy */
|
|
85
|
+
--transition-fast: 100ms;
|
|
86
|
+
--transition-normal: 200ms;
|
|
87
|
+
--transition-slow: 300ms;
|
|
88
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
89
|
+
|
|
90
|
+
/* Hover/Active transforms - No scale, subtle vertical lift */
|
|
91
|
+
--hover-scale: 1.0;
|
|
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: #475569;
|
|
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="slate-dark"] {
|
|
111
|
+
/* Shadows - Subtle dark corporate */
|
|
112
|
+
--shadow-main: 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.15);
|
|
113
|
+
--shadow-sm: 0 1px 1px rgba(0, 0, 0, 0.15);
|
|
114
|
+
--shadow-lg: 0 4px 8px -2px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
|
|
115
|
+
--shadow-inner: inset 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
116
|
+
--shadow-none: none;
|
|
117
|
+
--shadow-hover: 0 4px 12px -4px rgba(0, 0, 0, 0.35);
|
|
118
|
+
--shadow-active: 0 1px 1px rgba(0, 0, 0, 0.15);
|
|
119
|
+
|
|
120
|
+
/* Border radius - Almost sharp, corporate */
|
|
121
|
+
--radius-none: 0px;
|
|
122
|
+
--radius-sm: 2px;
|
|
123
|
+
--radius-md: 4px;
|
|
124
|
+
--radius-lg: 6px;
|
|
125
|
+
--radius-xl: 8px;
|
|
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 slate dark */
|
|
134
|
+
--color-primary: #94a3b8;
|
|
135
|
+
--color-primary-hover: #cbd5e1;
|
|
136
|
+
--color-primary-foreground: #0b1120;
|
|
137
|
+
|
|
138
|
+
--color-secondary: #1e293b;
|
|
139
|
+
--color-secondary-hover: #334155;
|
|
140
|
+
--color-secondary-foreground: #e2e8f0;
|
|
141
|
+
|
|
142
|
+
--color-accent: #0ea5e9;
|
|
143
|
+
--color-accent-foreground: #ffffff;
|
|
144
|
+
|
|
145
|
+
--color-muted: #1e293b;
|
|
146
|
+
--color-muted-foreground: #94a3b8;
|
|
147
|
+
|
|
148
|
+
--color-background: #0b1120;
|
|
149
|
+
--color-foreground: #f1f5f9;
|
|
150
|
+
--color-card: #1e293b;
|
|
151
|
+
--color-card-foreground: #f1f5f9;
|
|
152
|
+
--color-surface: #1e293b;
|
|
153
|
+
--color-border: #334155;
|
|
154
|
+
--color-input: #334155;
|
|
155
|
+
--color-ring: #0ea5e9;
|
|
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: 700;
|
|
173
|
+
--letter-spacing: -0.02em;
|
|
174
|
+
--line-height: 1.5;
|
|
175
|
+
|
|
176
|
+
/* Icon styling */
|
|
177
|
+
--icon-stroke-width: 1.75;
|
|
178
|
+
--icon-color: #94a3b8;
|
|
179
|
+
|
|
180
|
+
/* Transitions - Snappy */
|
|
181
|
+
--transition-fast: 100ms;
|
|
182
|
+
--transition-normal: 200ms;
|
|
183
|
+
--transition-slow: 300ms;
|
|
184
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
185
|
+
|
|
186
|
+
/* Hover/Active transforms - No scale, subtle vertical lift */
|
|
187
|
+
--hover-scale: 1.0;
|
|
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: #0ea5e9;
|
|
197
|
+
|
|
198
|
+
/* Apply background and foreground colors */
|
|
199
|
+
background-color: var(--color-background);
|
|
200
|
+
color: var(--color-foreground);
|
|
201
|
+
}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sunset Theme - "Golden Hour"
|
|
3
|
+
*
|
|
4
|
+
* Inspired by the warmth of a setting sun. Features golden glowing shadows,
|
|
5
|
+
* very rounded playful border radii, and a vibrant coral-to-amber palette.
|
|
6
|
+
* Pronounced hover lifts and snappy transitions create an energetic, warm,
|
|
7
|
+
* inviting experience full of buoyant energy.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/* ==========================================================================
|
|
11
|
+
* LIGHT MODE
|
|
12
|
+
* ========================================================================== */
|
|
13
|
+
[data-theme="sunset-light"] {
|
|
14
|
+
/* Shadows - Warm golden glow */
|
|
15
|
+
--shadow-main:
|
|
16
|
+
0 4px 12px rgba(231, 111, 81, 0.1), 0 1px 3px rgba(244, 162, 97, 0.08);
|
|
17
|
+
--shadow-sm: 0 2px 5px rgba(244, 162, 97, 0.08);
|
|
18
|
+
--shadow-lg:
|
|
19
|
+
0 8px 28px rgba(231, 111, 81, 0.14), 0 4px 10px rgba(244, 162, 97, 0.08);
|
|
20
|
+
--shadow-inner: inset 0 1px 2px rgba(231, 111, 81, 0.06);
|
|
21
|
+
--shadow-none: none;
|
|
22
|
+
--shadow-hover:
|
|
23
|
+
0 12px 36px rgba(231, 111, 81, 0.2), 0 4px 12px rgba(244, 162, 97, 0.12);
|
|
24
|
+
--shadow-active: 0 2px 6px rgba(231, 111, 81, 0.12);
|
|
25
|
+
|
|
26
|
+
/* Border radius - Very rounded, playful */
|
|
27
|
+
--radius-none: 0px;
|
|
28
|
+
--radius-sm: 10px;
|
|
29
|
+
--radius-md: 14px;
|
|
30
|
+
--radius-lg: 20px;
|
|
31
|
+
--radius-xl: 24px;
|
|
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 - Coral on warm light background */
|
|
40
|
+
--color-primary: #e76f51;
|
|
41
|
+
--color-primary-hover: #d4533a;
|
|
42
|
+
--color-primary-foreground: #ffffff;
|
|
43
|
+
|
|
44
|
+
--color-secondary: #fef3ee;
|
|
45
|
+
--color-secondary-hover: #fce5d8;
|
|
46
|
+
--color-secondary-foreground: #5c2a1a;
|
|
47
|
+
|
|
48
|
+
--color-accent: #f4a261;
|
|
49
|
+
--color-accent-foreground: #3d1e0a;
|
|
50
|
+
|
|
51
|
+
--color-muted: #fef3ee;
|
|
52
|
+
--color-muted-foreground: #8c6354;
|
|
53
|
+
|
|
54
|
+
--color-background: #fefaf8;
|
|
55
|
+
--color-foreground: #2c1810;
|
|
56
|
+
--color-card: #ffffff;
|
|
57
|
+
--color-card-foreground: #2c1810;
|
|
58
|
+
--color-surface: #fef3ee;
|
|
59
|
+
--color-border: rgba(231, 111, 81, 0.2);
|
|
60
|
+
--color-input: rgba(231, 111, 81, 0.15);
|
|
61
|
+
--color-ring: #e76f51;
|
|
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 - Tight, expressive */
|
|
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.02em;
|
|
80
|
+
--line-height: 1.6;
|
|
81
|
+
|
|
82
|
+
/* Icon styling */
|
|
83
|
+
--icon-stroke-width: 1.75;
|
|
84
|
+
--icon-color: #e76f51;
|
|
85
|
+
|
|
86
|
+
/* Transitions - Snappy and warm */
|
|
87
|
+
--transition-fast: 150ms;
|
|
88
|
+
--transition-normal: 280ms;
|
|
89
|
+
--transition-slow: 450ms;
|
|
90
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
91
|
+
|
|
92
|
+
/* Hover/Active transforms - Larger scale, pronounced lift */
|
|
93
|
+
--hover-scale: 1.03;
|
|
94
|
+
--hover-translate-y: -3px;
|
|
95
|
+
--hover-translate-x: 0;
|
|
96
|
+
--active-scale: 0.97;
|
|
97
|
+
--active-translate-y: 0;
|
|
98
|
+
|
|
99
|
+
/* Focus ring */
|
|
100
|
+
--focus-ring-width: 2px;
|
|
101
|
+
--focus-ring-offset: 2px;
|
|
102
|
+
--focus-ring-color: #e76f51;
|
|
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="sunset-dark"] {
|
|
113
|
+
/* Shadows - Warm amber glow from primary */
|
|
114
|
+
--shadow-main:
|
|
115
|
+
0 4px 14px rgba(244, 132, 95, 0.12), 0 1px 3px rgba(0, 0, 0, 0.15);
|
|
116
|
+
--shadow-sm: 0 2px 6px rgba(244, 132, 95, 0.08);
|
|
117
|
+
--shadow-lg:
|
|
118
|
+
0 8px 30px rgba(244, 132, 95, 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(244, 132, 95, 0.3), 0 4px 12px rgba(244, 162, 97, 0.15);
|
|
123
|
+
--shadow-active: 0 2px 8px rgba(244, 132, 95, 0.18);
|
|
124
|
+
|
|
125
|
+
/* Border radius - Very rounded, playful */
|
|
126
|
+
--radius-none: 0px;
|
|
127
|
+
--radius-sm: 10px;
|
|
128
|
+
--radius-md: 14px;
|
|
129
|
+
--radius-lg: 20px;
|
|
130
|
+
--radius-xl: 24px;
|
|
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 coral on deep amber */
|
|
139
|
+
--color-primary: #f4845f;
|
|
140
|
+
--color-primary-hover: #f6a085;
|
|
141
|
+
--color-primary-foreground: #1a0800;
|
|
142
|
+
|
|
143
|
+
--color-secondary: #261510;
|
|
144
|
+
--color-secondary-hover: #3a201a;
|
|
145
|
+
--color-secondary-foreground: #f5ddd4;
|
|
146
|
+
|
|
147
|
+
--color-accent: #f4a261;
|
|
148
|
+
--color-accent-foreground: #1a0e08;
|
|
149
|
+
|
|
150
|
+
--color-muted: #261510;
|
|
151
|
+
--color-muted-foreground: #b88a78;
|
|
152
|
+
|
|
153
|
+
--color-background: #1a0e08;
|
|
154
|
+
--color-foreground: #f5ebe6;
|
|
155
|
+
--color-card: #221612;
|
|
156
|
+
--color-card-foreground: #f5ebe6;
|
|
157
|
+
--color-surface: #261510;
|
|
158
|
+
--color-border: rgba(244, 132, 95, 0.22);
|
|
159
|
+
--color-input: rgba(244, 132, 95, 0.25);
|
|
160
|
+
--color-ring: #f4845f;
|
|
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 - Tight, expressive */
|
|
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.02em;
|
|
179
|
+
--line-height: 1.6;
|
|
180
|
+
|
|
181
|
+
/* Icon styling */
|
|
182
|
+
--icon-stroke-width: 1.75;
|
|
183
|
+
--icon-color: #f4845f;
|
|
184
|
+
|
|
185
|
+
/* Transitions - Snappy and warm */
|
|
186
|
+
--transition-fast: 150ms;
|
|
187
|
+
--transition-normal: 280ms;
|
|
188
|
+
--transition-slow: 450ms;
|
|
189
|
+
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
|
190
|
+
|
|
191
|
+
/* Hover/Active transforms - Larger scale, pronounced lift */
|
|
192
|
+
--hover-scale: 1.03;
|
|
193
|
+
--hover-translate-y: -3px;
|
|
194
|
+
--hover-translate-x: 0;
|
|
195
|
+
--active-scale: 0.97;
|
|
196
|
+
--active-translate-y: 0;
|
|
197
|
+
|
|
198
|
+
/* Focus ring */
|
|
199
|
+
--focus-ring-width: 2px;
|
|
200
|
+
--focus-ring-offset: 2px;
|
|
201
|
+
--focus-ring-color: #f4845f;
|
|
202
|
+
|
|
203
|
+
/* Apply background and foreground colors */
|
|
204
|
+
background-color: var(--color-background);
|
|
205
|
+
color: var(--color-foreground);
|
|
206
|
+
}
|
package/dist/chunk-4FRUCUO5.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ThemeProvider, useTheme } from './chunk-I5RSZIOE.js';
|
|
2
|
-
|
|
3
|
-
// context/DesignThemeContext.tsx
|
|
4
|
-
var DesignThemeProvider = ThemeProvider;
|
|
5
|
-
function useDesignTheme() {
|
|
6
|
-
const { theme, setTheme, availableThemes } = useTheme();
|
|
7
|
-
return {
|
|
8
|
-
designTheme: theme,
|
|
9
|
-
setDesignTheme: setTheme,
|
|
10
|
-
availableThemes: availableThemes.map((t) => t.name)
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export { DesignThemeProvider, useDesignTheme };
|