From 3f9d6de3635c130c716dc0eae9ef9891b949b57e Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Tue, 13 Oct 2020 04:03:32 +0200 Subject: [PATCH] editor: update the icon highlight color [ci skip] --- editor/src/editor/Editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/src/editor/Editor.cpp b/editor/src/editor/Editor.cpp index 37bee6a6..142d5dcc 100644 --- a/editor/src/editor/Editor.cpp +++ b/editor/src/editor/Editor.cpp @@ -343,7 +343,7 @@ void Editor::Impl::createFrameContents() lightTheme.titleBoxText = { 0xff, 0xff, 0xff }; lightTheme.titleBoxBackground = { 0x2e, 0x34, 0x36 }; lightTheme.icon = lightTheme.text; - lightTheme.iconHighlight = { 0xa8, 0x62, 0x34 }; + lightTheme.iconHighlight = { 0xfd, 0x98, 0x00 }; lightTheme.valueText = { 0xff, 0xff, 0xff }; lightTheme.valueBackground = { 0x2e, 0x34, 0x36 }; lightTheme.knobActiveTrackColor = { 0x00, 0xb6, 0x2a }; @@ -355,7 +355,7 @@ void Editor::Impl::createFrameContents() darkTheme.titleBoxText = { 0x00, 0x00, 0x00 }; darkTheme.titleBoxBackground = { 0xba, 0xbd, 0xb6 }; darkTheme.icon = darkTheme.text; - darkTheme.iconHighlight = { 0xa8, 0x62, 0x34 }; + darkTheme.iconHighlight = { 0xfd, 0x98, 0x00 }; darkTheme.valueText = { 0x2e, 0x34, 0x36 }; darkTheme.valueBackground = { 0xff, 0xff, 0xff }; darkTheme.knobActiveTrackColor = { 0x00, 0xb6, 0x2a };