From 3feeaf0fbcf2687f64a76d8c6296841abc728539 Mon Sep 17 00:00:00 2001 From: gbanyan Date: Mon, 17 Nov 2025 18:05:40 +0800 Subject: [PATCH] Brighten blockquotes in dark mode --- tailwind.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index 2c679d7..269167b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -56,7 +56,11 @@ module.exports = { }, blockquote: { borderLeftColor: theme('colors.blue.500'), - backgroundColor: theme('colors.slate.900') + backgroundColor: theme('colors.slate.800'), + color: theme('colors.slate.50'), + p: { + color: theme('colors.slate.50') + } }, code: { backgroundColor: theme('colors.slate.800')