tailwind.config.cjs 576 B

123456789101112131415161718192021222324
  1. module.exports = {
  2. content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
  3. theme: {
  4. extend: {
  5. colors: {
  6. primary: "#2563eb",
  7. secondary: "#38bdf8",
  8. danger: "#f43f5e",
  9. surface: "#0f172a",
  10. "deep-ink": "#020617",
  11. "on-surface": "#f8fafc",
  12. "on-surface-variant": "#94a3b8",
  13. },
  14. fontFamily: {
  15. headline: ["Manrope", "Inter", "sans-serif"],
  16. body: ["Inter", "sans-serif"],
  17. },
  18. boxShadow: {
  19. panel: "0 24px 80px rgba(0, 0, 0, 0.35)",
  20. },
  21. },
  22. },
  23. plugins: [],
  24. };