diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-27 11:15:20 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-27 11:16:10 +0200 |
commit | 7cd2e739f23856223abf91304e0a35294161d67f (patch) | |
tree | a23e2103676d4ada7ec5c7e5be6f8aafcb1c7491 /Libraries/LibGUI | |
parent | 34ccc7b4a7a503999a225d547210abba5740b485 (diff) | |
download | serenity-7cd2e739f23856223abf91304e0a35294161d67f.zip |
LibDraw: Tweak the hover highlight color.
It was a tad too bright. Also make sure we're using the same color in
all the different places. At some point it would be nice to improve global
color settings, etc.
Diffstat (limited to 'Libraries/LibGUI')
-rw-r--r-- | Libraries/LibGUI/GSplitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/GSplitter.cpp b/Libraries/LibGUI/GSplitter.cpp index 6350f22f08..27273a2cce 100644 --- a/Libraries/LibGUI/GSplitter.cpp +++ b/Libraries/LibGUI/GSplitter.cpp @@ -18,7 +18,7 @@ GSplitter::~GSplitter() void GSplitter::enter_event(CEvent&) { - set_background_color(Color::from_rgb(0xd6d2ce)); + set_background_color(StylePainter::hover_highlight_color()); window()->set_override_cursor(m_orientation == Orientation::Horizontal ? GStandardCursor::ResizeHorizontal : GStandardCursor::ResizeVertical); update(); } |