Rename materialColor to indexedColor

This commit is contained in:
Theresa Gresch 2019-06-03 12:32:51 +02:00
parent 3864d35e42
commit a18a7d9477

View file

@ -91,8 +91,8 @@ func (c IndexedColor) Hex() string {
}
func (c IndexedColors) Hex() (result string) {
for _, materialColor := range c {
result += materialColor.Hex()
for _, indexedColor := range c {
result += indexedColor.Hex()
}
return result