mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:17:35 +00:00
LibGfx: Add colors for highlight-searching to palette and themes
This commit is contained in:
parent
f239fbaa58
commit
a823d2a962
15 changed files with 30 additions and 0 deletions
|
@ -90,6 +90,8 @@ public:
|
|||
Color highlight_window_title() const { return color(ColorRole::HighlightWindowTitle); }
|
||||
Color highlight_window_title_stripes() const { return color(ColorRole::HighlightWindowTitleStripes); }
|
||||
Color highlight_window_title_shadow() const { return color(ColorRole::HighlightWindowTitleShadow); }
|
||||
Color highlight_searching() const { return color(ColorRole::HighlightSearching); }
|
||||
Color highlight_searching_text() const { return color(ColorRole::HighlightSearchingText); }
|
||||
Color menu_stripe() const { return color(ColorRole::MenuStripe); }
|
||||
Color menu_base() const { return color(ColorRole::MenuBase); }
|
||||
Color menu_base_text() const { return color(ColorRole::MenuBaseText); }
|
||||
|
|
|
@ -51,6 +51,8 @@ namespace Gfx {
|
|||
C(HighlightWindowTitle) \
|
||||
C(HighlightWindowTitleShadow) \
|
||||
C(HighlightWindowTitleStripes) \
|
||||
C(HighlightSearching) \
|
||||
C(HighlightSearchingText) \
|
||||
C(HoverHighlight) \
|
||||
C(InactiveSelection) \
|
||||
C(InactiveSelectionText) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue