This commit is contained in:
root
2025-10-20 12:29:34 +00:00
parent 476b09499a
commit 1a5de83d50
63 changed files with 2129 additions and 1107 deletions
+10 -3
View File
@@ -1,10 +1,17 @@
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
const colors = require("tailwindcss/colors");
module.exports = withMT({
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
extend: {
colors: {
sky: colors.sky,
green: colors.green,
slate: colors.slate,
orange: colors.orange, // falls du z.B. text-orange-300 brauchst
},
},
},
plugins: [],
});
});