twenty-one/windi.config.ts
2023-04-22 20:48:06 +02:00

23 lines
No EOL
488 B
TypeScript

import { defineConfig } from "vite-plugin-windicss"
import colors from "windicss/colors"
export default defineConfig({
theme: {
fontFamily: {
"normal": ["InterVariable", "sans-serif"],
"fat": ["Titan One", "sans-serif"]
},
colors: {
transparent: "transparent",
white: "white",
black: "black",
gray: colors.zinc,
light: colors.light,
dark: colors.dark,
red: colors.rose,
yellow: colors.yellow,
green: colors.green,
blue: colors.indigo,
}
}
})