Skip to content

Commit

Permalink
FE: UX: Fix header opacity (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilumilak authored Aug 1, 2024
1 parent 42b3ae8 commit 654978b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/theme/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ export const theme = {
menu: {
primary: {
backgroundColor: {
normal: hexToRgba(Colors.brand[95], 0),
normal: Colors.brand[0],
hover: hexToRgba(Colors.brand[95], 0.03),
active: hexToRgba(Colors.brand[95], 0.05),
},
Expand Down Expand Up @@ -985,7 +985,7 @@ export const darkTheme: ThemeType = {
menu: {
primary: {
backgroundColor: {
normal: hexToRgba(Colors.brand[0], 0),
normal: Colors.brand[90],
hover: hexToRgba(Colors.brand[0], 0.05),
active: hexToRgba(Colors.brand[0], 0.1),
},
Expand Down

0 comments on commit 654978b

Please sign in to comment.