@j3m-quantum/ui 0.3.0 → 0.4.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/dist/styles/animations.css +370 -0
- package/dist/styles/base.css +130 -0
- package/dist/styles/index.css +16 -22
- package/dist/styles/j3m-overrides.css +118 -101
- package/package.json +1 -1
|
@@ -0,0 +1,370 @@
|
|
|
1
|
+
/* ========================================
|
|
2
|
+
SHADCN ANIMATIONS
|
|
3
|
+
|
|
4
|
+
All animation keyframes required by shadcn components.
|
|
5
|
+
Based on tw-animate-css / tailwindcss-animate.
|
|
6
|
+
======================================== */
|
|
7
|
+
|
|
8
|
+
/* ========================================
|
|
9
|
+
ACCORDION ANIMATIONS
|
|
10
|
+
======================================== */
|
|
11
|
+
|
|
12
|
+
@keyframes accordion-down {
|
|
13
|
+
from {
|
|
14
|
+
height: 0;
|
|
15
|
+
}
|
|
16
|
+
to {
|
|
17
|
+
height: var(--radix-accordion-content-height);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@keyframes accordion-up {
|
|
22
|
+
from {
|
|
23
|
+
height: var(--radix-accordion-content-height);
|
|
24
|
+
}
|
|
25
|
+
to {
|
|
26
|
+
height: 0;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* ========================================
|
|
31
|
+
COLLAPSIBLE ANIMATIONS
|
|
32
|
+
======================================== */
|
|
33
|
+
|
|
34
|
+
@keyframes collapsible-down {
|
|
35
|
+
from {
|
|
36
|
+
height: 0;
|
|
37
|
+
}
|
|
38
|
+
to {
|
|
39
|
+
height: var(--radix-collapsible-content-height);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@keyframes collapsible-up {
|
|
44
|
+
from {
|
|
45
|
+
height: var(--radix-collapsible-content-height);
|
|
46
|
+
}
|
|
47
|
+
to {
|
|
48
|
+
height: 0;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* ========================================
|
|
53
|
+
FADE ANIMATIONS
|
|
54
|
+
======================================== */
|
|
55
|
+
|
|
56
|
+
@keyframes fade-in {
|
|
57
|
+
from {
|
|
58
|
+
opacity: 0;
|
|
59
|
+
}
|
|
60
|
+
to {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@keyframes fade-out {
|
|
66
|
+
from {
|
|
67
|
+
opacity: 1;
|
|
68
|
+
}
|
|
69
|
+
to {
|
|
70
|
+
opacity: 0;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/* ========================================
|
|
75
|
+
ZOOM ANIMATIONS
|
|
76
|
+
======================================== */
|
|
77
|
+
|
|
78
|
+
@keyframes zoom-in {
|
|
79
|
+
from {
|
|
80
|
+
opacity: 0;
|
|
81
|
+
transform: scale(0.95);
|
|
82
|
+
}
|
|
83
|
+
to {
|
|
84
|
+
opacity: 1;
|
|
85
|
+
transform: scale(1);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@keyframes zoom-out {
|
|
90
|
+
from {
|
|
91
|
+
opacity: 1;
|
|
92
|
+
transform: scale(1);
|
|
93
|
+
}
|
|
94
|
+
to {
|
|
95
|
+
opacity: 0;
|
|
96
|
+
transform: scale(0.95);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* ========================================
|
|
101
|
+
SLIDE ANIMATIONS
|
|
102
|
+
======================================== */
|
|
103
|
+
|
|
104
|
+
@keyframes slide-in-from-top {
|
|
105
|
+
from {
|
|
106
|
+
transform: translateY(-100%);
|
|
107
|
+
}
|
|
108
|
+
to {
|
|
109
|
+
transform: translateY(0);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
@keyframes slide-in-from-bottom {
|
|
114
|
+
from {
|
|
115
|
+
transform: translateY(100%);
|
|
116
|
+
}
|
|
117
|
+
to {
|
|
118
|
+
transform: translateY(0);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@keyframes slide-in-from-left {
|
|
123
|
+
from {
|
|
124
|
+
transform: translateX(-100%);
|
|
125
|
+
}
|
|
126
|
+
to {
|
|
127
|
+
transform: translateX(0);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
@keyframes slide-in-from-right {
|
|
132
|
+
from {
|
|
133
|
+
transform: translateX(100%);
|
|
134
|
+
}
|
|
135
|
+
to {
|
|
136
|
+
transform: translateX(0);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
@keyframes slide-out-to-top {
|
|
141
|
+
from {
|
|
142
|
+
transform: translateY(0);
|
|
143
|
+
}
|
|
144
|
+
to {
|
|
145
|
+
transform: translateY(-100%);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
@keyframes slide-out-to-bottom {
|
|
150
|
+
from {
|
|
151
|
+
transform: translateY(0);
|
|
152
|
+
}
|
|
153
|
+
to {
|
|
154
|
+
transform: translateY(100%);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@keyframes slide-out-to-left {
|
|
159
|
+
from {
|
|
160
|
+
transform: translateX(0);
|
|
161
|
+
}
|
|
162
|
+
to {
|
|
163
|
+
transform: translateX(-100%);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
@keyframes slide-out-to-right {
|
|
168
|
+
from {
|
|
169
|
+
transform: translateX(0);
|
|
170
|
+
}
|
|
171
|
+
to {
|
|
172
|
+
transform: translateX(100%);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/* ========================================
|
|
177
|
+
SPIN ANIMATION
|
|
178
|
+
======================================== */
|
|
179
|
+
|
|
180
|
+
@keyframes spin {
|
|
181
|
+
from {
|
|
182
|
+
transform: rotate(0deg);
|
|
183
|
+
}
|
|
184
|
+
to {
|
|
185
|
+
transform: rotate(360deg);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/* ========================================
|
|
190
|
+
PING ANIMATION
|
|
191
|
+
======================================== */
|
|
192
|
+
|
|
193
|
+
@keyframes ping {
|
|
194
|
+
75%, 100% {
|
|
195
|
+
transform: scale(2);
|
|
196
|
+
opacity: 0;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/* ========================================
|
|
201
|
+
PULSE ANIMATION
|
|
202
|
+
======================================== */
|
|
203
|
+
|
|
204
|
+
@keyframes pulse {
|
|
205
|
+
0%, 100% {
|
|
206
|
+
opacity: 1;
|
|
207
|
+
}
|
|
208
|
+
50% {
|
|
209
|
+
opacity: 0.5;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/* ========================================
|
|
214
|
+
BOUNCE ANIMATION
|
|
215
|
+
======================================== */
|
|
216
|
+
|
|
217
|
+
@keyframes bounce {
|
|
218
|
+
0%, 100% {
|
|
219
|
+
transform: translateY(-25%);
|
|
220
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
221
|
+
}
|
|
222
|
+
50% {
|
|
223
|
+
transform: translateY(0);
|
|
224
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* ========================================
|
|
229
|
+
ANIMATION UTILITIES
|
|
230
|
+
======================================== */
|
|
231
|
+
|
|
232
|
+
.animate-accordion-down {
|
|
233
|
+
animation: accordion-down 0.2s ease-out;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.animate-accordion-up {
|
|
237
|
+
animation: accordion-up 0.2s ease-out;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.animate-collapsible-down {
|
|
241
|
+
animation: collapsible-down 0.2s ease-out;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.animate-collapsible-up {
|
|
245
|
+
animation: collapsible-up 0.2s ease-out;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.animate-fade-in {
|
|
249
|
+
animation: fade-in 0.2s ease-out;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.animate-fade-out {
|
|
253
|
+
animation: fade-out 0.2s ease-out;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.animate-zoom-in {
|
|
257
|
+
animation: zoom-in 0.2s ease-out;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.animate-zoom-out {
|
|
261
|
+
animation: zoom-out 0.2s ease-out;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.animate-spin {
|
|
265
|
+
animation: spin 1s linear infinite;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.animate-ping {
|
|
269
|
+
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.animate-pulse {
|
|
273
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.animate-bounce {
|
|
277
|
+
animation: bounce 1s infinite;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/* ========================================
|
|
281
|
+
ENTER/EXIT ANIMATIONS (for Radix)
|
|
282
|
+
======================================== */
|
|
283
|
+
|
|
284
|
+
[data-state="open"] {
|
|
285
|
+
--tw-enter-opacity: 1;
|
|
286
|
+
--tw-enter-scale: 1;
|
|
287
|
+
--tw-enter-translate-x: 0;
|
|
288
|
+
--tw-enter-translate-y: 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
[data-state="closed"] {
|
|
292
|
+
--tw-exit-opacity: 0;
|
|
293
|
+
--tw-exit-scale: 0.95;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.animate-in {
|
|
297
|
+
animation-name: fade-in, zoom-in;
|
|
298
|
+
animation-duration: 0.2s;
|
|
299
|
+
animation-timing-function: ease-out;
|
|
300
|
+
animation-fill-mode: both;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.animate-out {
|
|
304
|
+
animation-name: fade-out, zoom-out;
|
|
305
|
+
animation-duration: 0.2s;
|
|
306
|
+
animation-timing-function: ease-in;
|
|
307
|
+
animation-fill-mode: both;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.fade-in-0 {
|
|
311
|
+
--tw-enter-opacity: 0;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.fade-out-0 {
|
|
315
|
+
--tw-exit-opacity: 0;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.zoom-in-95 {
|
|
319
|
+
--tw-enter-scale: 0.95;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.zoom-out-95 {
|
|
323
|
+
--tw-exit-scale: 0.95;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.slide-in-from-top-2 {
|
|
327
|
+
--tw-enter-translate-y: -0.5rem;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.slide-in-from-bottom-2 {
|
|
331
|
+
--tw-enter-translate-y: 0.5rem;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.slide-in-from-left-2 {
|
|
335
|
+
--tw-enter-translate-x: -0.5rem;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.slide-in-from-right-2 {
|
|
339
|
+
--tw-enter-translate-x: 0.5rem;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.slide-out-to-top-2 {
|
|
343
|
+
--tw-exit-translate-y: -0.5rem;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.slide-out-to-bottom-2 {
|
|
347
|
+
--tw-exit-translate-y: 0.5rem;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.slide-out-to-left-2 {
|
|
351
|
+
--tw-exit-translate-x: -0.5rem;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.slide-out-to-right-2 {
|
|
355
|
+
--tw-exit-translate-x: 0.5rem;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/* Duration utilities */
|
|
359
|
+
.duration-200 {
|
|
360
|
+
animation-duration: 200ms;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.duration-300 {
|
|
364
|
+
animation-duration: 300ms;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.duration-500 {
|
|
368
|
+
animation-duration: 500ms;
|
|
369
|
+
}
|
|
370
|
+
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/* ========================================
|
|
2
|
+
SHADCN BASE THEME
|
|
3
|
+
|
|
4
|
+
Base theme variables required by shadcn components.
|
|
5
|
+
This ensures components work without running shadcn init.
|
|
6
|
+
======================================== */
|
|
7
|
+
|
|
8
|
+
@custom-variant dark (&:is(.dark *));
|
|
9
|
+
|
|
10
|
+
/* ========================================
|
|
11
|
+
THEME VARIABLES (Light Mode)
|
|
12
|
+
======================================== */
|
|
13
|
+
|
|
14
|
+
@theme {
|
|
15
|
+
/* Background & Foreground */
|
|
16
|
+
--color-background: #ffffff;
|
|
17
|
+
--color-foreground: #09090b;
|
|
18
|
+
|
|
19
|
+
/* Card */
|
|
20
|
+
--color-card: #ffffff;
|
|
21
|
+
--color-card-foreground: #09090b;
|
|
22
|
+
|
|
23
|
+
/* Popover */
|
|
24
|
+
--color-popover: #ffffff;
|
|
25
|
+
--color-popover-foreground: #09090b;
|
|
26
|
+
|
|
27
|
+
/* Primary */
|
|
28
|
+
--color-primary: #18181b;
|
|
29
|
+
--color-primary-foreground: #fafafa;
|
|
30
|
+
|
|
31
|
+
/* Secondary */
|
|
32
|
+
--color-secondary: #f4f4f5;
|
|
33
|
+
--color-secondary-foreground: #18181b;
|
|
34
|
+
|
|
35
|
+
/* Muted */
|
|
36
|
+
--color-muted: #f4f4f5;
|
|
37
|
+
--color-muted-foreground: #71717a;
|
|
38
|
+
|
|
39
|
+
/* Accent */
|
|
40
|
+
--color-accent: #f4f4f5;
|
|
41
|
+
--color-accent-foreground: #18181b;
|
|
42
|
+
|
|
43
|
+
/* Destructive */
|
|
44
|
+
--color-destructive: #ef4444;
|
|
45
|
+
--color-destructive-foreground: #fafafa;
|
|
46
|
+
|
|
47
|
+
/* Border, Input, Ring */
|
|
48
|
+
--color-border: #e4e4e7;
|
|
49
|
+
--color-input: #e4e4e7;
|
|
50
|
+
--color-ring: #18181b;
|
|
51
|
+
|
|
52
|
+
/* Sidebar */
|
|
53
|
+
--color-sidebar: #fafafa;
|
|
54
|
+
--color-sidebar-foreground: #09090b;
|
|
55
|
+
--color-sidebar-primary: #18181b;
|
|
56
|
+
--color-sidebar-primary-foreground: #fafafa;
|
|
57
|
+
--color-sidebar-accent: #f4f4f5;
|
|
58
|
+
--color-sidebar-accent-foreground: #18181b;
|
|
59
|
+
--color-sidebar-border: #e4e4e7;
|
|
60
|
+
--color-sidebar-ring: #18181b;
|
|
61
|
+
|
|
62
|
+
/* Chart Colors */
|
|
63
|
+
--color-chart-1: #e76e50;
|
|
64
|
+
--color-chart-2: #2a9d90;
|
|
65
|
+
--color-chart-3: #274754;
|
|
66
|
+
--color-chart-4: #e8c468;
|
|
67
|
+
--color-chart-5: #f4a462;
|
|
68
|
+
|
|
69
|
+
/* Radius */
|
|
70
|
+
--radius: 0.5rem;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/* ========================================
|
|
74
|
+
DARK MODE OVERRIDES
|
|
75
|
+
======================================== */
|
|
76
|
+
|
|
77
|
+
.dark {
|
|
78
|
+
--color-background: #09090b;
|
|
79
|
+
--color-foreground: #fafafa;
|
|
80
|
+
|
|
81
|
+
--color-card: #09090b;
|
|
82
|
+
--color-card-foreground: #fafafa;
|
|
83
|
+
|
|
84
|
+
--color-popover: #09090b;
|
|
85
|
+
--color-popover-foreground: #fafafa;
|
|
86
|
+
|
|
87
|
+
--color-primary: #fafafa;
|
|
88
|
+
--color-primary-foreground: #18181b;
|
|
89
|
+
|
|
90
|
+
--color-secondary: #27272a;
|
|
91
|
+
--color-secondary-foreground: #fafafa;
|
|
92
|
+
|
|
93
|
+
--color-muted: #27272a;
|
|
94
|
+
--color-muted-foreground: #a1a1aa;
|
|
95
|
+
|
|
96
|
+
--color-accent: #27272a;
|
|
97
|
+
--color-accent-foreground: #fafafa;
|
|
98
|
+
|
|
99
|
+
--color-destructive: #7f1d1d;
|
|
100
|
+
--color-destructive-foreground: #fafafa;
|
|
101
|
+
|
|
102
|
+
--color-border: #27272a;
|
|
103
|
+
--color-input: #27272a;
|
|
104
|
+
--color-ring: #d4d4d8;
|
|
105
|
+
|
|
106
|
+
--color-sidebar: #09090b;
|
|
107
|
+
--color-sidebar-foreground: #fafafa;
|
|
108
|
+
--color-sidebar-primary: #fafafa;
|
|
109
|
+
--color-sidebar-primary-foreground: #18181b;
|
|
110
|
+
--color-sidebar-accent: #27272a;
|
|
111
|
+
--color-sidebar-accent-foreground: #fafafa;
|
|
112
|
+
--color-sidebar-border: #27272a;
|
|
113
|
+
--color-sidebar-ring: #d4d4d8;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/* ========================================
|
|
117
|
+
BASE LAYER STYLES
|
|
118
|
+
======================================== */
|
|
119
|
+
|
|
120
|
+
@layer base {
|
|
121
|
+
* {
|
|
122
|
+
@apply border-border;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
body {
|
|
126
|
+
@apply bg-background text-foreground;
|
|
127
|
+
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
package/dist/styles/index.css
CHANGED
|
@@ -1,32 +1,26 @@
|
|
|
1
1
|
/* ========================================
|
|
2
|
-
J3M UI STYLES
|
|
2
|
+
J3M QUANTUM UI - COMPLETE STYLES
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
Self-contained styles for J3M UI components.
|
|
5
|
+
No need to run shadcn init - everything is included.
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Usage in your CSS file:
|
|
11
|
-
|
|
12
|
-
For Vite + React:
|
|
13
|
-
@import "tailwindcss";
|
|
14
|
-
@source "../node_modules/@j3m-quantum/ui/dist";
|
|
15
|
-
@import "@j3m-quantum/ui/styles";
|
|
16
|
-
|
|
17
|
-
For Next.js:
|
|
18
|
-
@import "tailwindcss";
|
|
19
|
-
@import "@j3m-quantum/ui/styles";
|
|
20
|
-
|
|
21
|
-
Note: Vite requires the @source directive for Tailwind v4
|
|
22
|
-
to scan the package's compiled classes.
|
|
7
|
+
Usage:
|
|
8
|
+
@import "tailwindcss";
|
|
9
|
+
@source "../node_modules/@j3m-quantum/ui/dist";
|
|
10
|
+
@import "@j3m-quantum/ui/styles";
|
|
23
11
|
======================================== */
|
|
24
12
|
|
|
25
|
-
/* 1.
|
|
13
|
+
/* 1. Base shadcn theme (theme variables, dark mode, base layer) */
|
|
14
|
+
@import "./base.css";
|
|
15
|
+
|
|
16
|
+
/* 2. Animations (keyframes for all shadcn components) */
|
|
17
|
+
@import "./animations.css";
|
|
18
|
+
|
|
19
|
+
/* 3. J3M Design Tokens (color scales, spacing, radii, glass effects) */
|
|
26
20
|
@import "./tokens.css";
|
|
27
21
|
|
|
28
|
-
/*
|
|
22
|
+
/* 4. J3M Theme Overrides (replaces shadcn colors with J3M palette) */
|
|
29
23
|
@import "./j3m-overrides.css";
|
|
30
24
|
|
|
31
|
-
/*
|
|
25
|
+
/* 5. Component-specific styles (toast, glass utilities) */
|
|
32
26
|
@import "./theme.css";
|
|
@@ -1,115 +1,132 @@
|
|
|
1
1
|
/* ========================================
|
|
2
2
|
J3M THEME OVERRIDES
|
|
3
3
|
|
|
4
|
-
Overrides shadcn's default theme
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Requires: User has run `npx shadcn init` first
|
|
4
|
+
Overrides shadcn's default theme with J3M brand colors.
|
|
5
|
+
Uses direct values for maximum compatibility.
|
|
8
6
|
======================================== */
|
|
9
7
|
|
|
10
|
-
|
|
8
|
+
@theme {
|
|
9
|
+
/* ========================================
|
|
10
|
+
PRIMARY - J3M Orange
|
|
11
|
+
======================================== */
|
|
12
|
+
--color-primary: #F36C21;
|
|
13
|
+
--color-primary-foreground: #FFFFFF;
|
|
14
|
+
|
|
15
|
+
/* ========================================
|
|
16
|
+
SECONDARY - J3M Neutral
|
|
17
|
+
======================================== */
|
|
18
|
+
--color-secondary: #E8E8E8;
|
|
19
|
+
--color-secondary-foreground: #4A4A4A;
|
|
20
|
+
|
|
21
|
+
/* ========================================
|
|
22
|
+
MUTED
|
|
23
|
+
======================================== */
|
|
24
|
+
--color-muted: #E8E8E8;
|
|
25
|
+
--color-muted-foreground: #8E8E8E;
|
|
26
|
+
|
|
27
|
+
/* ========================================
|
|
28
|
+
ACCENT
|
|
29
|
+
======================================== */
|
|
30
|
+
--color-accent: #FBCEB5;
|
|
31
|
+
--color-accent-foreground: #8F3808;
|
|
32
|
+
|
|
33
|
+
/* ========================================
|
|
34
|
+
DESTRUCTIVE - J3M Red
|
|
35
|
+
======================================== */
|
|
36
|
+
--color-destructive: #FB3748;
|
|
37
|
+
--color-destructive-foreground: #FFFFFF;
|
|
38
|
+
|
|
39
|
+
/* ========================================
|
|
40
|
+
BACKGROUND & FOREGROUND
|
|
41
|
+
======================================== */
|
|
42
|
+
--color-background: #FFFFFF;
|
|
43
|
+
--color-foreground: #333333;
|
|
44
|
+
|
|
45
|
+
/* ========================================
|
|
46
|
+
CARD
|
|
47
|
+
======================================== */
|
|
48
|
+
--color-card: #FFFFFF;
|
|
49
|
+
--color-card-foreground: #333333;
|
|
50
|
+
|
|
11
51
|
/* ========================================
|
|
12
|
-
|
|
52
|
+
POPOVER
|
|
13
53
|
======================================== */
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
--
|
|
21
|
-
--
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
--
|
|
29
|
-
--
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
--
|
|
33
|
-
--
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
--
|
|
41
|
-
--
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
--
|
|
49
|
-
--input: var(--j3m-neutral-300);
|
|
50
|
-
--ring: var(--j3m-primary-250);
|
|
51
|
-
|
|
52
|
-
/* Sidebar - J3M branded */
|
|
53
|
-
--sidebar-background: var(--j3m-neutral-100);
|
|
54
|
-
--sidebar-foreground: var(--j3m-neutral-900);
|
|
55
|
-
--sidebar-primary: var(--j3m-primary-300);
|
|
56
|
-
--sidebar-primary-foreground: #FFFFFF;
|
|
57
|
-
--sidebar-accent: var(--j3m-neutral-200);
|
|
58
|
-
--sidebar-accent-foreground: var(--j3m-neutral-900);
|
|
59
|
-
--sidebar-border: var(--j3m-neutral-200);
|
|
60
|
-
--sidebar-ring: var(--j3m-primary-300);
|
|
61
|
-
|
|
62
|
-
/* Chart colors - J3M palette */
|
|
63
|
-
--chart-1: var(--j3m-primary-300);
|
|
64
|
-
--chart-2: var(--j3m-green-200);
|
|
65
|
-
--chart-3: var(--j3m-neutral-700);
|
|
66
|
-
--chart-4: var(--j3m-yellow-100);
|
|
67
|
-
--chart-5: var(--j3m-primary-200);
|
|
68
|
-
|
|
69
|
-
/* Radius - J3M values */
|
|
70
|
-
--radius: var(--j3m-radius-s);
|
|
54
|
+
--color-popover: #FFFFFF;
|
|
55
|
+
--color-popover-foreground: #333333;
|
|
56
|
+
|
|
57
|
+
/* ========================================
|
|
58
|
+
BORDER & INPUT
|
|
59
|
+
======================================== */
|
|
60
|
+
--color-border: #D2D2D2;
|
|
61
|
+
--color-input: #D2D2D2;
|
|
62
|
+
--color-ring: #F58446;
|
|
63
|
+
|
|
64
|
+
/* ========================================
|
|
65
|
+
SIDEBAR - J3M Branded
|
|
66
|
+
======================================== */
|
|
67
|
+
--color-sidebar: #FFFFFF;
|
|
68
|
+
--color-sidebar-foreground: #4A4A4A;
|
|
69
|
+
--color-sidebar-primary: #F36C21;
|
|
70
|
+
--color-sidebar-primary-foreground: #FFFFFF;
|
|
71
|
+
--color-sidebar-accent: #E8E8E8;
|
|
72
|
+
--color-sidebar-accent-foreground: #4A4A4A;
|
|
73
|
+
--color-sidebar-border: #E8E8E8;
|
|
74
|
+
--color-sidebar-ring: #F36C21;
|
|
75
|
+
|
|
76
|
+
/* ========================================
|
|
77
|
+
CHART COLORS - J3M Palette
|
|
78
|
+
======================================== */
|
|
79
|
+
--color-chart-1: #F36C21;
|
|
80
|
+
--color-chart-2: #1FC16B;
|
|
81
|
+
--color-chart-3: #777777;
|
|
82
|
+
--color-chart-4: #FFDB43;
|
|
83
|
+
--color-chart-5: #F79D6B;
|
|
84
|
+
|
|
85
|
+
/* ========================================
|
|
86
|
+
RADIUS - J3M Values
|
|
87
|
+
======================================== */
|
|
88
|
+
--radius: 8px;
|
|
71
89
|
}
|
|
72
90
|
|
|
73
91
|
/* ========================================
|
|
74
|
-
DARK MODE
|
|
92
|
+
DARK MODE - J3M Dark Theme
|
|
75
93
|
======================================== */
|
|
76
94
|
|
|
77
95
|
.dark {
|
|
78
|
-
--primary:
|
|
79
|
-
--primary-foreground:
|
|
80
|
-
|
|
81
|
-
--secondary:
|
|
82
|
-
--secondary-foreground:
|
|
83
|
-
|
|
84
|
-
--muted:
|
|
85
|
-
--muted-foreground:
|
|
86
|
-
|
|
87
|
-
--accent:
|
|
88
|
-
--accent-foreground:
|
|
89
|
-
|
|
90
|
-
--destructive:
|
|
91
|
-
--destructive-foreground: #FFFFFF;
|
|
92
|
-
|
|
93
|
-
--background: var(--j3m-neutral-1000);
|
|
94
|
-
--foreground: var(--j3m-neutral-100);
|
|
95
|
-
|
|
96
|
-
--card: var(--j3m-neutral-1000);
|
|
97
|
-
--card-foreground: var(--j3m-neutral-100);
|
|
98
|
-
|
|
99
|
-
--popover: var(--j3m-neutral-1000);
|
|
100
|
-
--popover-foreground: var(--j3m-neutral-100);
|
|
101
|
-
|
|
102
|
-
--border: var(--j3m-neutral-800);
|
|
103
|
-
--input: var(--j3m-neutral-800);
|
|
104
|
-
--ring: var(--j3m-primary-250);
|
|
105
|
-
|
|
106
|
-
--sidebar-background: var(--j3m-neutral-1000);
|
|
107
|
-
--sidebar-foreground: var(--j3m-neutral-100);
|
|
108
|
-
--sidebar-primary: var(--j3m-primary-250);
|
|
109
|
-
--sidebar-primary-foreground: var(--j3m-neutral-1000);
|
|
110
|
-
--sidebar-accent: var(--j3m-neutral-800);
|
|
111
|
-
--sidebar-accent-foreground: var(--j3m-neutral-100);
|
|
112
|
-
--sidebar-border: var(--j3m-neutral-800);
|
|
113
|
-
--sidebar-ring: var(--j3m-primary-250);
|
|
114
|
-
}
|
|
96
|
+
--color-primary: #F58446;
|
|
97
|
+
--color-primary-foreground: #333333;
|
|
98
|
+
|
|
99
|
+
--color-secondary: #606060;
|
|
100
|
+
--color-secondary-foreground: #FFFFFF;
|
|
101
|
+
|
|
102
|
+
--color-muted: #606060;
|
|
103
|
+
--color-muted-foreground: #BBBBBB;
|
|
104
|
+
|
|
105
|
+
--color-accent: #606060;
|
|
106
|
+
--color-accent-foreground: #FFFFFF;
|
|
107
|
+
|
|
108
|
+
--color-destructive: #D00416;
|
|
109
|
+
--color-destructive-foreground: #FFFFFF;
|
|
115
110
|
|
|
111
|
+
--color-background: #333333;
|
|
112
|
+
--color-foreground: #FFFFFF;
|
|
113
|
+
|
|
114
|
+
--color-card: #333333;
|
|
115
|
+
--color-card-foreground: #FFFFFF;
|
|
116
|
+
|
|
117
|
+
--color-popover: #333333;
|
|
118
|
+
--color-popover-foreground: #FFFFFF;
|
|
119
|
+
|
|
120
|
+
--color-border: #606060;
|
|
121
|
+
--color-input: #606060;
|
|
122
|
+
--color-ring: #F58446;
|
|
123
|
+
|
|
124
|
+
--color-sidebar: #333333;
|
|
125
|
+
--color-sidebar-foreground: #FFFFFF;
|
|
126
|
+
--color-sidebar-primary: #F58446;
|
|
127
|
+
--color-sidebar-primary-foreground: #333333;
|
|
128
|
+
--color-sidebar-accent: #606060;
|
|
129
|
+
--color-sidebar-accent-foreground: #FFFFFF;
|
|
130
|
+
--color-sidebar-border: #606060;
|
|
131
|
+
--color-sidebar-ring: #F58446;
|
|
132
|
+
}
|