Initial commit

This commit is contained in:
2026-06-04 06:24:56 +02:00
commit 282f4864c4
111 changed files with 8083 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
brand: {
50: "#eefaf3",
100: "#d6f1e0",
200: "#b0e3c6",
300: "#7dcda4",
400: "#47b07e",
500: "#22935f",
600: "#16774c",
700: "#125f3f",
800: "#114c34",
900: "#0e3e2c",
},
},
fontFamily: {
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
},
},
},
plugins: [],
};