perf ui browser: Honour the xterm colors

So slang after all _has_ a 'default' color, call me color blind. Change
the default to it.

Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
Link: http://lkml.kernel.org/n/tip-1dfxivxv0jhwldpds3v4zla2@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 33f62b3f
...@@ -439,19 +439,19 @@ static struct ui_browser__colorset { ...@@ -439,19 +439,19 @@ static struct ui_browser__colorset {
.colorset = HE_COLORSET_TOP, .colorset = HE_COLORSET_TOP,
.name = "top", .name = "top",
.fg = "red", .fg = "red",
.bg = "black", .bg = "default",
}, },
{ {
.colorset = HE_COLORSET_MEDIUM, .colorset = HE_COLORSET_MEDIUM,
.name = "medium", .name = "medium",
.fg = "green", .fg = "green",
.bg = "black", .bg = "default",
}, },
{ {
.colorset = HE_COLORSET_NORMAL, .colorset = HE_COLORSET_NORMAL,
.name = "normal", .name = "normal",
.fg = "brightgreen", .fg = "default",
.bg = "black", .bg = "default",
}, },
{ {
.colorset = HE_COLORSET_SELECTED, .colorset = HE_COLORSET_SELECTED,
...@@ -463,7 +463,7 @@ static struct ui_browser__colorset { ...@@ -463,7 +463,7 @@ static struct ui_browser__colorset {
.colorset = HE_COLORSET_CODE, .colorset = HE_COLORSET_CODE,
.name = "code", .name = "code",
.fg = "blue", .fg = "blue",
.bg = "black", .bg = "default",
}, },
{ {
.name = NULL, .name = NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment