Files
stellar/client/tailwind.config.ts

18 lines
309 B
TypeScript
Raw Permalink Normal View History

2026-03-22 23:33:24 -05:00
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
ink: "#020617",
glow: "#7dd3fc",
ember: "#f97316",
nebula: "#0f172a"
}
}
},
plugins: []
} satisfies Config;