From 6ad9918feb5b56a09dbc7a268fa629f2f0530f33 Mon Sep 17 00:00:00 2001
From: Leon Styhre <leon@leonstyhre.com>
Date: Thu, 13 Jul 2023 17:29:57 +0200
Subject: [PATCH] Changed the menu color scheme setting to 'dark' as the
 primary menu entry

---
 es-app/src/guis/GuiMenu.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/es-app/src/guis/GuiMenu.cpp b/es-app/src/guis/GuiMenu.cpp
index 98aea7b2d..de9bc1f31 100644
--- a/es-app/src/guis/GuiMenu.cpp
+++ b/es-app/src/guis/GuiMenu.cpp
@@ -570,10 +570,10 @@ void GuiMenu::openUIOptions()
     auto menuColorScheme = std::make_shared<OptionListComponent<std::string>>(
         getHelpStyle(), "MENU COLOR SCHEME", false);
     const std::string selectedMenuColor {Settings::getInstance()->getString("MenuColorScheme")};
-    menuColorScheme->add("LIGHT", "light", selectedMenuColor == "light");
     menuColorScheme->add("DARK", "dark", selectedMenuColor == "dark");
+    menuColorScheme->add("LIGHT", "light", selectedMenuColor == "light");
     // If there are no objects returned, then there must be a manually modified entry in the
-    // configuration file. Simply set the menu color scheme to "light" in this case.
+    // configuration file. Simply set the menu color scheme to "dark" in this case.
     if (menuColorScheme->getSelectedObjects().size() == 0)
         menuColorScheme->selectEntry(0);
     s->addWithLabel("MENU COLOR SCHEME", menuColorScheme);