From 636b11b90fbbdaa72ab1ed4ade66080534cd2045 Mon Sep 17 00:00:00 2001 From: gbanyan Date: Mon, 17 Nov 2025 21:42:27 +0800 Subject: [PATCH] Brighten strong and emphasized text in dark mode --- tailwind.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index 6af7553..422621e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -49,6 +49,17 @@ module.exports = { color: theme('colors.blue.300') } }, + strong: { + color: theme('colors.slate.50'), + fontWeight: '700' + }, + b: { + color: theme('colors.slate.50'), + fontWeight: '700' + }, + em: { + color: theme('colors.slate.100') + }, h1: { color: theme('colors.slate.50') },