Fix brand color and error color are indistinguishable (#59)

This commit is contained in:
Quang Lam 2019-12-01 13:35:50 -06:00 committed by GitHub
parent e5e6c1fc50
commit 08699e5b9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,19 +77,19 @@ class AppWrapper extends React.Component {
palette: {
type: shouldUseDarkMode ? 'dark' : 'light',
primary: {
light: red[300],
main: red[500],
dark: red[700],
},
secondary: {
light: blue[300],
main: blue[600],
dark: blue[800],
},
error: {
secondary: {
light: pink[300],
main: pink[500],
dark: pink[700],
main: pink[600],
dark: pink[800],
},
error: {
light: red[300],
main: red[500],
dark: red[700],
},
},
};