style.py 475 B

12345678910111213141516
  1. """Style constants."""
  2. from types import SimpleNamespace
  3. class Tailwind(SimpleNamespace):
  4. """Tailwind constants."""
  5. # The Tailwindcss version
  6. VERSION = "tailwindcss@3.4.17"
  7. # The Tailwind config.
  8. CONFIG = "tailwind.config.js"
  9. # Default Tailwind content paths
  10. CONTENT = ["./pages/**/*.{js,ts,jsx,tsx}", "./utils/**/*.{js,ts,jsx,tsx}"]
  11. # Relative tailwind style path to root stylesheet in Dirs.STYLES.
  12. ROOT_STYLE_PATH = "./tailwind.css"