/** @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: [], };