/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { neon: { blue: '#00f3ff', purple: '#bc13fe', dark: '#0a0a12', surface: '#13131f' } }, fontFamily: { sans: ['Inter', 'sans-serif'], } }, }, plugins: [], }