You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplify the application theme system to support only Dark Mode and Light Mode.
Remove all other themes, theme selectors, and any unused or related theme-management code.
Use the following colors as the base background colors for each theme:
Dark theme base/background: #0a0a0a
Light theme base/background: #e5e5e5
Generate appropriate supporting color palettes (surface, border, hover, muted, text, and accent shades) derived from these base colors to maintain strong contrast, accessibility, and visual consistency.
Define separate primary/accent colors that are clearly visible and usable within each theme.
Ensure all UI components adapt correctly to the updated two-theme system with consistent spacing, contrast, and readability.
Keep the theming architecture clean, maintainable, and scalable for future UI updates.
Simplify the application theme system to support only Dark Mode and Light Mode.
Remove all other themes, theme selectors, and any unused or related theme-management code.
Use the following colors as the base background colors for each theme:
#0a0a0a#e5e5e5Generate appropriate supporting color palettes (surface, border, hover, muted, text, and accent shades) derived from these base colors to maintain strong contrast, accessibility, and visual consistency.
Define separate primary/accent colors that are clearly visible and usable within each theme.
Ensure all UI components adapt correctly to the updated two-theme system with consistent spacing, contrast, and readability.
Keep the theming architecture clean, maintainable, and scalable for future UI updates.