Skip to content

Commit

Permalink
Fix btn color in TG dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kubk committed May 10, 2024
1 parent 64686a0 commit e316504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const Button = (props: Props) => {
outline &&
css({
backgroundColor: parsedColor
.lighten(isDarkTheme() ? 0.25 : 0.4)
.lighten(isDarkTheme() ? 0.3 : 0.4)
.toHex(),
color: mainColor,
":hover": {
Expand Down

0 comments on commit e316504

Please sign in to comment.