Files
2026-02-09 20:57:46 +01:00

23 lines
441 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,jsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
bg: "#0f172a",
panel: "#111827",
panel2: "#1e293b",
accent: "#38bdf8",
},
boxShadow: {
soft: "0 0 15px rgba(0,0,0,0.4)",
},
borderRadius: {
xl2: "1rem",
},
},
},
plugins: [],
};