UI: Improve theme support. (#1079)

This commit is contained in:
adeilt
2024-02-15 20:51:07 -08:00
committed by GitHub
parent 22aec2a8b9
commit 93b9a10e41
23 changed files with 142 additions and 12 deletions
+4 -4
View File
@@ -26,16 +26,16 @@ const useStyles = makeStyles(() =>
},
},
level0: {
color: "red",
color: Settings.theme.bnlvl0,
},
level1: {
color: "yellow",
color: Settings.theme.bnlvl1,
},
level2: {
color: "#48d1cc",
color: Settings.theme.bnlvl2,
},
level3: {
color: "blue",
color: Settings.theme.bnlvl3,
},
}),
);