css
19 lines
294 Bytes
| 1 | @tailwind base; |
| 2 | @tailwind components; |
| 3 | @tailwind utilities; |
| 4 | |
| 5 | :root { |
| 6 | --foreground-rgb: 0, 0, 0; |
| 7 | --background-start-rgb: 214, 219, 220; |
| 8 | --background-end-rgb: 255, 255, 255; |
| 9 | } |
| 10 | |
| 11 | body { |
| 12 | color: rgb(var(--foreground-rgb)); |
| 13 | } |
| 14 | |
| 15 | @layer utilities { |
| 16 | .text-balance { |
| 17 | text-wrap: balance; |
| 18 | } |
| 19 | } |