Add dark mode styling

This commit is contained in:
Thelonius Kort
2023-02-11 15:46:11 +01:00
parent 8f2698bf7b
commit 38000db27a
2 changed files with 35 additions and 24 deletions

View File

@ -28,7 +28,11 @@
}
.article h4 {
@apply my-2 font-semibold text-lg leading-8 text-zinc-800;
@apply my-2 font-semibold text-lg leading-8 text-stone-800;
}
.dark .article h4 {
@apply text-stone-300;
}
.article p, .article div {
@ -47,6 +51,10 @@
@apply text-cyan-900;
}
.dark .article a {
@apply text-cyan-700;
}
.article ul {
@apply pl-6 list-disc my-2;
}