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