24 lines
475 B
TypeScript
24 lines
475 B
TypeScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#2563EB',
|
|
light: '#3B82F6',
|
|
dark: '#1D4ED8',
|
|
},
|
|
danger: '#DC2626',
|
|
warning: '#F59E0B',
|
|
safe: '#16A34A',
|
|
surface: '#F8FAFC',
|
|
},
|
|
maxWidth: {
|
|
content: '960px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|