Pipeline/frontend/tailwind.config.cjs

52 lines
1.5 KiB
JavaScript
Raw Permalink Normal View History

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
content: ["./src/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}"],
theme: {
extend: {
2026-05-20 00:21:34 -05:00
colors: {
border: "var(--border)",
input: "var(--input)",
ring: "var(--ring)",
background: "var(--background)",
foreground: "var(--foreground)",
primary: {
DEFAULT: "var(--primary)",
foreground: "var(--primary-foreground)",
},
secondary: {
DEFAULT: "var(--secondary)",
foreground: "var(--secondary-foreground)",
},
destructive: {
DEFAULT: "var(--destructive)",
foreground: "var(--destructive-foreground)",
},
muted: {
DEFAULT: "var(--muted)",
foreground: "var(--muted-foreground)",
},
accent: {
DEFAULT: "var(--accent-shadcn)",
foreground: "var(--accent-foreground)",
},
popover: {
DEFAULT: "var(--popover)",
foreground: "var(--popover-foreground)",
},
card: {
DEFAULT: "var(--card)",
foreground: "var(--card-foreground)",
},
},
fontFamily: {
heading: ["Georgia Numbers", "var(--font-heading)", "sans-serif"],
body: ["Georgia Numbers", "var(--font-body)", "sans-serif"],
display: ["Georgia Numbers", "var(--font-display)", "serif"],
numeric: ["Georgia Numbers", "Georgia", "Times New Roman", "serif"],
},
},
},
plugins: [require("tailwindcss-animate")],
};