all but posts omg

This commit is contained in:
2026-02-19 12:07:10 -08:00
parent 1913d9c46e
commit 96049f57ee
40 changed files with 1030 additions and 192 deletions

32
css/palette.css Normal file
View File

@ -0,0 +1,32 @@
.color {
border: .125rem solid var(--color-text);
border-radius: 2rem;
padding: .5rem;
text-align: center;
width: 65%;
margin: 1rem auto;
font-weight: bold;
}
#dark,
#dark-alt,
#teal-dark,
#pink-dark {
color: var(--color-light);
}
#light,
#light-alt,
#teal-light,
#pink-light {
color: var(--color-dark);
}
#dark { background-color: var(--color-dark); }
#dark-alt { background-color: var(--color-dark-alt); }
#light { background-color: var(--color-light); }
#light-alt { background-color: var(--color-light-alt); }
#teal-dark { background-color: var(--color-teal-dark); }
#teal-light { background-color: var(--color-teal-light); }
#pink-dark { background-color: var(--color-pink-dark); }
#pink-light { background-color: var(--color-pink-light); }