tailwind.config.js
1 /** @type {import('tailwindcss').Config} */ 2 export default { 3 darkMode: 'class', 4 content: ['./index.html', './src/**/*.{js,jsx}'], 5 theme: { 6 extend: { 7 colors: { 8 // Audit&Fix brand colours (see docs/09-business/auditandfix-brand.md) 9 brand: { 10 orange: '#e05d26', 11 'orange-dark': '#c44d1e', 12 navy: '#1a365d', 13 }, 14 // Report grade colours (match PDF spec) 15 grade: { 16 'A+': '#38a169', 17 A: '#38a169', 18 'A-': '#38a169', 19 'B+': '#3182ce', 20 B: '#3182ce', 21 'B-': '#3182ce', 22 C: '#d69e2e', 23 D: '#dd6b20', 24 E: '#e53e3e', 25 F: '#e53e3e', 26 }, 27 }, 28 fontFamily: { 29 sans: [ 30 '-apple-system', 31 'BlinkMacSystemFont', 32 "'Segoe UI'", 33 'Roboto', 34 'Oxygen', 35 'Ubuntu', 36 'sans-serif', 37 ], 38 }, 39 }, 40 }, 41 plugins: [], 42 };