diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-04 11:51:42 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-04 11:53:26 +0100 |
commit | 7fe600f2509f3fde59548de9e87d12539f176547 (patch) | |
tree | ffebf3e2e63fe8da2d1a365502f73d004c03a071 /LibGUI/GWidget.cpp | |
parent | 6f787f687708323e23bddc08bd892ad05892fafa (diff) | |
download | serenity-7fe600f2509f3fde59548de9e87d12539f176547.zip |
LibGUI: Use LightGray as the base UI color.
This feels nicely reminiscent of the gap in time between Win3.11 and Win95,
one of my favorite eras in UI look-and-feel.
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 2a4c2d419a..1c5d75c7af 100644 --- a/LibGUI/GWidget.cpp +++ b/LibGUI/GWidget.cpp @@ -10,7 +10,7 @@ GWidget::GWidget(GWidget* parent) : GObject(parent) { set_font(nullptr); - m_background_color = Color::White; + m_background_color = Color::LightGray; m_foreground_color = Color::Black; } |