Add settings UI for dark mode

This commit is contained in:
Michael Shamoon
2022-06-03 00:20:14 -07:00
parent 6e64ae09aa
commit 165f98dc09
4 changed files with 50 additions and 3 deletions
@@ -17,6 +17,8 @@ export interface AppConfig
dashboardSort: string;
temperatureUnit: string;
darkModeUseSystem: boolean;
}
/**
@@ -35,5 +37,7 @@ export const appConfig: AppConfig = {
dashboardSort: "status",
temperatureUnit: "celsius",
darkModeUseSystem: true,
};