0
0
Fork 0

Fix color mistakes in mastodon-light theme (#7626)

* Fix colors of mastodon-light theme

Fix colors of modals and focused toots in light theme
Fix colors of compose-form items and more
Fix colors of status__content__spoiler-link:hover and $valid-value-color
Change success green color in light theme

* Fix some sass codes

* Add !default for explicit color valiables in default theme

for overwriting colors easier in the other themes
This commit is contained in:
Lynx Kotoura 2018-05-26 17:53:44 +09:00 committed by Eugen Rochko
parent 62cb3b199f
commit a0b4754231
4 changed files with 63 additions and 11 deletions

View file

@ -8,7 +8,10 @@ $classic-secondary-color: #d9e1e8;
$classic-highlight-color: #2b90d9;
// Differences
$base-overlay-background: $white;
$success-green: #3c754d;
$base-overlay-background: $white !default;
$valid-value-color: $success-green !default;
$ui-base-color: $classic-secondary-color !default;
$ui-base-lighter-color: #b0c0cf;
@ -26,7 +29,7 @@ $lighter-text-color: $classic-base-color !default;
$light-text-color: #444b5d;
//Newly added colors
$account-background-color: $white;
$account-background-color: $white !default;
//Invert darkened and lightened colors
@function darken($color, $amount) {