first commit

This commit is contained in:
Tomas Dvorak
2026-04-10 12:01:36 +02:00
commit 035ac8ddb5
61 changed files with 6600 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
module.exports = {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
canvas: "#f6f4ee",
ink: "#171614",
mist: "#ded7cb",
ember: "#9d5c3d",
pine: "#26413c",
slate: "#42515b",
},
boxShadow: {
card: "0 20px 60px rgba(23, 22, 20, 0.08)",
},
borderRadius: {
panel: "1.5rem",
},
fontFamily: {
sans: ["'IBM Plex Sans'", "ui-sans-serif", "system-ui", "sans-serif"],
},
},
},
plugins: [],
};