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