mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-09 18:16:55 +01:00
tweak and fix some colors
This commit is contained in:
parent
44689beb43
commit
860fa1e79d
2 changed files with 15 additions and 7 deletions
|
@ -1,7 +1,3 @@
|
|||
body {
|
||||
background: darken($ui-base-color, 3%);
|
||||
}
|
||||
|
||||
// hashtags in primary color
|
||||
.status__content a {
|
||||
color: $highlight-text-color;
|
||||
|
@ -11,10 +7,11 @@ body {
|
|||
.compose-panel .autosuggest-textarea label .autosuggest-textarea__textarea,
|
||||
.compose-form .autosuggest-input label .autosuggest-textarea__textarea,
|
||||
.compose-form__buttons-wrapper,
|
||||
.compose-form__warning,
|
||||
.spoiler-input input,
|
||||
.compose-form__modifiers,
|
||||
.reply-indicator {
|
||||
background: $ui-base-color;
|
||||
background: lighten($ui-base-color, 4%);
|
||||
color: $primary-text-color;
|
||||
}
|
||||
.compose-form .autosuggest-textarea label .autosuggest-textarea__textarea {
|
||||
|
@ -43,6 +40,10 @@ body {
|
|||
color: $ui-base-lighter-color;
|
||||
}
|
||||
|
||||
.search__input {
|
||||
background: lighten($ui-base-color, 4%);
|
||||
}
|
||||
|
||||
// dropdowns
|
||||
.dropdown-menu,
|
||||
.dropdown-menu__item a,
|
||||
|
@ -76,7 +77,7 @@ body {
|
|||
}
|
||||
.glitch.local-settings__navigation,
|
||||
.glitch.local-settings__navigation__item {
|
||||
background: lighten($ui-base-color, 5%);
|
||||
background: lighten($ui-base-color, 4%);
|
||||
}
|
||||
.glitch.local-settings__navigation__item {
|
||||
border-bottom-color: $ui-base-lighter-color;
|
||||
|
@ -88,6 +89,7 @@ body {
|
|||
.account__avatar,
|
||||
.search__input,
|
||||
.spoiler-input input,
|
||||
.status-card,
|
||||
.language-dropdown__dropdown,
|
||||
.privacy-dropdown__dropdown,
|
||||
.poll__option input[type="text"],
|
||||
|
@ -120,3 +122,9 @@ body {
|
|||
border-bottom-left-radius: $border-radius;
|
||||
border-bottom-right-radius: $border-radius;
|
||||
}
|
||||
|
||||
// no separators between posts
|
||||
.status {
|
||||
border-bottom: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ $gold-star: #e4ba3d;
|
|||
$red-bookmark: $success-green;
|
||||
|
||||
// Values from the classic Mastodon UI
|
||||
$classic-base-color: #0f0b17;
|
||||
$classic-base-color: #150f21;
|
||||
$classic-primary-color: #d4b6cb;
|
||||
$classic-secondary-color: #eaddf4;
|
||||
$classic-highlight-color: #de18a3;
|
||||
|
|
Loading…
Reference in a new issue