main.css in WindPress – Tailwind CSS integration for WordPress 3.0.16, at stubs/main.css
| 1 | @import "tailwindcss"; |
| 2 | |
| 3 | @theme { |
| 4 | --color-primary: rgb(103, 58, 183); |
| 5 | --color-secondary: rgb(149, 141, 165); |
| 6 | |
| 7 | --color-title: var(--color-gray-950); |
| 8 | --color-content: var(--color-gray-900); |
| 9 | } |
| 10 | |
| 11 | /* @plugin "https://esm.sh/@tailwindcss/typography"; */ |
| 12 | |
| 13 | /* @plugin "https://esm.sh/@tailwindcss/forms" { |
| 14 | strategy: class, |
| 15 | } */ |
| 16 | |
| 17 | @layer base { |
| 18 | /* ... */ |
| 19 | } |
| 20 | |
| 21 | @layer components { |
| 22 | /* ... */ |
| 23 | } |
| 24 | |
| 25 | @layer utilities { |
| 26 | /* ... */ |
| 27 | } |
| 28 |