Files
q-buffer/apps/web/tailwind.config.cjs
2026-01-02 15:49:01 +03:00

15 lines
246 B
JavaScript

module.exports = {
content: ["./src/**/*.{ts,tsx}", "./index.html"],
theme: {
extend: {
colors: {
ink: "#0f172a",
fog: "#e2e8f0",
mint: "#14b8a6",
steel: "#94a3b8"
}
}
},
plugins: []
};