- Hintergrundfarben auf neutrales Dunkelgrau geändert (#111111/#1a1a1a/#222222) - Nur Akzentfarbe (#1ed760) und Buttons/aktive States bleiben grün - ChapterList: max-h-64 entfernt, nutzt jetzt volle Seitenhöhe Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
670 B
JavaScript
31 lines
670 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: '#111111',
|
|
surface: '#1a1a1a',
|
|
card: '#222222',
|
|
divider: '#303030',
|
|
primary: '#1ed760',
|
|
'primary-dim': '#1a3d28',
|
|
ink: '#e8e8e8',
|
|
muted: '#888888',
|
|
muted2: '#333333',
|
|
c1: '#1a2e1c',
|
|
c2: '#1c1a2e',
|
|
c3: '#2e1a1a',
|
|
c4: '#1a2a2e',
|
|
c5: '#2a2e1a',
|
|
c6: '#2e2218',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|