This commit is contained in:
Justin Visser 2026-02-17 20:24:12 +01:00
parent efd21a7297
commit 441676be27
97 changed files with 10764 additions and 223 deletions

View file

@ -0,0 +1,32 @@
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{vue,ts,tsx,js,jsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Manrope", "ui-sans-serif", "system-ui", "sans-serif"],
display: ["Space Grotesk", "Manrope", "ui-sans-serif", "system-ui", "sans-serif"],
},
boxShadow: {
panel: "0 10px 30px -20px rgba(8, 15, 30, 0.45)",
},
colors: {
brand: {
50: "#ecfeff",
100: "#cffafe",
200: "#a5f3fc",
300: "#67e8f9",
400: "#22d3ee",
500: "#06b6d4",
600: "#0891b2",
700: "#0e7490",
800: "#155e75",
900: "#164e63",
950: "#083344",
},
},
},
},
plugins: [],
};