Got text working.

This commit is contained in:
Unknown
2018-03-29 14:30:42 -04:00
parent ff38043a10
commit 669d1182f4
9 changed files with 87 additions and 71 deletions

View File

@@ -4,11 +4,6 @@ import (
"encoding/hex"
)
var Colors map[string]Color = map[string]Color{
"Gray": &RGB{128, 128, 128},
"White": &RGB{255, 255, 255},
}
// Color is an interface for color objects, allowing colors to be
// used in various formats.
//