DEV Community

Cover image for Dark Mode Support on AgentNeo
ROHITSINGHTANWAR8
ROHITSINGHTANWAR8

Posted on

Dark Mode Support on AgentNeo

Enhancing the User Experience: Implementing Light/Dark Mode in AgentNeo Dashboard.

In today’s fast-evolving digital world, personalization is key to ensuring an exceptional user experience. While working on the AgentNeo Dashboard, we implemented a Light/Dark Mode Toggle feature, empowering users to customize their interaction with the platform based on their preferences. Here’s a comprehensive look at the project, the process, and the challenges encountered.

• What is AgentNeo Dashboard?
AgentNeo Dashboard is a sophisticated project management and analytics platform. It’s designed to offer seamless navigation, insightful data analysis, and a user-friendly interface to help teams achieve their goals efficiently.

One of the key goals of this project was to improve accessibility and aesthetics, leading us to implement Light/Dark Mode functionality.

• Light/Dark Mode: The Big Idea
The concept of a Light/Dark Mode toggle is simple:
Users can switch between two visual themes, making it easier to work in different lighting conditions while providing a more inclusive user experience.

Here’s what we achieved with this feature:

• Dynamic Theme Switching: Instantly toggle between light and dark modes.
State Persistence: User preferences are saved in local storage, ensuring the selected mode is retained even after the browser is closed.
Responsive Design: Both themes are optimized for desktop, tablet, and mobile devices.

• How It Works:

  1. Theme Management with React Context We used React Context to manage the global theme state. The ThemeProvider component wraps the entire app, ensuring the theme context is accessible across all pages.

Code Snippet
theme-provider.tsx
import { createContext, useContext, useState, useEffect } from "react";
const ThemeContext = createContext();
export const ThemeProvider = ({ children }) => {
const [theme, setTheme] = useState(() =>
localStorage.getItem("theme") || "light"
);
useEffect(() => {
document.documentElement.classList.toggle("dark", theme === "dark");
localStorage.setItem("theme", theme);
}, [theme]);
return (

{children}

);
};
export const useTheme = () => useContext(ThemeContext);

  1. The Toggle Button The toggle button provides an intuitive way for users to switch between themes.

Code Snippet
toggle-button.tsx
import { useTheme } from "./theme-provider";
import { FiSun, FiMoon } from "react-icons/fi";
const ThemeToggleButton = () => {
const { theme, setTheme } = useTheme();
return (
onClick={() => setTheme(theme === "light" ? "dark" : "light")}
className="p-2 rounded"
>
{theme === "light" ? : }

);
};
export default ThemeToggleButton;

• How the Components Interact

  1. ThemeProvider:
    Wraps the app to provide global theme context.
    Monitors the theme state (light or dark) and applies the appropriate class (dark) to the root element.

  2. ThemeToggleButton:
    Allows users to toggle between light and dark modes.
    Updates the theme state in ThemeProvider.

  3. Routing:
    Pages like Overview, Analysis, and others inherit the theme styles dynamically.

• Summary of How It Works
In App.css: Theme-specific styles are defined using CSS variables and the .dark class.

In App.tsx: The ThemeProvider handles the global theme state, while the ThemeToggleButton lets users interact with the theme. Pages dynamically adapt by using TailwindCSS's dark: modifier and custom CSS variables.

• Challenges Faced-

  1. State Persistence Issues:
    Initially, theme changes weren’t persisting after refreshing the page. This was resolved by integrating localStorage to save and load user preferences.

  2. Styling Overlaps:
    Some styles didn’t adapt well to dark mode (e.g., specific text colors). The solution involved explicitly defining colors for both themes.

  3. Component Accessibility:
    Ensuring all components, like charts and graphs, were visible in both themes required adjustments and testing.

• Testing the Implementation-
Browsers Tested: Chrome, Firefox, Safari.
Devices Tested: Desktop, Tablet, Mobile.

• Steps:

  1. Verified the toggle button switches themes dynamically.
  2. Ensured state persistence with localStorage.
  3. Checked visual accessibility of components across all pages.

• Screenshots

  1. Light Mode:
    Image description

  2. Dark Mode:
    Overview Page:
    Image description

Analytics Page:
Image description

Trace-History Page:
Image description

Evaluation Page:
Image description

• Conclusion
The implementation of Light/Dark Mode in AgentNeo Dashboard demonstrates the importance of adaptability and user-centric design. By tackling challenges and integrating this feature seamlessly, we’ve enhanced the platform’s accessibility, aesthetics, and overall user experience.

This project was not just about writing code; it was a learning journey that helped us refine our skills and deliver a polished, professional product.

Top comments (0)