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

View file

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