import type { Config } from 'tailwindcss' const config: Config = { content: [ './app/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { colors: { success: '#10b981', warning: '#f59e0b', error: '#ef4444', }, }, }, plugins: [], } export default config