ImGuiColorEditFlags_RGB=1<<0,// ColorEdit: Default to one among RGB/HSV/HEX. User can still use the options menu to change. ColorPicker: Choose any combination or RGB/HSV/HEX.
ImGuiColorEditFlags_HSV=1<<1,// "
ImGuiColorEditFlags_HEX=1<<2,// "
ImGuiColorEditFlags_Float=1<<3,// ColorEdit, ColorPicker: display values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.
ImGuiColorEditFlags_Float=1<<3,// ColorEdit, ColorPicker, ColorButton: display values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers.
ImGuiColorEditFlags_AlphaBar=1<<4,// ColorPicker: Show vertical alpha bar/gradient.
ImGuiColorEditFlags_NoAlphaPreview=1<<6,// ColorEdit, ColorPicker, ColorButton: do not display transparent colors over a checkerboard, always display the preview as opaque.
ImGuiColorEditFlags_NoPicker=1<<7,// ColorEdit: disable picker when clicking on colored square.
ImGuiColorEditFlags_NoOptions=1<<8,// ColorEdit: disable toggling options menu when right-clicking on colored square.
ImGui::SameLine();ShowHelpMarker("Click on the colored square to open a color picker.\nRight-click on the colored square to show options.\nCTRL+click on individual component to input value.\n");
ImGui::SameLine();ShowHelpMarker("With the ImGuiColorEditFlags_NoInputs flag you can hide all the slider/text inputs.\nWith the ImGuiColorEditFlags_NoLabel flag you can pass a non-empty label which will only be used for the tooltip and picker popup.");