pcsx2-gui: Modern Dark Themed Console v2.Replaces old dark mode with modern dark mode to the console.

Darker than dark (#3446)
This commit is contained in:
RedDevilus 2020-07-12 19:30:18 +02:00 committed by refractionpcsx2
parent 257f8b1142
commit c23f3be21f
1 changed files with 2 additions and 2 deletions

View File

@ -393,7 +393,7 @@ ConsoleLogFrame::ConsoleLogFrame( MainEmuFrame *parent, const wxString& title, A
if (0==m_conf.Theme.CmpNoCase(L"Dark"))
{
m_ColorTable.SetColorScheme_Dark();
m_TextCtrl.SetBackgroundColour( wxColor( 54, 57, 62 ) );
m_TextCtrl.SetBackgroundColour( wxColor( 38, 41, 48 ) );
}
else //if ((0==m_conf.Theme.CmpNoCase("Default")) || (0==m_conf.Theme.CmpNoCase("Light")))
{
@ -868,7 +868,7 @@ void ConsoleLogFrame::OnToggleTheme( wxCommandEvent& evt )
case MenuId_ColorScheme_Dark:
newTheme = L"Dark";
m_ColorTable.SetColorScheme_Dark();
m_TextCtrl.SetBackgroundColour( wxColor( 54, 57, 62 ) );
m_TextCtrl.SetBackgroundColour( wxColor( 38, 41, 48 ) );
break;
}