Skip to content

Commit

Permalink
Adjust the dark mode text color for improving the user experience. (S…
Browse files Browse the repository at this point in the history
…uggested by userzzzq.)
  • Loading branch information
MouriNaruto committed May 27, 2024
1 parent 0b76be6 commit 12b1c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NanaZip.Frieren/NanaZip.Frieren.DarkMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ namespace
const COLORREF LightModeForegroundColor = RGB(0, 0, 0);

const COLORREF DarkModeBackgroundColor = RGB(0, 0, 0);
const COLORREF DarkModeForegroundColor = RGB(255, 255, 255);
const COLORREF DarkModeForegroundColor = RGB(192, 192, 192);
const COLORREF DarkModeBorderColor = RGB(127, 127, 127);

static const HBRUSH DarkModeBackgroundBrush =
Expand Down

0 comments on commit 12b1c65

Please sign in to comment.