27 lines
691 B
TypeScript
27 lines
691 B
TypeScript
export const theme = {
|
|
bg: 'bg-white',
|
|
surface: 'bg-neutral-50',
|
|
surfaceElevated: 'bg-neutral-100',
|
|
border: 'border-neutral-200',
|
|
text: 'text-neutral-900',
|
|
textMuted: 'text-neutral-500',
|
|
brandOrange: 'text-rebreak-500',
|
|
brandOrangeBg: 'bg-rebreak-500',
|
|
brandBlue: 'bg-midnight-800',
|
|
} as const;
|
|
|
|
export const colors = {
|
|
bg: '#ffffff',
|
|
surface: '#fafafa',
|
|
surfaceElevated: '#f5f5f5',
|
|
border: '#e5e5e5',
|
|
text: '#0a0a0a',
|
|
textMuted: '#737373',
|
|
// TEMP zum Testen: iOS native blue. Wieder auf '#f59e0b' wenn du zur Brand zurück willst.
|
|
brandOrange: '#007AFF',
|
|
brandBlue: '#0e1f3a',
|
|
success: '#16a34a',
|
|
error: '#dc2626',
|
|
warning: '#f59e0b',
|
|
} as const;
|