all repos — site @ 950e99b40722faa344912c7576df9c702925ad74

source for my site, found at icyphox.sh

input.css: fix dark mode code/pre colors

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.sh>
Anirudh Oppiliappan anirudh@tangled.sh
Mon, 09 Jun 2025 01:00:48 +0300
commit

950e99b40722faa344912c7576df9c702925ad74

parent

ad9999a94c880abd7c68833d9a1023bdbdf4c911

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M input.cssinput.css

@@ -28,7 +28,7 @@ --breakpoint-md: 400px;

} h1 { - @apply text-2xl; + @apply text-3xl; @apply font-medium; @apply pt-4 pb-3; }

@@ -79,10 +79,10 @@ @apply marker:text-gray;

} code { - @apply bg-light text-[0.9rem]; + @apply bg-light text-[0.9rem] dark:bg-dark-light; } pre { - @apply bg-light p-4 my-2 overflow-x-auto overflow-y-hidden; + @apply bg-light p-4 my-2 overflow-x-auto overflow-y-hidden dark:bg-dark-light; } .footnotes {