From 6bda82321ba380e13998e1247cbc5065dda34bdb Mon Sep 17 00:00:00 2001 From: Leni Aniva Date: Tue, 15 Oct 2024 19:28:58 -0700 Subject: [PATCH] fix: Dark mode highlighting of code --- tailwind.config.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index f412e22..7a0263f 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -141,7 +141,10 @@ const config: Config = { }, blockquote: { color: theme('colors.gray.800'), - } + }, + code: { + color: theme('colors.gray.800'), + }, }; const themeStar = { color: theme('colors.gray.200'), @@ -165,7 +168,10 @@ const config: Config = { }, blockquote: { color: theme('colors.gray.300'), - } + }, + code: { + color: theme('colors.gray.300'), + }, }; return {