summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorimplicitfield <114500360+implicitfield@users.noreply.github.com>2023-02-12 15:49:05 +0200
committerAndreas Kling <kling@serenityos.org>2023-03-10 22:03:49 +0100
commitd4d1cab895cba54f71eceee18e0bdef682700f19 (patch)
tree51175a055103b9f90e58cb825d7aa0a7bcc26752
parente9e4baee777c82db2191af0a016411f46aa4b71c (diff)
downloadserenity-d4d1cab895cba54f71eceee18e0bdef682700f19.zip
ThemeEditor: Support more color scheme-related roles
-rw-r--r--Userland/Applications/ThemeEditor/MainWidget.cpp5
1 files changed, 4 insertions, 1 deletions
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 },