From 2f1574900cbd2e272d088ec721c4691f1db9a6f1 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 23 May 2022 19:10:17 -0700 Subject: Update colors --- modern/src/common/theme/palette.js | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'modern/src/common/theme/palette.js') diff --git a/modern/src/common/theme/palette.js b/modern/src/common/theme/palette.js index 02261950..dc9e58e4 100644 --- a/modern/src/common/theme/palette.js +++ b/modern/src/common/theme/palette.js @@ -1,16 +1,22 @@ +import { amber, grey, green, indigo, red } from '@mui/material/colors'; +import { common } from '@mui/material/colors'; + export default { + background: { + default: grey[50], + }, primary: { - main: '#1a237e', + main: indigo[900], }, secondary: { - main: '#4caf50', - contrastText: '#ffffff', + main: green[500], + contrastText: common.white, }, colors: { - white: '#ffffff', - positive: '#4caf50', - medium: '#ffa000', - negative: '#f44336', - neutral: '#9e9e9e', + white: common.white, + positive: green[500], + medium: amber[700], + negative: red[500], + neutral: grey[500], }, }; -- cgit v1.2.3