Files
ACVE/tailwind.config.ts
2026-02-07 18:08:42 -06:00

23 lines
417 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
surface: "#f3f3f5",
ink: "#273040",
brand: "#98143f",
accent: "#d4af37",
},
},
},
plugins: [],
};
export default config;