rework options menu

This commit is contained in:
Olivier Gagnon
2021-09-14 21:05:49 -04:00
parent f895da118d
commit dc9b5c3341
8 changed files with 618 additions and 342 deletions
+19 -2
View File
@@ -14,6 +14,7 @@ export const colors = {
secondary: "#888",
secondarydark: "#666",
welllight: "#444",
well: "#222",
white: "#fff",
black: "#000",
@@ -36,6 +37,9 @@ export const theme = createMuiTheme({
main: colors.error,
dark: colors.errordark,
},
background: {
paper: colors.well,
},
},
typography: {
fontFamily: "monospace",
@@ -150,12 +154,25 @@ export const theme = createMuiTheme({
backgroundColor: colors.black,
},
paperAnchorDockedLeft: {
borderRight: "1px solid #444",
borderRight: "1px solid " + colors.welllight,
},
},
MuiDivider: {
root: {
backgroundColor: "#444",
backgroundColor: colors.welllight,
},
},
MuiFormControlLabel: {
root: {
color: colors.primary,
},
},
MuiSwitch: {
switchBase: {
color: colors.primarydark,
},
track: {
backgroundColor: colors.welllight,
},
},
},