Skip to content

Commit

Permalink
Even smaller color tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
danott committed Jan 15, 2024
1 parent 025f239 commit 1ea3aff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,16 @@ textarea:not([rows]) {
/* Begin my styles */

:root {
--color-background: #eaeaea;
--color-text: #303030;
--color-background: rgb(251, 249, 239);
--color-text: rgb(43, 40, 27);
--color-link: var(--color-text);
font-size: 100%;
}

@media (prefers-color-scheme: dark) {
:root {
--color-background: #0e0b03;
--color-text: #f2ead3;
--color-background: rgb(37, 36, 31);
--color-text: rgb(242, 240, 234);
}
}

Expand Down

0 comments on commit 1ea3aff

Please sign in to comment.