mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:57:35 +00:00
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.
This commit is contained in:
parent
34ccc7b4a7
commit
7cd2e739f2
3 changed files with 7 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibDraw/Color.h>
|
||||
|
||||
class Painter;
|
||||
class Rect;
|
||||
|
||||
|
@ -28,4 +30,6 @@ public:
|
|||
static void paint_surface(Painter&, const Rect&, bool paint_vertical_lines = true, bool paint_top_line = true);
|
||||
static void paint_frame(Painter&, const Rect&, FrameShape, FrameShadow, int thickness, bool skip_vertical_lines = false);
|
||||
static void paint_window_frame(Painter&, const Rect&);
|
||||
|
||||
static Color hover_highlight_color() { return Color::from_rgb(0xe6e5e2); }
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue