fix: lighten button colors on some themes

This commit is contained in:
Nolan Lawson 2022-12-20 20:15:42 -08:00
parent f81778d37f
commit 244f31bc05
2 changed files with 15 additions and 1 deletions

View File

@ -12,3 +12,10 @@ $compose-background: lighten($main-theme-color, 17%);
@import "_base.scss";
@import "_light_scrollbars.scss";
:root {
// make the action buttons a bit lighter
--action-button-fill-color: #{lighten($main-theme-color, 17%)};
--action-button-fill-color-hover: #{lighten($main-theme-color, 10%)};
--action-button-fill-color-active: #{lighten($main-theme-color, 5%)};
}

View File

@ -11,4 +11,11 @@ $focus-outline: lighten($main-theme-color, 30%);
$compose-background: lighten($main-theme-color, 32%);
@import "_base.scss";
@import "_light_scrollbars.scss";
@import "_light_scrollbars.scss";
:root {
// make the action buttons a bit lighter
--action-button-fill-color: #{lighten($main-theme-color, 17%)};
--action-button-fill-color-hover: #{lighten($main-theme-color, 10%)};
--action-button-fill-color-active: #{lighten($main-theme-color, 5%)};
}