import type { Config } from "tailwindcss"; const config: Config = { darkMode: "class", content: [ "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { extend: { colors: { // TrustOS brand palette vault: { black: "#0a0d14", dark: "#1a1f2e", titanium: "#2d3447", surface: "#1e2336", border: "#2d3447", sapphire: "#3b82d4", sapphireLight: "#60a5fa", sapphireDim: "#1e3a5f", crimson: "#dc2626", crimsonDim: "#450a0a", amber: "#d97706", amberDim: "#451a03", emerald: "#059669", emeraldDim: "#052e16", text: "#e2e8f0", muted: "#64748b", subtle: "#94a3b8", }, }, fontFamily: { sans: ["var(--font-inter)", "system-ui", "sans-serif"], }, backgroundImage: { "vault-gradient": "linear-gradient(135deg, #0a0d14 0%, #1a1f2e 100%)", }, }, }, plugins: [], }; export default config;