From 2f0d2401ea26c32e94f48827b51cf7ae8ff056ff Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Nov 2025 06:28:11 +0000 Subject: [PATCH 1/3] Force dark mode globally across all components - Set dark class on html element in layout.tsx - Replace all semantic Tailwind classes with hardcoded dark slate colors - Remove all dark: variants since dark mode is now forced - Update editor layout, asset library, playback controls, timeline components - Improve playback controls with better state tracking and debugging logs --- MyApp.Client/app/layout.tsx | 21 +--------- .../editor/canvas/playback-controls.tsx | 18 ++++----- .../editor/canvas/preview-canvas.tsx | 38 +++++++++++++++---- .../components/editor/editor-layout.tsx | 14 +++---- .../editor/timeline/timeline-container.tsx | 14 +++---- .../editor/timeline/timeline-element.tsx | 10 ++--- .../editor/timeline/timeline-ruler.tsx | 6 +-- .../editor/timeline/timeline-track.tsx | 20 +++++----- .../editor/toolbar/asset-library.tsx | 20 +++++----- 9 files changed, 83 insertions(+), 78 deletions(-) diff --git a/MyApp.Client/app/layout.tsx b/MyApp.Client/app/layout.tsx index 984b5e8..d3707b4 100644 --- a/MyApp.Client/app/layout.tsx +++ b/MyApp.Client/app/layout.tsx @@ -15,26 +15,9 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - + - -