aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorEugene <eug-vs@keemail.me>2020-01-04 22:49:10 +0000
committerGitHub <noreply@github.com>2020-01-04 22:49:10 +0000
commit048f277ef7831b8f1a02c5e6590fb8087862b7fc (patch)
treedeab191812bd4a0e5a980152d13cad9eae3d3b18 /src/components
parentaf91e785e66cf70e3055ded8e519f575b7d46f0d (diff)
parente060228f206d3f392ed29de4ac509805935c39fe (diff)
downloadchrono-cube-ui-048f277ef7831b8f1a02c5e6590fb8087862b7fc.tar.gz
Merge pull request #21 from Eug-VS/theme-update
Update theme
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Header/Header.js5
-rw-r--r--src/components/Scoreboard/Solution.js3
2 files changed, 2 insertions, 6 deletions
diff --git a/src/components/Header/Header.js b/src/components/Header/Header.js
index 021f2b4..9c286f7 100644
--- a/src/components/Header/Header.js
+++ b/src/components/Header/Header.js
@@ -8,11 +8,8 @@ import {
import { makeStyles } from '@material-ui/core/styles';
const useStyles = makeStyles(theme => ({
- header: {
- backgroundColor: theme.palette.primary.dark,
- },
logo: {
- color: theme.palette.orange.main,
+ color: theme.palette.secondary.main,
margin: theme.spacing(2, 3, 2, 2)
},
}));
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),
},
},