/** @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: [], };