@specglass/theme-default 0.0.8 → 0.0.9
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/package.json +1 -1
- package/src/styles/global.css +12 -0
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
@import "tailwindcss";
|
|
2
2
|
@plugin "tailwindcss-animate";
|
|
3
3
|
|
|
4
|
+
/*
|
|
5
|
+
* Source directives — tell Tailwind v4 to scan component/layout templates
|
|
6
|
+
* for utility classes. Required because Tailwind excludes node_modules
|
|
7
|
+
* by default, so when this theme is consumed from npm the utility classes
|
|
8
|
+
* in .astro/.tsx files would otherwise be missed entirely.
|
|
9
|
+
*/
|
|
10
|
+
@source "../components";
|
|
11
|
+
@source "../layouts";
|
|
12
|
+
@source "../islands";
|
|
13
|
+
@source "../ui";
|
|
14
|
+
@source "../../../core/src/pages";
|
|
15
|
+
|
|
4
16
|
/*
|
|
5
17
|
* Specglass — Design Tokens (Tailwind v4 CSS-first configuration)
|
|
6
18
|
*
|