Skip to content

Commit

Permalink
adjust colors
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegMoshkovich committed Oct 8, 2023
1 parent e7628a5 commit ff2d051
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/theme/Colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function getColors() {
lightest: grey[100],
light: grey[300],
medium: '#C1C1C1',
dark: '#444444',
dark: '#242424',
darkest: '#171717',
},
green: {
Expand Down
2 changes: 1 addition & 1 deletion src/theme/Components.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function getComponentOverrides(palette, typography) {
{
props: {variant: 'control'},
style: ({ownerState, theme}) => ({
backgroundColor: palette.scene.background,
backgroundColor: palette.primary.background,
boxShadow: theme.shadows[ownerState.elevation],
}),
},
Expand Down
4 changes: 2 additions & 2 deletions src/theme/Palette.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const day = {
mode: 'light',
primary: {
main: '#6D8752',
background: colors.grey.light,
background: colors.grey.lightest,
contrastText: colors.black,
highlight: colors.orange,
},
Expand All @@ -30,7 +30,7 @@ export const night = {
mode: 'dark',
primary: {
main: '#6D8752',
background: colors.grey.darkest,
background: colors.grey.dark,
contrastText: colors.grey.lightest,
highlight: colors.orange,
},
Expand Down

0 comments on commit ff2d051

Please sign in to comment.