diff --git a/src/main/kotlin/com/beust/kobalt/AsciiArt.kt b/src/main/kotlin/com/beust/kobalt/AsciiArt.kt index 6cf5d5d9..eab429a3 100644 --- a/src/main/kotlin/com/beust/kobalt/AsciiArt.kt +++ b/src/main/kotlin/com/beust/kobalt/AsciiArt.kt @@ -85,11 +85,12 @@ class AsciiArt { const val WHITE = "\u001B[37m" private fun wrap(s: String, color: String) = color + s + RESET + private fun blue(s: String) = wrap(s, BLUE/) private fun red(s: String) = wrap(s, RED) private fun yellow(s: String) = wrap(s, YELLOW) - fun taskColor(s: String) = yellow(s) - fun errorColor(s: String) = red(s) + fun taskColor(s: String) = s + fun errorColor(s: String) = s } }