Spaces:
Sleeping
Sleeping
File size: 711 Bytes
0e24aff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | /** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
background: "#0b0d10",
surface: "#15181d",
surfaceMuted: "#1d2127",
border: "#272c33",
primary: "#f97a5c",
primaryMuted: "#b95d44",
accentBlue: "#5cc8f9",
accentGreen: "#69d96f",
accentAmber: "#f7c560",
textPrimary: "#e5e7eb",
textMuted: "#9ca3af",
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
mono: ['"JetBrains Mono"', 'ui-monospace', 'SFMono-Regular', 'monospace'],
},
},
},
plugins: [],
};
|