Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. ImVec4* Colors = ImGui::GetStyle().Colors;
  2.  
  3. Colors[ImGuiCol_Text] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f);
  4. Colors[ImGuiCol_TextDisabled] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f);
  5. Colors[ImGuiCol_WindowBg] = ImVec4(0.86f, 0.86f, 0.86f, 1.00f);
  6. Colors[ImGuiCol_ChildWindowBg] = ImVec4(0.86f, 0.86f, 0.86f, 1.00f);
  7. Colors[ImGuiCol_PopupBg] = ImVec4(0.70f, 0.70f, 0.70f, 1.00f);
  8. Colors[ImGuiCol_Border] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  9. Colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f);
  10. Colors[ImGuiCol_FrameBg] = ImVec4(0.70f, 0.70f, 0.70f, 1.00f);
  11. Colors[ImGuiCol_FrameBgHovered] = ImVec4(1.00f, 0.67f, 0.00f, 0.40f);
  12. Colors[ImGuiCol_FrameBgActive] = ImVec4(1.00f, 0.67f, 0.00f, 0.40f);
  13. Colors[ImGuiCol_TitleBg] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  14. Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  15. Colors[ImGuiCol_TitleBgActive] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  16. Colors[ImGuiCol_MenuBarBg] = ImVec4(0.09f, 0.12f, 0.21f, 1.00f);
  17. Colors[ImGuiCol_ScrollbarBg] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  18. Colors[ImGuiCol_ScrollbarGrab] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  19. Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  20. Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  21. Colors[ImGuiCol_ComboBg] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  22. Colors[ImGuiCol_CheckMark] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  23. Colors[ImGuiCol_SliderGrab] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  24. Colors[ImGuiCol_SliderGrabActive] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  25. Colors[ImGuiCol_Button] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  26. Colors[ImGuiCol_ButtonHovered] = ImVec4(1.00f, 0.67f, 0.00f, 0.74f);
  27. Colors[ImGuiCol_ButtonActive] = ImVec4(1.00f, 0.67f, 0.00f, 0.84f);
  28. Colors[ImGuiCol_Header] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  29. Colors[ImGuiCol_HeaderHovered] = ImVec4(1.00f, 0.67f, 0.00f, 0.74f);
  30. Colors[ImGuiCol_HeaderActive] = ImVec4(1.00f, 0.67f, 0.00f, 0.84f);
  31. Colors[ImGuiCol_Column] = ImVec4(1.00f, 0.67f, 0.00f, 0.84f);
  32. Colors[ImGuiCol_ColumnHovered] = ImVec4(1.00f, 0.67f, 0.00f, 0.84f);
  33. Colors[ImGuiCol_ColumnActive] = ImVec4(1.00f, 0.67f, 0.00f, 0.84f);
  34. Colors[ImGuiCol_ResizeGrip] = ImVec4(0.86f, 0.86f, 0.86f, 0.00f);
  35. Colors[ImGuiCol_ResizeGripHovered] = ImVec4(1.00f, 0.67f, 0.00f, 0.84f);
  36. Colors[ImGuiCol_ResizeGripActive] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  37. Colors[ImGuiCol_CloseButton] = ImVec4(0.70f, 0.70f, 0.70f, 1.00f);
  38. Colors[ImGuiCol_CloseButtonHovered] = ImVec4(1.00f, 0.67f, 0.00f, 0.70f);
  39. Colors[ImGuiCol_CloseButtonActive] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
  40. Colors[ImGuiCol_PlotLines] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f);
  41. Colors[ImGuiCol_PlotLinesHovered] = ImVec4(0.13f, 0.91f, 0.71f, 0.84f);
  42. Colors[ImGuiCol_PlotHistogram] = ImVec4(0.20f, 0.72f, 1.00f, 0.70f);
  43. Colors[ImGuiCol_PlotHistogramHovered] = ImVec4(0.13f, 0.91f, 0.71f, 0.84f);
  44. Colors[ImGuiCol_TextSelectedBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.50f);
  45. Colors[ImGuiCol_ModalWindowDarkening] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement