16 lines
303 B
TypeScript
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;
|