/** @type {import('tailwindcss').Config} */ export default { content: [ "./public/**/*.html", "./src/**/*.ts", "./src/**/*.tsx", ], theme: { extend: { colors: { primary: '#007bff', secondary: '#6c757d', }, }, }, plugins: [], };