You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
610 B
20 lines
610 B
--- src/github.com/rliebz/tusk/ui/command.go |
|
+++ src/github.com/rliebz/tusk/ui/command.go |
|
@@ -27,7 +27,7 @@ func (l Logger) PrintCommand(command string, namespaces ...string) { |
|
} |
|
|
|
for i, ns := range namespaces { |
|
- namespaces[i] = green(ns) |
|
+ namespaces[i] = blue(ns) |
|
} |
|
|
|
s := strings.Join(namespaces, bold(blue(namespaceSeparator))) |
|
@@ -42,7 +42,7 @@ func (l Logger) PrintCommandWithParenthetical(command, parenthetical string, nam |
|
} |
|
|
|
for i, ns := range namespaces { |
|
- namespaces[i] = green(ns) |
|
+ namespaces[i] = blue(ns) |
|
} |
|
|
|
s := strings.Join(namespaces, bold(blue(namespaceSeparator)))
|
|
|