Files
website-portofolio/tailwind.config.js
Yolando 5b0254d71b init
2026-03-28 19:48:52 +07:00

33 lines
970 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
"./src/shared/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
card: "var(--card)",
"card-foreground": "var(--card-foreground)",
muted: "var(--muted)",
"muted-foreground": "var(--muted-foreground)",
border: "var(--border)",
ring: "var(--ring)",
accent: "var(--accent)",
"accent-foreground": "var(--accent-foreground)",
success: "var(--success)",
error: "var(--error)",
},
fontFamily: {
sans: ["var(--font-geist-sans)", "ui-sans-serif", "system-ui", "sans-serif"],
mono: ["var(--font-geist-mono)", "ui-monospace", "monospace"],
},
},
},
plugins: [],
};