Skip to content

Commit

Permalink
Match ImGui inherit_base_colors
Browse files Browse the repository at this point in the history
  • Loading branch information
alef authored Dec 23, 2024
1 parent fdeeb8d commit fb89863
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cata_imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit fb89863

Please sign in to comment.