From 32b8d8e68b944db88e776d3676c973be5c8d339b Mon Sep 17 00:00:00 2001 From: Sam Boyer Date: Sat, 19 Dec 2015 00:24:49 -0500 Subject: [PATCH] Add missing 'yellow' to TextBuilder 'yellow' wasn't included in the colorMap used by TextBuilder, making it impossible to specify that very handy color from within text. --- textbuilder.go | 1 + 1 file changed, 1 insertion(+) diff --git a/textbuilder.go b/textbuilder.go index 79271fd..f55b113 100644 --- a/textbuilder.go +++ b/textbuilder.go @@ -33,6 +33,7 @@ var colorMap = map[string]Attribute{ "blue": ColorBlue, "black": ColorBlack, "cyan": ColorCyan, + "yellow": ColorYellow, "white": ColorWhite, "default": ColorDefault, "green": ColorGreen,