diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-10 19:57:44 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-10 19:57:44 +0100 |
| commit | 6166eeda08fd1d4106afe47416a73de60700d17e (patch) | |
| tree | 11d37481839b7fa7a0ffe31ab010620245bd717b /src/main_linux.cpp | |
| parent | 0821197bc1c57c756e737740d6a6de9c83314fae (diff) | |
new look
Diffstat (limited to 'src/main_linux.cpp')
| -rw-r--r-- | src/main_linux.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main_linux.cpp b/src/main_linux.cpp index 5c36209..b317ab1 100644 --- a/src/main_linux.cpp +++ b/src/main_linux.cpp @@ -83,7 +83,7 @@ static void _create_window(bool is_setup_window) io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls // Setup Dear ImGui style - ImGui::StyleColorsDark(); + ImGui::StyleCustom(); //ImGui::StyleColorsLight(); // Setup scaling @@ -96,7 +96,7 @@ static void _create_window(bool is_setup_window) ImGui_ImplOpenGL2_Init(); io.Fonts->Clear(); - style.FontSizeBase = 18.0f; + style.FontSizeBase = 16.0f; float iconFontSize = 10.0f; static ImWchar icon_range[] = { ICON_MIN_FA, ICON_MAX_FA, 0 }; @@ -138,7 +138,7 @@ int main(int argc, char** argv) } - ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f); + ImVec4 clear_color = ImVec4(210 / 255.0f, 210 / 255.0f, 210 / 255.0f, 255 / 255.0f); timer_lib_initialize(); administration_writer::create(); |
