24 lines
662 B
JavaScript
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: [],
|
|
}; |