This commit is contained in:
Clemens Hering
2025-11-03 07:11:48 +01:00
parent 0c0c4d7185
commit 45606723ea
32 changed files with 879 additions and 0 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,md,mdx,js,jsx,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: "#0D47A1",
accent: "#00B8D9",
graybg: "#F3F4F6",
text: "#111827",
textMuted: "#374151"
},
borderRadius: { brand: "8px" }
}
},
plugins: []
};