27 lines
744 B
TypeScript
27 lines
744 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: "class",
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: "rgb(var(--bg) / <alpha-value>)",
|
|
fg: "rgb(var(--fg) / <alpha-value>)",
|
|
muted: "rgb(var(--muted) / <alpha-value>)",
|
|
line: "rgb(var(--line) / <alpha-value>)",
|
|
accent: "rgb(var(--accent) / <alpha-value>)",
|
|
"accent-fg": "rgb(var(--accent-fg) / <alpha-value>)",
|
|
danger: "rgb(var(--danger) / <alpha-value>)",
|
|
},
|
|
fontFamily: {
|
|
sans: ["var(--font-sans)", "ui-sans-serif", "system-ui", "sans-serif"],
|
|
},
|
|
borderRadius: { DEFAULT: "10px" },
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|