HifiPlanet-Website/hifi-src/tailwind.config.js
Maaxxs f3ab7d0816 Initial commit: HifiPlanet Car-Hifi Shop (Frontend + Backend)
React/Vite Frontend (hifi-src) + PHP/MariaDB Backend (hifi/api) fuer
den Car-Hifi Umbau-Shop HifiPlanet in Amorbach, inkl. Admin-Panel,
2FA, Wartungsmodus, Cookie-Consent und rechtlichen Pflichtseiten.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-05 13:37:06 +02:00

24 lines
501 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
brand: {
50: '#f5fbee',
100: '#e9f6da',
200: '#d3eeb4',
300: '#b6e382',
400: '#92d444',
500: '#6ba626',
600: '#58891f',
700: '#48701a',
800: '#3b5b15',
900: '#304b11',
},
},
},
},
plugins: [],
};