Text can now be formatted

- Added black to the colors
- Fixed setStroke to be skipped when needed
This commit is contained in:
Unknown
2018-04-12 13:07:56 -04:00
parent 4bf7eca6b0
commit e90c491450
6 changed files with 156 additions and 10 deletions

View File

@@ -5,6 +5,7 @@ import (
)
var Colors map[string]Color = map[string]Color{
"Black": &RGB{0, 0, 0},
"Gray": &RGB{128, 128, 128},
"White": &RGB{255, 255, 255},
}