Files
openwork/tailwind.config.ts
2026-01-13 17:39:22 -08:00

17 lines
321 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"] ,
theme: {
extend: {
colors: {
glass: {
900: "rgba(10, 10, 10, 0.65)",
700: "rgba(17, 17, 17, 0.45)",
},
},
},
},
plugins: [],
} satisfies Config;