diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-05 01:35:24 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-05 01:35:24 +0300 |
commit | e060228f206d3f392ed29de4ac509805935c39fe (patch) | |
tree | deab191812bd4a0e5a980152d13cad9eae3d3b18 /src/components/Scoreboard | |
parent | af91e785e66cf70e3055ded8e519f575b7d46f0d (diff) | |
download | chrono-cube-ui-e060228f206d3f392ed29de4ac509805935c39fe.tar.gz |
Simplify theme and use better colors
Diffstat (limited to 'src/components/Scoreboard')
-rw-r--r-- | src/components/Scoreboard/Solution.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/Scoreboard/Solution.js b/src/components/Scoreboard/Solution.js index 6f87723..1d54b04 100644 --- a/src/components/Scoreboard/Solution.js +++ b/src/components/Scoreboard/Solution.js @@ -17,7 +17,6 @@ import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; const useStyles = makeStyles(theme => ({ item: { - backgroundColor: theme.palette.secondary.dark, margin: theme.spacing(3), width: theme.spacing(60), @@ -28,7 +27,7 @@ const useStyles = makeStyles(theme => ({ }, '& .MuiTypography-h2': { - color: theme.palette.orange.main, + color: theme.palette.secondary.main, margin: theme.spacing(2), }, }, |