summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZeeshan Ali <zeenix@collabora.co.uk>2018-11-28 18:06:54 +0100
committerZeeshan Ali <zeenix@collabora.co.uk>2018-11-28 18:10:06 +0100
commitd3fa67c08efeb6e906323d6f9615480fc1b9255c (patch)
tree1229711c5859b28552fbc67ef4e49b35f412ba54 /tools
parentafcae3f05b3b0be4f87d6efbb553c7607096b794 (diff)
downloadgstreamer-d3fa67c08efeb6e906323d6f9615480fc1b9255c.tar.gz
gst-inspect: Avoid use of non-bright blue color
Simple blue doesn't work on Linux console, which also happens to be a gnome-terminal theme. Use bright-blue instead.
Diffstat (limited to 'tools')
-rw-r--r--tools/gst-inspect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
index a803888a26..198250f70f 100644
--- a/tools/gst-inspect.c
+++ b/tools/gst-inspect.c
@@ -61,7 +61,7 @@ gboolean colored_output = TRUE;
/* General colors */
#define RESET_COLOR (colored_output? "\033[0m": "")
#define HEADING_COLOR (colored_output? BRYELLOW : "")
-#define PROP_NAME_COLOR (colored_output? BLUE: "")
+#define PROP_NAME_COLOR (colored_output? BRBLUE : "")
#define PROP_VALUE_COLOR (colored_output? RESET_COLOR: "")
#define PROP_ATTR_NAME_COLOR (colored_output? BRYELLOW : "")
#define PROP_ATTR_VALUE_COLOR (colored_output? CYAN: "")
@@ -74,13 +74,13 @@ gboolean colored_output = TRUE;
/* Caps colors */
#define FIELD_NAME_COLOR (colored_output? CYAN: "")
-#define FIELD_VALUE_COLOR (colored_output? BLUE : "")
+#define FIELD_VALUE_COLOR (colored_output? BRBLUE : "")
#define CAPS_TYPE_COLOR (colored_output? YELLOW : "")
#define STRUCT_NAME_COLOR (colored_output? YELLOW : "")
#define CAPS_FEATURE_COLOR (colored_output? GREEN : "")
/* Plugin listing colors */
-#define PLUGIN_NAME_COLOR (colored_output? BLUE : "")
+#define PLUGIN_NAME_COLOR (colored_output? BRBLUE : "")
#define ELEMENT_NAME_COLOR (colored_output? GREEN : "")
/* FIXME: find a good color that works on both dark & light bg. */
#define ELEMENT_DETAIL_COLOR (colored_output? RESET_COLOR : "")