🌑Light & Dark Layout
To make a Light / dark layout in the theme change value in "/Mantis/Views/Shared/_config.cshtml".
To make Dark Layout in the theme change given below
TempData["DarkLayout"] = 'true';
To make Light Layout in the theme change given below
TempData["DarkLayout"] = 'false';
To make the Layout theme depend on the user's operating system
TempData["DarkLayout"] = 'default';
Automatically sets the theme based on the user's operating system's color scheme.
Last updated