Skip to content

Commit

Permalink
Fixing item bg color in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
aandrew-me committed Aug 31, 2022
1 parent c702cbe commit 2357057
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
--box-toggle: rgb(70, 70, 70);
--box-toggleOn: rgb(28 232 138);
--theme-toggle: rgb(80, 193, 238);
--item-bg: rgb(70, 70, 70);
--item-bg: rgb(75, 75, 75);
--box-shadow: none;
}

Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function toggle() {
root.style.setProperty("--box-main", "rgb(80,80,80)");
root.style.setProperty("--box-toggle", "rgb(70,70,70)");
root.style.setProperty("--theme-toggle", "rgb(80, 193, 238)");
root.style.setProperty("--item-bg", "rgb(60, 60, 60)");
root.style.setProperty("--item-bg", "rgb(75, 75, 75)");
root.style.setProperty("--box-shadow", "none");

darkTheme = true;
Expand Down

0 comments on commit 2357057

Please sign in to comment.