Add header and logo

This commit is contained in:
Jesse Lucas
2020-03-30 14:48:53 -04:00
parent 7fed8334b9
commit 8851f4571c
7 changed files with 71 additions and 7 deletions
+2 -2
View File
@@ -50,13 +50,13 @@ namespace Device {
export function stateTypeToColor(s: StateType): string {
switch (s) {
case StateType.Insync:
return colors.get("green");
return colors.get("blue");
case StateType.UnusedInsync:
return colors.get("grey");
case StateType.Unknown:
return colors.get("grey");
case StateType.Syncing:
return colors.get("blue");
return colors.get("green");
case StateType.Paused:
return colors.get("grey");
case StateType.UnusedPaused: