mirror of
https://github.com/VERT-sh/VERT.git
synced 2026-02-21 07:18:40 -06:00
23 lines
434 B
TypeScript
23 lines
434 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: "var(--bg)",
|
|
foreground: "var(--fg)",
|
|
"foreground-muted": "var(--fg-muted)",
|
|
"foreground-muted-alt": "var(--fg-muted-alt)",
|
|
},
|
|
fontFamily: {
|
|
display: "var(--font-display)",
|
|
body: "var(--font-body)",
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [],
|
|
} satisfies Config;
|