UI: Default theme, more tweaks

Also make the selected list items not as bright, boxes darker and
adjustments for contrast and accessibility.
This commit is contained in:
Pablo Vazquez 2018-07-03 16:43:00 +02:00
parent 4632e4fde4
commit f14680b1be

@ -20,7 +20,7 @@ const bTheme U_theme_default = {
.name = "Default",
.tui = {
.wcol_regular = {
.outline = RGBA(0x444444ff),
.outline = RGBA(0x373737ff),
.inner = RGBA(0x585858ff),
.inner_sel = RGBA(0x5680c2e6),
.item = RGBA(0x3e3e3eff),
@ -30,7 +30,7 @@ const bTheme U_theme_default = {
.roundness = 0.2f,
},
.wcol_tool = {
.outline = RGBA(0x444444ff),
.outline = RGBA(0x373737ff),
.inner = RGBA(0x585858ff),
.inner_sel = RGBA(0x5680c2ff),
.item = RGBA(0xffffffff),
@ -40,7 +40,7 @@ const bTheme U_theme_default = {
.roundness = 0.2f,
},
.wcol_toolbar_item = {
.outline = RGBA(0x444444ff),
.outline = RGBA(0x373737ff),
.inner = RGBA(0x585858ff),
.inner_sel = RGBA(0x5680c2ff),
.item = RGBA(0xffffff8f),
@ -50,7 +50,7 @@ const bTheme U_theme_default = {
},
.wcol_text = {
.outline = RGBA(0x444444ff),
.inner = RGBA(0x2c2c2cff),
.inner = RGBA(0x1f1f1fff),
.inner_sel = RGBA(0x808080ff),
.item = RGBA(0x333333ff),
.text = RGBA(0xeeeeeeff),
@ -60,7 +60,7 @@ const bTheme U_theme_default = {
.roundness = 0.1f,
},
.wcol_radio = {
.outline = RGBA(0x444444ff),
.outline = RGBA(0x373737ff),
.inner = RGBA(0x595959ff),
.inner_sel = RGBA(0x5680c2e6),
.item = RGBA(0xffffffff),
@ -71,7 +71,7 @@ const bTheme U_theme_default = {
.roundness = 0.2f,
},
.wcol_option = {
.outline = RGBA(0x444444ff),
.outline = RGBA(0x373737ff),
.inner = RGBA(0x666666ff),
.inner_sel = RGBA(0x5680c2e6),
.item = RGBA(0xffffffff),
@ -81,7 +81,7 @@ const bTheme U_theme_default = {
.roundness = 0.25f,
},
.wcol_toggle = {
.outline = RGBA(0x4d4d4dff),
.outline = RGBA(0x373737ff),
.inner = RGBA(0x595959ff),
.inner_sel = RGBA(0x5680c2e6),
.item = RGBA(0x191919ff),
@ -101,8 +101,8 @@ const bTheme U_theme_default = {
},
.wcol_numslider = {
.outline = RGBA(0x444444ff),
.inner = RGBA(0x3b3b3bff),
.inner_sel = RGBA(0x808080ff),
.inner = RGBA(0x2c2c2cff),
.inner_sel = RGBA(0x1f1f1fff),
.item = RGBA(0x585858ff),
.text = RGBA(0xeeeeeeff),
.text_sel = RGBA(0xffffffff),
@ -121,11 +121,11 @@ const bTheme U_theme_default = {
},
.wcol_menu = {
.outline = RGBA(0x444444ff),
.inner = RGBA(0x2e2e2eff),
.inner_sel = RGBA(0x585858ff),
.inner = RGBA(0x2c2c2cff),
.inner_sel = RGBA(0x696e76ff),
.item = RGBA(0xe6e6e6ff),
.text = RGBA(0xeeeeeeff),
.text_sel = RGBA(0xccccccff),
.text_sel = RGBA(0xffffffff),
.shadetop = 10,
.shadedown = -10,
.roundness = 0.2f,
@ -172,9 +172,9 @@ const bTheme U_theme_default = {
.roundness = 0.4f,
},
.wcol_box = {
.outline = RGBA(0x333333ff),
.inner = RGBA(0x4d4d4dcc),
.inner_sel = RGBA(0x808080ff),
.outline = RGBA(0x444444ff),
.inner = RGBA(0x00000033),
.inner_sel = RGBA(0x696e76ff),
.item = RGBA(0x191919ff),
.text = RGBA(0xeeeeeeff),
.text_sel = RGBA(0xffffffff),
@ -203,9 +203,9 @@ const bTheme U_theme_default = {
.wcol_list_item = {
.outline = RGBA(0x2d2d2dff),
.inner = RGBA(0x2d2d2d00),
.inner_sel = RGBA(0x5680c2ff),
.inner_sel = RGBA(0x696e76ff),
.item = RGBA(0xb3b3b3ff),
.text = RGBA(0xeeeeeeff),
.text = RGBA(0xe1e1e1ff),
.text_sel = RGBA(0xffffffff),
.roundness = 0.2f,
},
@ -264,8 +264,8 @@ const bTheme U_theme_default = {
.button_text_hi = RGBA(0xffffffff),
.panelcolors = {
.header = RGBA(0x42424200),
.back = RGBA(0x333333b3),
.sub_back = RGBA(0x0000003e),
.back = RGBA(0x00000028),
.sub_back = RGBA(0x00000024),
.show_header = 1,
.show_back = 1,
},