aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <[email protected]>2011-10-19 00:30:32 -0200
committerArnaldo Carvalho de Melo <[email protected]>2011-10-19 00:30:32 -0200
commit82e0af8710ceed57a2233b9652a3878b103084d8 (patch)
tree6c93e7ee515e40ef8da344e2bd8b224b49df269a
parent33f62b3fc4edd46d80c4420b81dfcb267c8bdb5e (diff)
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 <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Mike Galbraith <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Stephane Eranian <[email protected]> Cc: Tom Zanussi <[email protected]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r--tools/perf/util/ui/browser.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/util/ui/browser.c b/tools/perf/util/ui/browser.c
index 976b957f87c3..06fc9ebd8d3f 100644
--- a/tools/perf/util/ui/browser.c
+++ b/tools/perf/util/ui/browser.c
@@ -439,19 +439,19 @@ static struct ui_browser__colorset {
.colorset = HE_COLORSET_TOP,
.name = "top",
.fg = "red",
- .bg = "black",
+ .bg = "default",
},
{
.colorset = HE_COLORSET_MEDIUM,
.name = "medium",
.fg = "green",
- .bg = "black",
+ .bg = "default",
},
{
.colorset = HE_COLORSET_NORMAL,
.name = "normal",
- .fg = "brightgreen",
- .bg = "black",
+ .fg = "default",
+ .bg = "default",
},
{
.colorset = HE_COLORSET_SELECTED,
@@ -463,7 +463,7 @@ static struct ui_browser__colorset {
.colorset = HE_COLORSET_CODE,
.name = "code",
.fg = "blue",
- .bg = "black",
+ .bg = "default",
},
{
.name = NULL,