Skip to content

Commit

Permalink
docs: Improve theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Nov 5, 2024
1 parent 7ffbd7f commit a4aa340
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,28 +33,28 @@

:root[color-theme="light"] {
--header-background: #4E666D;
--accent-color-lite: #F1F4F2;
--accent-color-lite: #E3EAE6;
--footer-background: #4E666D;
}
@media (prefers-color-scheme: light) {
:root {
--header-background: #4E666D;
--accent-color-lite: #F1F4F2;
--accent-color-lite: #E3EAE6;
--footer-background: #4E666D;
}
}

:root[color-theme="dark"] {
--header-background: #4E666D;
--body-background: #3F3F3F;
--accent-color-lite: #2E2E2E;
--accent-color-lite: #4F5759;
--footer-background: #3F4B4E;
}
@media (prefers-color-scheme: dark) {
:root {
--header-background: #4E666D;
--body-background: #3F3F3F;
--accent-color-lite: #2E2E2E;
--accent-color-lite: #4F5759;
--footer-background: #3F4B4E;
}
}

0 comments on commit a4aa340

Please sign in to comment.