diff --git a/src/cata_imgui.cpp b/src/cata_imgui.cpp index d39c62b763792..045ab02416e89 100644 --- a/src/cata_imgui.cpp +++ b/src/cata_imgui.cpp @@ -1075,7 +1075,7 @@ static void inherit_base_colors() ImGuiStyle &style = ImGui::GetStyle(); style.Colors[ImGuiCol_Text] = c_white; - style.Colors[ImGuiCol_TextDisabled] = c_dark_gray; + style.Colors[ImGuiCol_TextDisabled] = c_unset; style.Colors[ImGuiCol_WindowBg] = c_black; style.Colors[ImGuiCol_ChildBg] = c_black; style.Colors[ImGuiCol_PopupBg] = c_black; @@ -1085,7 +1085,7 @@ static void inherit_base_colors() style.Colors[ImGuiCol_FrameBgHovered] = c_black; style.Colors[ImGuiCol_FrameBgActive] = c_dark_gray; style.Colors[ImGuiCol_TitleBg] = c_dark_gray; - style.Colors[ImGuiCol_TitleBgActive] = c_light_blue; + style.Colors[ImGuiCol_TitleBgActive] = c_black; style.Colors[ImGuiCol_TitleBgCollapsed] = c_dark_gray; style.Colors[ImGuiCol_MenuBarBg] = c_black; style.Colors[ImGuiCol_ScrollbarBg] = c_black; @@ -1098,7 +1098,7 @@ static void inherit_base_colors() style.Colors[ImGuiCol_Button] = c_dark_gray; style.Colors[ImGuiCol_ButtonHovered] = c_dark_gray; style.Colors[ImGuiCol_ButtonActive] = c_blue; - style.Colors[ImGuiCol_Header] = c_blue; + style.Colors[ImGuiCol_Header] = h_blue; style.Colors[ImGuiCol_HeaderHovered] = c_black; style.Colors[ImGuiCol_HeaderActive] = c_dark_gray; style.Colors[ImGuiCol_Separator] = c_dark_gray;