Skip to content

Commit

Permalink
Use 500 and 550 for dark and light mode primary colors
Browse files Browse the repository at this point in the history
Signed-off-by: Dom Del Nano <[email protected]>
  • Loading branch information
ddelnano committed Jun 27, 2024
1 parent 24ca5fa commit 7f5664a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/ui/src/components/mui-theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const COMMON_THEME = {
white: '#FFFFFF',
},
primary: {
main: COLORS.PRIMARY[500].dark,
main: COLORS.PRIMARY[500],
dark: COLORS.PRIMARY[600],
light: COLORS.PRIMARY[400],
},
Expand Down Expand Up @@ -481,7 +481,7 @@ export const DARK_BASE = {
export const LIGHT_BASE = {
palette: {
primary: {
main: COLORS.PRIMARY[500].light,
main: COLORS.PRIMARY[550],
},
mode: 'light' as const,
divider: '#dbdde0',
Expand Down
6 changes: 2 additions & 4 deletions src/ui/src/configurables/base/theme-colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ export const COLORS = {
'200': '#A1F7F7',
'300': '#6DF3F3',
'400': '#35EEEE',
'500': { // Brand primary color!
dark: '#12D6D6',
light: '#12D6D6',
},
'500': '#12D6D6', // Brand primary color!
'550': '#12D6D6', // Primary for light mode
'600': '#0DA0A0',
'700': '#096C6C',
'800': '#053838',
Expand Down

0 comments on commit 7f5664a

Please sign in to comment.