Skip to content

Commit

Permalink
Change ColorRowCode to work with Terminal (#144)
Browse files Browse the repository at this point in the history
* Change ColorRowCode to work with Terminal

* Add color change to list clusters
  • Loading branch information
Ben authored and andscoop committed Nov 13, 2018
1 parent ec634bd commit eb5413f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cluster/cluster.go
Expand Up @@ -14,7 +14,7 @@ var (
tab = printutil.Table{
Padding: []int{44},
Header: []string{"NAME"},
ColorRowCode: [2]string{"\033[33;m", "\033[0m"},
ColorRowCode: [2]string{"\033[1;32m", "\033[0m"},
}
)

Expand Down
2 changes: 1 addition & 1 deletion workspace/workspace.go
Expand Up @@ -16,7 +16,7 @@ var (
tab = printutil.Table{
Padding: []int{44, 50},
Header: []string{"NAME", "UUID"},
ColorRowCode: [2]string{"\033[33;m", "\033[0m"},
ColorRowCode: [2]string{"\033[1;32m", "\033[0m"},
}
)

Expand Down

0 comments on commit eb5413f

Please sign in to comment.