-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Remove dark mode and mode switcher from navigation bar
Problem
The dark mode switcher in the navigation bar creates additional testing overhead without providing sufficient value. The documentation currently has a mode switcher in the top right of the navigation bar.
Current State
Based on the configuration in docusaurus.config.ts, it appears there's a conflict:
- Line 27-32 has settings to disable the dark mode switcher:
themeConfig: { colorMode: { disableSwitch: true, defaultMode: 'light', }, },
- However, the mode switcher is still appearing in the UI
Proposed Solution
- Ensure dark mode is properly disabled by fixing any configuration issues
- Remove the mode switcher from the navigation bar
- Standardize on light mode only for the documentation
Technical Details
The issue might be caused by a conflict in the Docusaurus configuration, as there are two themeConfig objects defined in the config file (one at line 27 and another at line 109). The colorMode settings need to be correctly placed in the configuration structure.
Impact
Removing the dark mode:
- Reduces testing overhead
- Simplifies the UI
- Ensures consistent appearance across the documentation
- Allows focusing development efforts on improving the core documentation experience
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request