[Bf-blender-cvs] [925cd40460e] master: UI: Theme tweak to selected animation channels

William Reynish noreply at git.blender.org
Wed Jan 29 14:22:31 CET 2020


Commit: 925cd40460eccaf76fa2b97512bdf604648028ea
Author: William Reynish
Date:   Wed Jan 29 14:22:25 2020 +0100
Branches: master
https://developer.blender.org/rB925cd40460eccaf76fa2b97512bdf604648028ea

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

===================================================================

M	release/datafiles/userdef/userdef_default_theme.c

===================================================================

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),



More information about the Bf-blender-cvs mailing list