Fix incorrect hue at initial installation

This commit is contained in:
Zachary Hall 2024-01-21 15:22:27 -08:00
parent ad7f2ae105
commit e198c2959d

View file

@ -26,7 +26,7 @@ class RendererBackend {
ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f);
ImFont *title;
const char *prefPath;
ImVec4 accent_color = ImVec4(280.0, 1.0, 1.0, 1.0);
ImVec4 accent_color = ImVec4(0.75, 1.0, 1.0, 1.0);
int Run();
void SetWindowTitle(const char *title);
virtual void Init();