-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
26 lines (26 loc) · 904 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
26 lines (26 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#2563EB', // SPEC.md: Vertrauenswürdiges Blau
secondary: '#059669', // SPEC.md: Beruhigendes Grün (Erfolg/Aktion)
accent: '#F59E0B', // SPEC.md: Warmes Amber (Highlights/Warnungen)
background: '#F8FAFC', // SPEC.md: Sehr helles Grau
surface: '#FFFFFF', // SPEC.md: Reines Weiß
'text-primary': '#1E293B', // SPEC.md: Dunkles Slate
'text-secondary': '#64748B', // SPEC.md: Mittleres Grau
error: '#DC2626', // SPEC.md: Klareres Rot
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
mono: ['JetBrains Mono', 'Consolas', 'monospace'],
},
},
},
plugins: [],
}