From 750e7289ed831996b8fa2e108222cd791fdf90f6 Mon Sep 17 00:00:00 2001 From: apanizo Date: Fri, 7 Sep 2018 16:36:53 +0200 Subject: [PATCH] Specifying as secondary color custom blue --- src/theme/mui.js | 2 +- src/theme/variables.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme/mui.js b/src/theme/mui.js index 300cf447..66b18062 100644 --- a/src/theme/mui.js +++ b/src/theme/mui.js @@ -32,7 +32,7 @@ export default createMuiTheme({ letterSpacing: '1px', }, containedPrimary: { - backgroundColor: '#467ee5', + backgroundColor: secondary, }, sizeLarge: { padding: `${md} ${lg}`, diff --git a/src/theme/variables.js b/src/theme/variables.js index 94185584..3387924c 100644 --- a/src/theme/variables.js +++ b/src/theme/variables.js @@ -2,7 +2,7 @@ const border = '#eaebef' const background = '#f4f4f9' const primary = '#4a5579' -const secondary = '#13222b' +const secondary = '#467ee5' // '#13222b' const tertiary = '#f6f9fc' const fontColor = '#4a5579' const fancyColor = '#fd7890'