UI: Make default Info Editor theme more consistent with Outliner

Currently, the Info Editor default theme settings aren't consistent with other areas such as the Outliner. This change makes it fit in more by using the same default values for things like the background and selected elements.

Differential Revision: https://developer.blender.org/D6496

Reviewed by Pablo Vazquez
This commit is contained in:
William Reynish 2020-01-23 13:34:33 +01:00
parent dee01cad19
commit dc96995b03
Notes: blender-bot 2023-02-14 05:53:38 +01:00
Referenced by commit 237d03f3a3, Revert "UI: Make default Info Editor theme more consistent with Outliner"
1 changed files with 10 additions and 6 deletions

View File

@ -454,11 +454,11 @@ const bTheme U_theme_default = {
.anim_preview_range = RGBA(0xa14d0066),
},
.space_info = {
.back = RGBA(0x42424200),
.title = RGBA(0xeeeeeeff),
.text = RGBA(0xe6e6e6ff),
.back = RGBA(0x28282800),
.title = RGBA(0xffffffff),
.text = RGBA(0xc3c3c3ff),
.text_hi = RGBA(0xffffffff),
.header = RGBA(0x424242ff),
.header = RGBA(0x454545ff),
.header_text = RGBA(0xeeeeeeff),
.header_text_hi = RGBA(0xffffffff),
.tab_active = RGBA(0x4b4b4bff),
@ -477,7 +477,7 @@ const bTheme U_theme_default = {
.vertex_size = 3,
.outline_width = 1,
.facedot_size = 4,
.info_selected = RGBA(0x6080ffff),
.info_selected = RGBA(0x3b5689ff),
.info_selected_text = RGBA(0xffffffff),
.info_error = RGBA(0x990000ff),
.info_error_text = RGBA(0xffffffff),
@ -486,7 +486,11 @@ const bTheme U_theme_default = {
.info_info = RGBA(0x1d4383ff),
.info_info_text = RGBA(0xffffffff),
.info_debug = RGBA(0xd3d3d3ff),
},
.info_property = RGBA(0x32ce32ff),
.info_property_text = RGBA(0xffffffff),
.info_operator = RGBA(0x32ce32ff),
.info_operator_text = RGBA(0xffffffff),
},
.space_action = {
.back = RGBA(0x42424200),
.title = RGBA(0xeeeeeeff),