@onesaz/tailwind-config 0.2.2 → 0.2.3
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/v4.css +41 -0
- package/package.json +1 -1
package/dist/v4.css
CHANGED
|
@@ -286,5 +286,46 @@
|
|
|
286
286
|
to { transform: translateY(0); }
|
|
287
287
|
}
|
|
288
288
|
|
|
289
|
+
/* ========================================
|
|
290
|
+
* DEFAULT THEME CSS VARIABLES
|
|
291
|
+
* These provide default values so components work out of the box.
|
|
292
|
+
* Consumers can override these in their own CSS.
|
|
293
|
+
* ======================================== */
|
|
294
|
+
@layer base {
|
|
295
|
+
:root {
|
|
296
|
+
--background: #ffffff;
|
|
297
|
+
--foreground: #0f172a;
|
|
298
|
+
--card: #ffffff;
|
|
299
|
+
--card-foreground: #0f172a;
|
|
300
|
+
--popover: #ffffff;
|
|
301
|
+
--popover-foreground: #0f172a;
|
|
302
|
+
--muted: #f1f5f9;
|
|
303
|
+
--muted-foreground: #64748b;
|
|
304
|
+
--border: #e2e8f0;
|
|
305
|
+
--input: #e2e8f0;
|
|
306
|
+
--accent: #8b5cf6;
|
|
307
|
+
--accent-foreground: #ffffff;
|
|
308
|
+
--ring: #8b5cf6;
|
|
309
|
+
--destructive: #dc2626;
|
|
310
|
+
--destructive-foreground: #ffffff;
|
|
311
|
+
--radius: 0.375rem;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.dark, [data-theme="dark"] {
|
|
315
|
+
--background: #0f172a;
|
|
316
|
+
--foreground: #f8fafc;
|
|
317
|
+
--card: #1e293b;
|
|
318
|
+
--card-foreground: #f8fafc;
|
|
319
|
+
--popover: #1e293b;
|
|
320
|
+
--popover-foreground: #f8fafc;
|
|
321
|
+
--muted: #334155;
|
|
322
|
+
--muted-foreground: #94a3b8;
|
|
323
|
+
--border: #334155;
|
|
324
|
+
--input: #334155;
|
|
325
|
+
--destructive: #ef4444;
|
|
326
|
+
--destructive-foreground: #ffffff;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
|
|
289
330
|
/* Scan @onesaz/ui for class generation (works in consuming apps' node_modules) */
|
|
290
331
|
@source "../../@onesaz/ui/dist/**/*.js";
|
package/package.json
CHANGED