mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
17 lines
321 B
TypeScript
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;
|