core/landing/tailwind.config.ts
2025-12-11 18:12:14 -03:00

16 lines
303 B
TypeScript

import { type Config } from "tailwindcss";
export default {
content: [
"{routes,islands,components}/**/*.{ts,tsx,js,jsx}",
],
theme: {
extend: {
colors: {
surface: "#0f172a",
foreground: "#f8fafc",
accent: "#22d3ee",
},
},
},
} satisfies Config;