mirror of
https://github.com/koichixD/Quasar_Item_Editor.git
synced 2026-08-28 17:01:03 +00:00
23 lines
441 B
JavaScript
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: [],
|
|
};
|