portfolio/tailwind.config.js
Tobias Brummer 75f4febcf9
Some checks failed
Docker / build (push) Failing after 5s
Initial Commit
2025-05-18 23:51:19 +02:00

21 lines
411 B
JavaScript

module.exports = {
content: ["./src/vite/index.html", "./src/vite/**/*.{vue,js,jsx}"],
theme: {
minHeight: {
70: "70vh",
},
extend: {},
backgroundColor: (theme) => ({
...theme("colors"),
primary: "#3490dc",
secondary: "#ffed4a",
danger: "#e3342f",
black: "#121212",
gray: "#1c1c1c",
}),
},
variants: {
extend: {},
},
plugins: [],
};