You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Tailwind v4 will only [generate CSS variables](https://tailwindcss.com/docs/theme#generating-all-css-variables) that are discovered in your source files.
113
+
114
+
To generate the full default Tailwind color palette into your `theme.json`, you can use the `static` theme option when importing Tailwind:
115
+
116
+
```css
117
+
@import'tailwindcss' theme(static);
118
+
```
119
+
120
+
The same applies for customized colors in the `@theme` directive. To ensure your colors get generated, you can use another form of the `static` theme option:
0 commit comments