import type { Config } from 'tailwindcss' export default { content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { healthGreen: '#2D9CDB', medicalBlue: '#0F4C81' } } }, plugins: [] } satisfies Config