// Timeline-inspirierte Farbpalette
export const colors = {
  primary: '#6366f1',
  secondary: '#8b5cf6',
  accent: '#06b6d4',
  background: '#f8fafc',
  surface: '#ffffff',
  card: '#ffffff',
  text: '#1e293b',
  textSecondary: '#64748b',
  textLight: '#94a3b8',
  border: '#e2e8f0',
  borderLight: '#f1f5f9',
  success: '#10b981',
  error: '#ef4444',
  warning: '#f59e0b',
  
  // Timeline-spezifische Farben
  timelineBackground: '#f1f5f9',
  cardShadow: 'rgba(0, 0, 0, 0.05)',
  gradientPrimary: '#667eea',
  gradientSecondary: '#764ba2',
  badgeNew: '#ec4899',
  badgeEvent: '#8b5cf6',
  badgeVerein: '#06b6d4',
}; 
