Skip to content

Commit b5cad87

Browse files
authored
fix: lighten button colors on some themes (#2331)
1 parent a85ff62 commit b5cad87

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

src/scss/themes/grayscale.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,10 @@ $compose-background: lighten($main-theme-color, 17%);
1212

1313
@import "_base.scss";
1414
@import "_light_scrollbars.scss";
15+
16+
:root {
17+
// make the action buttons a bit lighter
18+
--action-button-fill-color: #{lighten($main-theme-color, 17%)};
19+
--action-button-fill-color-hover: #{lighten($main-theme-color, 10%)};
20+
--action-button-fill-color-active: #{lighten($main-theme-color, 5%)};
21+
}

src/scss/themes/majesty.scss

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,11 @@ $focus-outline: lighten($main-theme-color, 30%);
1111
$compose-background: lighten($main-theme-color, 32%);
1212

1313
@import "_base.scss";
14-
@import "_light_scrollbars.scss";
14+
@import "_light_scrollbars.scss";
15+
16+
:root {
17+
// make the action buttons a bit lighter
18+
--action-button-fill-color: #{lighten($main-theme-color, 17%)};
19+
--action-button-fill-color-hover: #{lighten($main-theme-color, 10%)};
20+
--action-button-fill-color-active: #{lighten($main-theme-color, 5%)};
21+
}

0 commit comments

Comments
 (0)