Fix: Correct dark mode background color in body CSS

Changed dark:bg-gray-50 to dark:bg-gray-900 for proper dark mode styling.
The incorrect light gray background in dark mode could cause visual issues.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-10 18:38:11 -05:00
parent df0d1be6e1
commit 93c836d20a

View File

@@ -16,7 +16,7 @@
}
body {
@apply bg-gray-50 text-gray-900 dark:bg-gray-50 dark:text-gray-100;
@apply bg-gray-50 text-gray-900 dark:bg-gray-900 dark:text-gray-100;
font-family: 'Gentium Book Basic', 'Georgia', serif;
line-height: 1.6;
font-size: 1rem;