From d4d1cab895cba54f71eceee18e0bdef682700f19 Mon Sep 17 00:00:00 2001 From: implicitfield <114500360+implicitfield@users.noreply.github.com> Date: Sun, 12 Feb 2023 15:49:05 +0200 Subject: [PATCH] ThemeEditor: Support more color scheme-related roles --- Userland/Applications/ThemeEditor/MainWidget.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Userland/Applications/ThemeEditor/MainWidget.cpp b/Userland/Applications/ThemeEditor/MainWidget.cpp index 17ef0bdc07..acebf07cdd 100644 --- a/Userland/Applications/ThemeEditor/MainWidget.cpp +++ b/Userland/Applications/ThemeEditor/MainWidget.cpp @@ -188,12 +188,15 @@ static const PropertyTab color_scheme_tab { "Color Scheme", { { "General", - { { Gfx::ColorRole::Black }, + { { Gfx::FlagRole::BoldTextAsBright }, + { Gfx::ColorRole::Black }, { Gfx::ColorRole::Red }, { Gfx::ColorRole::Green }, { Gfx::ColorRole::Yellow }, { Gfx::ColorRole::Blue }, { Gfx::ColorRole::Magenta }, + { Gfx::ColorRole::ColorSchemeBackground }, + { Gfx::ColorRole::ColorSchemeForeground }, { Gfx::ColorRole::Cyan }, { Gfx::ColorRole::White }, { Gfx::ColorRole::BrightBlack },