new todo, if to switch

This commit is contained in:
probandula
2016-10-27 15:10:16 +02:00
parent 5d1f6915d1
commit 3b00a8f4a2
2 changed files with 11 additions and 24 deletions

View File

@@ -101,4 +101,5 @@ Other fonts can mainly be found on [figlet](http://www.figlet.org). You have to
- [x] Cli client
- [ ] automatic the perfect char margin
- [ ] Linebreak possible?
- [x] Colors in the cli client
- [x] Colors in the cli client
- [ ] No dependencies (fatih/color)

View File

@@ -62,37 +62,23 @@ func getColorSlice(colorStr string) []color.Attribute {
colors := make([]color.Attribute, len(givenColors))
for i, c := range givenColors {
if c == "black" {
switch c {
case "black":
colors[i] = color.FgBlack
continue
}
if c == "red" {
case "red":
colors[i] = color.FgRed
continue
}
if c == "green" {
case "green":
colors[i] = color.FgGreen
continue
}
if c == "yellow" {
case "yellow":
colors[i] = color.FgYellow
continue
}
if c == "blue" {
case "blue":
colors[i] = color.FgBlue
continue
}
if c == "magenta" {
case "magenta":
colors[i] = color.FgMagenta
continue
}
if c == "cyan" {
case "cyan":
colors[i] = color.FgCyan
continue
}
if c == "white" {
case "white":
colors[i] = color.FgWhite
continue
}
}