Update default theme colors

This commit is contained in:
Alex Selimov 2026-03-22 22:14:10 -04:00
parent 556c1725ab
commit 17c78a6bcd
2 changed files with 11 additions and 11 deletions

View file

@ -55,7 +55,7 @@ footer {
} }
.mesh-image { .mesh-image {
color: #61ABDA; color: #EF9F27;
} }
.footer-copy { .footer-copy {
@ -105,16 +105,16 @@ li {
@media (prefers-color-scheme: light) { @media (prefers-color-scheme: light) {
#upvote-btn[voted] { #upvote-btn[voted] {
color: #61ABDA; color: #EF9F27;
} }
body { body {
background-color: #ffffff; background-color: #fffdf8;
color: #1f2328; color: #201e1b;
} }
.mesh-image { .mesh-image {
color: #61ABDA; color: #EF9F27;
} }
h1, h1,
@ -129,12 +129,12 @@ li {
} }
a { a {
color: #61ABDA; color: #EF9F27;
} }
a:visited, a:visited,
ul.blog-posts li a:visited { ul.blog-posts li a:visited {
color: #61ABDA; color: #EF9F27;
} }
header a, header a,
@ -182,7 +182,7 @@ li {
a, a,
a:visited, a:visited,
ul.blog-posts li a:visited { ul.blog-posts li a:visited {
color: #61ABDA; color: #EF9F27;
} }
header a, header a,

View file

@ -1,8 +1,8 @@
:root { :root {
font-size: 62.5%; /* 10px */ font-size: 62.5%; /* 10px */
--color-dark: #181a20; --color-dark: #1a1a1a;
--color-light: #fafafa; --color-light: #faf8f4;
--color-primary: #1a8fe3; --color-primary: #EF9F27;
--size: 1rem; --size: 1rem;
--spacing: calc(var(--size) * 2.4); --spacing: calc(var(--size) * 2.4);
} }