23 lines
565 B
JavaScript
23 lines
565 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
bg: "var(--bg)",
|
||
|
|
surface: "var(--surface)",
|
||
|
|
card: "var(--card)",
|
||
|
|
border: "var(--border)",
|
||
|
|
fg: "var(--fg)",
|
||
|
|
muted: "var(--muted)",
|
||
|
|
accent: "var(--accent)",
|
||
|
|
"accent-fg": "var(--accent-fg)",
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["Inter", "system-ui", "-apple-system", "Segoe UI", "Roboto", "sans-serif"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|