Fix the Pitch Black buttons color (#773)

Fix #757
This commit is contained in:
sgenoud 2018-12-11 05:52:24 +01:00 committed by Nolan Lawson
parent b2f5f36207
commit 94d0590070
1 changed files with 13 additions and 0 deletions

View File

@ -20,6 +20,19 @@ $compose-background: darken($main-theme-color, 12%);
--settings-list-item-bg-active: #{darken($body-bg-color, 10%)};
--settings-list-item-bg-hover: #{darken($body-bg-color, 2%)};
--button-bg: #{lighten($body-bg-color, 5%)};
--button-border: #{$border-color};
--button-bg-hover: #{lighten($body-bg-color, 10%)};
--button-bg-active: #{lighten($body-bg-color, 15%)};
--form-bg: #{$body-bg-color};
--form-border: #{darken($border-color, 10%)};
--action-button-fill-color: #{$main-theme-color};
--action-button-fill-color-hover: #{lighten($main-theme-color, 4%)};
--action-button-fill-color-active: #{darken($main-theme-color, 13%)};
--action-button-fill-color-pressed: #{lighten($main-theme-color, 20%)};
--action-button-fill-color-pressed-hover: #{lighten($main-theme-color, 24%)};
--action-button-fill-color-pressed-active: #{lighten($main-theme-color, 7%)};
}