fix: lighten button colors on some themes
This commit is contained in:
parent
f81778d37f
commit
244f31bc05
|
@ -12,3 +12,10 @@ $compose-background: lighten($main-theme-color, 17%);
|
||||||
|
|
||||||
@import "_base.scss";
|
@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%)};
|
||||||
|
}
|
||||||
|
|
|
@ -12,3 +12,10 @@ $compose-background: lighten($main-theme-color, 32%);
|
||||||
|
|
||||||
@import "_base.scss";
|
@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%)};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue