feat: initial commit

This commit is contained in:
2026-05-20 23:26:11 +01:00
commit 5b18c7c975
28 changed files with 5141 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
surface: {
DEFAULT: "#0f1419",
raised: "#151c24",
overlay: "#1a232e",
},
accent: {
DEFAULT: "#3d9aed",
muted: "#2a6fa3",
},
},
fontFamily: {
sans: ["IBM Plex Sans", "system-ui", "sans-serif"],
mono: ["IBM Plex Mono", "ui-monospace", "monospace"],
},
boxShadow: {
float: "0 12px 30px rgba(0, 0, 0, 0.35)",
},
},
},
plugins: [],
};