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
The current NetJSONGraph.js examples page lacks a modern, user-friendly design and accessibility features.
And also there is no dark mode option.
Proposed Solution
Implement a comprehensive UI redesign with the following key features:
A more engaging and visually appealing interface
Improved readability across different device sizes
Also added a toggle button to introduce dark mode.
A dark mode option to reduce eye strain and support user preferences
Technical details
Main css changes which i have worked on
:root {
/* Light mode color variables */
--bg-primary: #f4f4f4;
--bg-secondary: #ffffff;
--text-primary: #1a1a1a;
}
:root.dark-mode {
/* Dark mode color variables */
--bg-primary: #121212;
--bg-secondary: #1e1e1e;
--text-primary: #e0e0e0;
}
Problem Description
The current NetJSONGraph.js examples page lacks a modern, user-friendly design and accessibility features.
And also there is no dark mode option.
Proposed Solution
Implement a comprehensive UI redesign with the following key features:
A more engaging and visually appealing interface
Improved readability across different device sizes
Also added a toggle button to introduce dark mode.
A dark mode option to reduce eye strain and support user preferences
Technical details
Main css changes which i have worked on
Toggle button using js idea
@nemesifier please review it .
The text was updated successfully, but these errors were encountered: