Skip to content

Commit 36fcc6b

Browse files
committed
Adjust outlined button color in dark mode
1 parent a6cdf8c commit 36fcc6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ui/button-side-aligned.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const ButtonSideAligned = (props: Props) => {
6262
outline &&
6363
css({
6464
backgroundColor: parsedColor
65-
.lighten(isDarkTheme() ? 0.35 : 0.4)
65+
.lighten(isDarkTheme() ? 0.25 : 0.4)
6666
.toHex(),
6767
color: mainColor,
6868
}),

src/ui/button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const Button = (props: Props) => {
6868
outline &&
6969
css({
7070
backgroundColor: parsedColor
71-
.lighten(isDarkTheme() ? 0.35 : 0.4)
71+
.lighten(isDarkTheme() ? 0.25 : 0.4)
7272
.toHex(),
7373
color: mainColor,
7474
":hover": {

0 commit comments

Comments
 (0)