Skip to content

Commit

Permalink
perf(ui): improve categories color in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
cotes2020 committed May 12, 2023
1 parent f0266c1 commit 414dd13
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions _sass/colors/dark-typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
--btn-backtotop-color: var(--text-color);
--btn-backtotop-border-color: var(--btn-border-color);
--btn-box-shadow: var(--main-bg);
--card-header-bg: rgb(51, 50, 50);
--card-header-bg: rgb(48, 48, 48);
--label-color: rgb(108, 117, 125);
--checkbox-color: rgb(118, 120, 121);
--checkbox-checked-color: var(--link-color);
Expand Down Expand Up @@ -90,7 +90,7 @@
--dash-color: rgb(63, 65, 68);

/* categories */
--categories-border: rgb(64, 66, 69);
--categories-border: rgb(64, 66, 69, 0.5);
--categories-hover-bg: rgb(73, 75, 76);
--categories-icon-hover-color: white;

Expand All @@ -114,6 +114,10 @@
}

.categories {
&.card {
border-color: var(--main-border-color);
}

.card-header {
background-color: var(--card-header-bg);
}
Expand Down

0 comments on commit 414dd13

Please sign in to comment.