Skip to content

Commit

Permalink
style: Modify color-thme value.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 16, 2022
1 parent bd51df8 commit 4728202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ class DarkMode extends HTMLElement {
[data-color-mode*='dark'] {
color-scheme: dark;
--color-thme-bg: #0d1117;
--color-thme-text: #fff;
--color-thme-text: #c9d1d9;
background-color: var(--color-thme-bg);
color: var(--color-thme-text);
}
[data-color-mode*='light'] {
color-scheme: light;
--color-thme-bg: #fff;
--color-thme-text: #282c34;
--color-thme-text: #24292f;
background-color: var(--color-thme-bg);
color: var(--color-thme-text);
}`;
Expand Down

0 comments on commit 4728202

Please sign in to comment.