local test = imgui.ImBool(false)
if imgui.Button(u8"Стиль Хелпера", imgui.ImVec2(95,25)) then
test.v = not test.v
end
if test.v then
imgui.SameLine()
imgui.BeginChild("ChildWindow", imgui.ImVec2(775, 525), true)
for i, value in ipairs(themes.colorThemes) do
if imgui.RadioButton(value, checked_radio, i) then
themes.SwitchColorTheme(i)
end
end
imgui.EndChild()
end