Files
chill_hugoplate/tailwind.config.js
Boris Waaub 7b98930deb Update hero section and color scheme across the application
- Changed the hero headline and sub-headline for better clarity and engagement.
- Added a secondary button for demo booking in the hero section.
- Updated primary color scheme in CSS files to unify the visual identity.
- Adjusted background and text colors to enhance readability and aesthetics.
- Removed unused CSS classes to streamline styles.
- Updated Tailwind configuration to reflect new color values for primary and secondary themes.
2026-01-22 13:34:30 +01:00

47 lines
1.2 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
presets: [require('./themes/chill-theme/tailwind.config.js')],
content: [
"./themes/chill-theme/layouts/**/*.html",
"./layouts/**/*.html",
"./content/**/*.{html,md}"
],
theme: {
extend: {
colors: {
primary: {
50: '#f46839',
100: '#f46839',
200: '#f46839',
300: '#f46839',
400: '#f46839',
500: '#f46839',
600: '#f46839',
700: '#f46839',
800: '#f46839',
900: '#f46839',
},
secondary: {
50: 'rgba(67, 178, 157, 0.61)',
100: 'rgba(67, 178, 157, 0.61)',
200: 'rgba(67, 178, 157, 0.61)',
300: 'rgba(67, 178, 157, 0.61)',
400: 'rgba(67, 178, 157, 0.61)',
500: 'rgba(67, 178, 157, 0.61)',
600: 'rgba(67, 178, 157, 0.61)',
700: 'rgba(67, 178, 157, 0.61)',
800: 'rgba(67, 178, 157, 0.61)',
900: 'rgba(67, 178, 157, 0.61)',
},
},
fontFamily: {
sans: ['Lato', 'sans-serif'],
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}
}