23 lines
578 B
TypeScript
23 lines
578 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Semantic colors from brand guidelines
|
|
error: '#ef4444', // red-500
|
|
success: '#22c55e', // green-500
|
|
caution: '#eab308', // yellow-500
|
|
admin: '#3b82f6', // blue-500
|
|
agentic: '#a855f7', // purple-500
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
export default config
|