Merge branch 'adjust-colors'

This commit is contained in:
John Hollowell 2022-12-28 17:30:56 +00:00
commit 9ce71a0f59
6 changed files with 25 additions and 15 deletions

View File

@ -26,12 +26,12 @@
@include themify($themes) {
color: themed('navbar-title-color');
background-color: themed('body-background-color');
background-color: themed('tab-link-background-color');
border: none;
border-bottom: 1px solid themed('hr-color');
&.active {
background-color: themed('body-background-color');
background-color: themed('tab-link-active-background-color');
border: 1px solid themed('hr-color');
border-bottom: none;
}

View File

@ -107,4 +107,6 @@ $dark: (
share-background-color: lighten(#403E41, 2.5%),
donation-background-color: #525252,
button-primary-color: $button_dark_primary_color,
tab-link-background-color: lighten(#2D2A2E, 5%),
tab-link-active-background-color: lighten(#2D2A2E, 20%),
);

View File

@ -107,4 +107,6 @@ $hacker: (
share-background-color: #383b4c,
donation-background-color: #43454d,
button-primary-color: $button_hacker_primary_color,
tab-link-background-color: lighten(#151715, 5%),
tab-link-active-background-color: lighten(#151715, 20%),
);

View File

@ -106,4 +106,6 @@ $kimbie: (
share-background-color: #403c38,
donation-background-color: #52493c,
button-primary-color: $button_kimbie_primary_color,
tab-link-background-color: lighten(#221a0f, 5%),
tab-link-active-background-color: lighten(#221a0f, 20%),
);

View File

@ -106,4 +106,6 @@ $light: (
share-background-color: #90a4ae,
donation-background-color: #eceff1,
button-primary-color: $button_light_primary_color,
tab-link-background-color: darken(#fafafa, 2%),
tab-link-active-background-color: darken(#fafafa, 10%),
);

View File

@ -106,4 +106,6 @@ $solarized: (
share-background-color: #99907a,
donation-background-color: #c5e0df,
button-primary-color: $button_solarized_primary_color,
tab-link-background-color: darken(#FDF7E3, 5%),
tab-link-active-background-color: darken(#FDF7E3, 20%),
);