updated how light/dark mode is handled

This commit is contained in:
Parker TenBroeck 2026-01-22 19:43:46 -05:00
parent b717263c67
commit 8a91886d68
6 changed files with 75 additions and 114 deletions

View file

@ -13,12 +13,18 @@
body {
background: var(--bg-0);
color: var(--fg-1);
font-size: 16px;
line-height: 1.6em;
letter-spacing: .5px;
}
::selection {
background: var(--text-highlight);
color: var(--fg-0);
}
.content {
margin-bottom: 4em;
margin-left: auto;
@ -87,10 +93,9 @@ h6 {
font-size: 1rem;
}
code {
code:not([data-lang]) {
background: var(--grey-dark);
border-radius: 3px;
font-family: 'Berkeley Mono';
padding: .15rem .3rem;
}