Files
jellomator/tailwind.config.js
Space-Banane 3991a01ec7
All checks were successful
docker / build-and-push (push) Successful in 49s
Build Jellomator MVP
2026-05-20 20:36:28 +02:00

28 lines
621 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './frontend/src/**/*.{ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
accent: {
50: '#fff1f2',
100: '#ffe4e6',
200: '#fecdd3',
300: '#fda4af',
400: '#fb7185',
500: '#f43f5e',
600: '#e11d48',
700: '#be123c',
800: '#9f1239',
900: '#881337',
},
},
boxShadow: {
glow: '0 0 0 1px rgba(244,63,94,0.25), 0 20px 60px rgba(244,63,94,0.15)',
},
},
},
plugins: [],
};