From 925cd40460eccaf76fa2b97512bdf604648028ea Mon Sep 17 00:00:00 2001 From: William Reynish Date: Wed, 29 Jan 2020 14:22:25 +0100 Subject: [PATCH] UI: Theme tweak to selected animation channels We have the problem that it's very hard to see which animation channels are selected. This is a very small tweak to make it more obvious, using the same text highlight color as the Outliner. Really it should be overhauled to be more exactly like the Outliner, but this is just a quick fix to make it reasonably visible. Differential Revision: https://developer.blender.org/D6708 Reviewed by Julian Eisel --- release/datafiles/userdef/userdef_default_theme.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release/datafiles/userdef/userdef_default_theme.c b/release/datafiles/userdef/userdef_default_theme.c index 0e377fee0b6..ce22dceb397 100644 --- a/release/datafiles/userdef/userdef_default_theme.c +++ b/release/datafiles/userdef/userdef_default_theme.c @@ -420,7 +420,7 @@ const bTheme U_theme_default = { .list = RGBA(0x282828ff), .list_title = RGBA(0xffffffff), .list_text = RGBA(0xb8b8b8ff), - .list_text_hi = RGBA(0xffffffff), + .list_text_hi = RGBA(0xffaf29ff), .panelcolors = { .header = RGBA(0x424242cc), .back = RGBA(0x333333b3), @@ -506,7 +506,7 @@ const bTheme U_theme_default = { .list = RGBA(0x282828ff), .list_title = RGBA(0xffffffff), .list_text = RGBA(0xb8b8b8ff), - .list_text_hi = RGBA(0xffffffff), + .list_text_hi = RGBA(0xffaf29ff), .panelcolors = { .header = RGBA(0x424242cc), .back = RGBA(0x333333b3), @@ -564,7 +564,7 @@ const bTheme U_theme_default = { .list = RGBA(0x282828ff), .list_title = RGBA(0xffffffff), .list_text = RGBA(0xb8b8b8ff), - .list_text_hi = RGBA(0xffffffff), + .list_text_hi = RGBA(0xffaf29ff), .panelcolors = { .header = RGBA(0x424242cc), .back = RGBA(0x333333b3),