mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-15 15:10:31 -08:00
Fix brand color and error color are indistinguishable (#59)
This commit is contained in:
parent
e5e6c1fc50
commit
08699e5b9c
1 changed files with 8 additions and 8 deletions
|
|
@ -77,19 +77,19 @@ class AppWrapper extends React.Component {
|
||||||
palette: {
|
palette: {
|
||||||
type: shouldUseDarkMode ? 'dark' : 'light',
|
type: shouldUseDarkMode ? 'dark' : 'light',
|
||||||
primary: {
|
primary: {
|
||||||
light: red[300],
|
|
||||||
main: red[500],
|
|
||||||
dark: red[700],
|
|
||||||
},
|
|
||||||
secondary: {
|
|
||||||
light: blue[300],
|
light: blue[300],
|
||||||
main: blue[600],
|
main: blue[600],
|
||||||
dark: blue[800],
|
dark: blue[800],
|
||||||
},
|
},
|
||||||
error: {
|
secondary: {
|
||||||
light: pink[300],
|
light: pink[300],
|
||||||
main: pink[500],
|
main: pink[600],
|
||||||
dark: pink[700],
|
dark: pink[800],
|
||||||
|
},
|
||||||
|
error: {
|
||||||
|
light: red[300],
|
||||||
|
main: red[500],
|
||||||
|
dark: red[700],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue