12345678910111213141516 |
- """Style constants."""
- from types import SimpleNamespace
- class Tailwind(SimpleNamespace):
- """Tailwind constants."""
- # The Tailwindcss version
- VERSION = "tailwindcss@3.4.17"
- # The Tailwind config.
- CONFIG = "tailwind.config.js"
- # Default Tailwind content paths
- CONTENT = ["./pages/**/*.{js,ts,jsx,tsx}", "./utils/**/*.{js,ts,jsx,tsx}"]
- # Relative tailwind style path to root stylesheet in Dirs.STYLES.
- ROOT_STYLE_PATH = "./tailwind.css"
|