fix: tweak accent colors (#2089)

* fix: tweak accent colors

* fix: fixup
This commit is contained in:
Nolan Lawson 2021-08-20 18:08:26 -07:00 committed by GitHub
parent 368775e220
commit 21678ec78e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 0 deletions

View File

@ -34,4 +34,6 @@ $compose-background: lighten($main-theme-color, 32%);
--nav-text-color-hover: #{$main-text-color};
--nav-a-selected-border: #{$anchor-color};
--nav-a-selected-border-hover: #{$anchor-color};
accent-color: #{lighten($main-theme-color, 15%)};
}

View File

@ -12,3 +12,7 @@ $compose-background: lighten($main-theme-color, 32%);
@import "_base.scss";
@import "_light_scrollbars.scss";
:root {
accent-color: #{darken($main-theme-color, 5%)};
}

View File

@ -17,3 +17,7 @@ $scrollbar-face-active: #{lighten($main-theme-color, 10%)};
@import "_base.scss";
@import "_light_scrollbars.scss";
:root {
accent-color: #{darken($main-theme-color, 5%)};
}

View File

@ -15,3 +15,7 @@ $compose-background: lighten($main-theme-color, 52%);
@import "_dark.scss";
@import "_dark_navbar.scss";
@import "_dark_scrollbars.scss";
:root {
accent-color: #{darken($main-theme-color, 5%)};
}

View File

@ -20,3 +20,7 @@ $scrollbar-face-active: #{lighten($main-theme-color, 1%)};
@import "_dark.scss";
@import "_dark_navbar.scss";
@import "_dark_scrollbars.scss";
:root {
accent-color: #{darken($main-theme-color, 12%)};
}