yaerguossite/tailwind.config.js

26 lines
651 B
JavaScript
Raw Normal View History

2025-01-05 13:03:47 +01:00
export default {
content: [
"./src/**/*.{html,js,svelte,ts}",
"./src/**/**/*.{html,js,svelte,ts}"
],
theme: {
extend: {
colors: {
'hero-top': '#1B4D3E',
'hero-bottom': '#2A4D3E',
'features-bg': '#1B2B1B',
'card-bg': 'rgba(0, 0, 0, 0.2)',
'text-primary': '#4CAF50',
'text-muted': '#A0AEC0',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
2025-01-06 15:34:34 +01:00
khand: ['Khand', 'sans-serif']
2025-01-05 13:03:47 +01:00
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
},
},
plugins: [],
}