/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./web/templates/**/*.html", "./web/static/js/**/*.js", ], theme: { extend: { colors: { primary: { 50: '#eff6ff', 100: '#dbeafe', 500: '#3b82f6', 600: '#2563eb', 700: '#1d4ed8', }, accent: { 50: '#f0f9ff', 100: '#e0f2fe', 500: '#06b6d4', 600: '#0891b2', }, trello: '#0079bf', todoist: '#e44332', obsidian: '#7c3aed', plantoeat: '#10b981', }, spacing: { '18': '4.5rem', '88': '22rem', }, fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'], }, }, }, plugins: [], }