diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-30 09:23:16 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-30 09:23:16 +0200 |
commit | 315716d19325710223d5c9e9e7041a2cfa04fd49 (patch) | |
tree | e8a8e3451a2d5e11f5d6b6c8533ee4829cc8e57d /LibGUI/GWidget.cpp | |
parent | 73d0e7cd8fd6c21147cf6fe6ca80859137411245 (diff) | |
download | serenity-315716d19325710223d5c9e9e7041a2cfa04fd49.zip |
GUI: Use Win2K-like "warm gray" color instead of the older colder gray.
Someone suggested this a long time ago and I never got around to it.
So here we go, here's the warm gray! I have to admit I like it better. :^)
Diffstat (limited to 'LibGUI/GWidget.cpp')
-rw-r--r-- | LibGUI/GWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GWidget.cpp b/LibGUI/GWidget.cpp index 814cda4c86..4fc1bdb07b 100644 --- a/LibGUI/GWidget.cpp +++ b/LibGUI/GWidget.cpp @@ -15,7 +15,7 @@ GWidget::GWidget(GWidget* parent) : CObject(parent, true) { set_font(nullptr); - m_background_color = Color::LightGray; + m_background_color = Color::WarmGray; m_foreground_color = Color::Black; } |