mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 22:41:26 +02:00
Wire up event-parser and event-estimator into the QuickEventOverlay title input. Typing natural language like "Meeting morgen 14 Uhr 1h @Arbeit" now shows a live parse preview, duration estimation from history, and conflict warnings. On submit, parsed values auto-fill form fields (date, time, calendar, location, recurrence, all-day). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
// App ist permanent im Dark Mode mit komplett schwarzem Theme
|
|
export const getThemeColors = () => {
|
|
return {
|
|
bg: 'bg-black',
|
|
cardBg: 'bg-card-dark',
|
|
text: 'text-white',
|
|
textSecondary: 'text-gray-400',
|
|
border: 'border-gray-800',
|
|
input: 'bg-gray-800',
|
|
};
|
|
};
|