mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-01-23 16:02:34 +01:00
5dbb2b182d
-- Dashboard Update -- Update to version 4.0.0. Complete redesign of the admin panel. New features and a license change.
9 lines
319 B
JavaScript
Vendored
9 lines
319 B
JavaScript
Vendored
// Retrieve the value of the 'color-mode' key from local storage
|
|
var colorMode = localStorage.getItem('color-mode');
|
|
|
|
// Check if the value is valid and set it to 'auto' if not
|
|
if (!colorMode || (colorMode !== 'light' && colorMode !== 'dark')) {
|
|
colorMode = 'auto';
|
|
localStorage.setItem('color-mode', colorMode);
|
|
}
|