remove the dark experimental and change white to light mode

This commit is contained in:
xbdm
2023-06-28 20:23:14 -04:00
committed by GitHub
parent 0f04e43369
commit ec90fcf89c
+2 -2
View File
@@ -516,8 +516,8 @@ module.exports = function(redis) {
<div class="option">
<select id="theme" name="theme">
<option value="" ${(!theme ? 'selected' : '')}>Auto</option>
<option value="white" ${(theme == 'white' ? 'selected' : '')}>White</option>
<option value="dark" ${(theme == 'dark' ? 'selected' : '')}>Dark (experimental)</option>
<option value="white" ${(theme == 'white' ? 'selected' : '')}>Light Mode</option>
<option value="dark" ${(theme == 'dark' ? 'selected' : '')}>Dark Mode</option>
</select>
</div>
</div>