@onesaz/tailwind-config 0.2.7 → 0.2.8
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 +6 -0
- package/package.json +1 -1
package/dist/v4.css
CHANGED
|
@@ -294,6 +294,12 @@
|
|
|
294
294
|
* IMPORTANT: Must be in @layer base for Tailwind v4 cascade to work!
|
|
295
295
|
* ======================================== */
|
|
296
296
|
@layer base {
|
|
297
|
+
/* Apply theme colors to body by default */
|
|
298
|
+
body {
|
|
299
|
+
background-color: var(--background);
|
|
300
|
+
color: var(--foreground);
|
|
301
|
+
}
|
|
302
|
+
|
|
297
303
|
:root {
|
|
298
304
|
--background: #ffffff;
|
|
299
305
|
--foreground: #0f172a;
|
package/package.json
CHANGED