Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ImGuiStyle& style = ImGui::GetStyle();
  2. style.Colors[ImGuiCol_WindowBg] = ImVec4(0.08f, 0.00f, 0.00f, 1.00f);
  3. style.Colors[ImGuiCol_TitleBg] = ImVec4(0.69f, 0.12f, 0.12f, 0.45f);
  4. style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.69f, 0.12f, 0.12f, 0.20f);
  5. style.Colors[ImGuiCol_TitleBgActive] = ImVec4(0.78f, 0.12f, 0.12f, 0.55f);
  6. style.Colors[ImGuiCol_MenuBarBg] = ImVec4(0.69f, 0.12f, 0.12f, 0.80f);
  7. style.Colors[ImGuiCol_ScrollbarBg] = ImVec4(0.69f, 0.12f, 0.12f, 0.15f);
  8. style.Colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.69f, 0.12f, 0.12f, 0.30f);
  9. style.Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(1.00f, 0.12f, 0.00f, 0.40f);
  10. style.Colors[ImGuiCol_CloseButton] = ImVec4(0.67f, 0.12f, 0.12f, 0.20f);
  11. style.Colors[ImGuiCol_CloseButtonHovered] = ImVec4(1.00f, 0.12f, 0.12f, 1.00f);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement