| import type { Config } from 'tailwindcss' | |
| const config: Config = { | |
| content: [ | |
| './app/**/*.{js,ts,jsx,tsx,mdx}', | |
| './components/**/*.{js,ts,jsx,tsx,mdx}', | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| bg: { primary: '#09090b', secondary: '#111113', tertiary: '#18181b', hover: '#1f1f23' }, | |
| border: { DEFAULT: '#27272a', focus: '#3f3f46' }, | |
| text: { primary: '#fafafa', secondary: '#a1a1aa', muted: '#71717a', dim: '#52525b' }, | |
| accent: { cyan: '#06b6d4', cyanLight: '#22d3ee', green: '#10b981', amber: '#f59e0b', blue: '#3b82f6', red: '#ef4444' }, | |
| }, | |
| fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'] }, | |
| }, | |
| }, | |
| plugins: [], | |
| } | |
| export default config |