void CGui::RedSheme()
{
ImGuiStyle& style = ImGui::GetStyle();
style.Colors[ImGuiCol_Text] = ImVec4( 0.86f , 0.93f , 0.89f , 0.78f );
style.Colors[ImGuiCol_TextDisabled] = ImVec4( 0.92f , 0.18f , 0.29f , 0.78f );
style.Colors[ImGuiCol_WindowBg] = ImVec4(0.15f, 0.15f, 0.15f, 1.00f);
style.Colors[ImGuiCol_ChildWindowBg] = ImVec4( 0.20f , 0.22f , 0.27f , 0.58f );
style.Colors[ImGuiCol_PopupBg] = ImVec4( 0.20f , 0.22f , 0.27f , 1.00f );
style.Colors[ImGuiCol_Border] = ImVec4(1.00f, 0.42f, 0.26f, 1.00f);
style.Colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f);
style.Colors[ImGuiCol_FrameBg] = ImVec4(0.22f, 0.24f, 0.27f, 1.00f);
style.Colors[ImGuiCol_FrameBgHovered] = ImVec4(0.80f, 0.80f, 0.80f, 0.58f);
style.Colors[ImGuiCol_FrameBgActive] = ImVec4(0.53f, 0.53f, 0.53f, 0.34f);
style.Colors[ImGuiCol_TitleBg] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_TitleBgActive] = ImVec4(1.00f, 0.67f, 0.00f, 1.00f);
style.Colors[ImGuiCol_MenuBarBg] = ImVec4( 0.20f , 0.22f , 0.27f , 0.47f );
style.Colors[ImGuiCol_ScrollbarBg] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_ScrollbarGrab] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(1.00f, 0.68f, 0.00f, 0.89f);
style.Colors[ImGuiCol_ComboBg] = ImVec4( 0.20f , 0.22f , 0.27f , 1.00f );
style.Colors[ImGuiCol_CheckMark] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_SliderGrab] = ImVec4( 0.92f , 0.18f , 0.29f , 0.37f );
style.Colors[ImGuiCol_SliderGrabActive] = ImVec4( 0.92f , 0.18f , 0.29f , 1.00f );
style.Colors[ImGuiCol_Button] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_ButtonHovered] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_ButtonActive] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_Header] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_HeaderHovered] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_HeaderActive] = ImVec4(1.00f, 0.68f, 0.00f, 1.00f);
style.Colors[ImGuiCol_Column] = ImVec4( 0.15f , 0.00f , 0.00f , 0.35f );
style.Colors[ImGuiCol_ColumnHovered] = ImVec4( 0.92f , 0.18f , 0.29f , 0.59f );
style.Colors[ImGuiCol_ColumnActive] = ImVec4( 0.92f , 0.18f , 0.29f , 1.00f );
style.Colors[ImGuiCol_ResizeGrip] = ImVec4(0.15f, 0.15f, 0.15f, 1.00f);
style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.15f, 0.15f, 0.15f, 1.00f);
style.Colors[ImGuiCol_ResizeGripActive] = ImVec4(0.15f, 0.15f, 0.15f, 1.00f);
style.Colors[ImGuiCol_CloseButton] = ImVec4( 1.00f , 1.00f , 1.00f , 0.00f );
style.Colors[ImGuiCol_CloseButtonHovered] = ImVec4( 1.00f , 1.00f , 1.00f , 0.00f );
style.Colors[ImGuiCol_CloseButtonActive] = ImVec4( 1.00f , 1.00f , 1.00f , 0.00f );
style.Colors[ImGuiCol_PlotLines] = ImVec4( 0.86f , 0.93f , 0.89f , 0.63f );
style.Colors[ImGuiCol_PlotLinesHovered] = ImVec4( 0.92f , 0.18f , 0.29f , 1.00f );
style.Colors[ImGuiCol_PlotHistogram] = ImVec4( 0.86f , 0.93f , 0.89f , 0.63f );
style.Colors[ImGuiCol_PlotHistogramHovered] = ImVec4( 0.92f , 0.18f , 0.29f , 1.00f );
style.Colors[ImGuiCol_TextSelectedBg] = ImVec4( 0.92f , 0.18f , 0.29f , 0.43f );
style.Colors[ImGuiCol_ModalWindowDarkening] = ImVec4( 0.20f , 0.22f , 0.27f , 0.73f );
}