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:
@@ -16,7 +16,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
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;
|
font-family: 'Gentium Book Basic', 'Georgia', serif;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user