39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// IFC Calendar colors (one per month)
|
|
ifc: {
|
|
january: '#ef4444', // Red
|
|
february: '#f97316', // Orange
|
|
march: '#eab308', // Yellow
|
|
april: '#22c55e', // Green
|
|
may: '#14b8a6', // Teal
|
|
june: '#0ea5e9', // Sky
|
|
sol: '#f59e0b', // Amber (special month)
|
|
july: '#3b82f6', // Blue
|
|
august: '#6366f1', // Indigo
|
|
september: '#8b5cf6', // Violet
|
|
october: '#a855f7', // Purple
|
|
november: '#ec4899', // Pink
|
|
december: '#78716c', // Stone
|
|
},
|
|
},
|
|
fontFamily: {
|
|
mono: ['JetBrains Mono', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config
|