diff --git a/src/slic3r/GUI/AmsMappingPopup.cpp b/src/slic3r/GUI/AmsMappingPopup.cpp index 1126519f5..f76f50ad4 100644 --- a/src/slic3r/GUI/AmsMappingPopup.cpp +++ b/src/slic3r/GUI/AmsMappingPopup.cpp @@ -1192,7 +1192,7 @@ void AmsReplaceMaterialDialog::create() label_title->SetForegroundColour(0x00AE42); auto label_txt = new Label(this, _L("When the current material run out,the printer will continue to print in the following order.")); label_txt->SetFont(Label::Body_13); - label_txt->SetForegroundColour(0x323A3D); + label_txt->SetForegroundColour(StateColor::darkModeColorFor(wxColour("#323A3C"))); label_txt->SetMinSize(wxSize(FromDIP(380), -1)); label_txt->SetMaxSize(wxSize(FromDIP(380), -1)); label_txt->Wrap(FromDIP(380)); diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp index bc22f2fcc..f3b505a1c 100644 --- a/src/slic3r/GUI/MediaPlayCtrl.cpp +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp @@ -32,7 +32,7 @@ MediaPlayCtrl::MediaPlayCtrl(wxWindow *parent, wxMediaCtrl2 *media_ctrl, const w m_button_play->SetCanFocus(false); m_label_status = new Label(this, ""); - m_label_status->SetForegroundColour(wxColour("#2C2C2E")); + m_label_status->SetForegroundColour(wxColour("#323A3C")); m_button_play->Bind(wxEVT_COMMAND_BUTTON_CLICKED, [this](auto &e) { TogglePlay(); }); m_button_play->Bind(wxEVT_RIGHT_UP, [this](auto & e) { m_media_ctrl->Play(); });