Skip to content

Commit

Permalink
style: fix vet errors
Browse files Browse the repository at this point in the history
  • Loading branch information
deissh committed Jul 29, 2019
1 parent b9fae17 commit 7b5badc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pkg/avatar/avatar.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ import (

var (
avatarBgColors = map[string]*color.RGBA{
"45BDF3": {69, 189, 243, 255},
"E08F70": {224, 143, 112, 255},
"4DB6AC": {77, 182, 172, 255},
"9575CD": {149, 117, 205, 255},
"B0855E": {176, 133, 94, 255},
"F06292": {240, 98, 146, 255},
"A3D36C": {163, 211, 108, 255},
"7986CB": {121, 134, 203, 255},
"F1B91D": {241, 185, 29, 255},
"45BDF3": {R: 69, G: 189, B: 243, A: 255},
"E08F70": {R: 224, G: 143, B: 112, A: 255},
"4DB6AC": {R: 77, G: 182, B: 172, A: 255},
"9575CD": {R: 149, G: 117, B: 205, A: 255},
"B0855E": {R: 176, G: 133, B: 94, A: 255},
"F06292": {R: 240, G: 98, B: 146, A: 255},
"A3D36C": {R: 163, G: 211, B: 108, A: 255},
"7986CB": {R: 121, G: 134, B: 203, A: 255},
"F1B91D": {R: 241, G: 185, B: 29, A: 255},
}

defaultColorKey = "45BDF3"
Expand Down

0 comments on commit 7b5badc

Please sign in to comment.