Files
8d9163e2-eb6f-4d09-9b89-935…/tailwind.config.js
2026-05-19 12:01:59 +00:00

24 lines
662 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
background: '#e0f2f7', // Light blue
card: '#ffffff',
foreground: '#003366', // Dark blue
'primary-cta': '#007bff', // Bright blue
'secondary-cta': '#ffffff',
accent: '#66b2ff', // Medium blue
'background-accent': '#a8d9f7', // Lighter blue
'primary-cta-text': '#ffffff',
'secondary-cta-text': '#003366',
},
borderRadius: {
theme: '1rem',
'theme-capped': '1rem',
},
},
},
plugins: [],
};