customer-riverside/tailwind.config.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

2026-05-16 10:45:33 -08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./web/modules/custom/riverside_pt/templates/**/*.twig',
'./web/modules/custom/riverside_pt/src/**/*.php',
2026-05-24 23:32:23 -08:00
'./web/modules/custom/riverside_pt/js/components/**/*.js',
2026-05-16 10:45:33 -08:00
],
theme: {
2026-05-24 18:23:05 -08:00
extend: {
2026-06-01 01:46:47 -08:00
colors: {
'pt-blue': {
50: '#e8f2f6',
100: '#dde8f0',
200: '#b8d4dc',
300: '#9dbdcb',
400: '#86aab6',
500: '#306f8e',
600: '#1f5a6e',
},
'pt-sage': {
400: '#83a1a1',
500: '#6f8f96',
},
'pt-navy': '#1e3a5f',
},
2026-05-24 18:23:05 -08:00
screens: {
// Adjusted for current hybrid usage (hero changes at sm, header/layout at md)
'sm': '768px', // iPad portrait + when hero layout activates
'md': '1024px', // Desktop start (header fixed, mission row, etc.)
'lg': '1280px', // Large desktop
2026-06-01 01:21:51 -08:00
'2xl': '1780px', // Ultra-wide
2026-05-24 18:23:05 -08:00
},
fontFamily: {
hedvig: ['Hedvig Letters Sans', 'sans-serif'],
},
2026-05-24 18:23:05 -08:00
},
2026-05-16 10:45:33 -08:00
},
plugins: [],
}