import type { Config } from 'tailwindcss'; const config: Config = { content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { primary: '#0b7285', accent: '#51cf66' } } }, plugins: [] }; export default config;