From e981c13a4f32e31a4743db7c167ecc48676b39ee Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 28 Aug 2023 15:28:35 -0400 Subject: [PATCH] Ladybird: Use the correct theme file for the current AppKit theme --- Ladybird/AppKit/UI/Palette.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ladybird/AppKit/UI/Palette.mm b/Ladybird/AppKit/UI/Palette.mm index 84864e78c9..55ff905745 100644 --- a/Ladybird/AppKit/UI/Palette.mm +++ b/Ladybird/AppKit/UI/Palette.mm @@ -30,7 +30,7 @@ Core::AnonymousBuffer create_system_palette() { auto is_dark = is_using_dark_system_theme(); - auto theme_file = is_dark ? "Default"sv : "Dark"sv; + auto theme_file = is_dark ? "Dark"sv : "Default"sv; auto theme_path = DeprecatedString::formatted("{}/res/themes/{}.ini", s_serenity_resource_root, theme_file); auto theme = MUST(Gfx::load_system_theme(theme_path));