Skip to content

Commit

Permalink
Tweak team sign colors.
Browse files Browse the repository at this point in the history
  • Loading branch information
patfair committed Sep 27, 2024
1 parent 642a9b7 commit 2f8c7c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions field/team_sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ const (

// Predefined colors for the team sign front text. The "A" channel is used as the intensity.
var redColor = color.RGBA{255, 0, 0, 255}
var blueColor = color.RGBA{0, 0, 255, 255}
var blueColor = color.RGBA{0, 50, 255, 255}
var greenColor = color.RGBA{0, 255, 0, 255}
var orangeColor = color.RGBA{255, 50, 0, 255}
var whiteColor = color.RGBA{255, 255, 255, 255}
var whiteColor = color.RGBA{255, 200, 180, 255}

// Creates a new collection of team signs.
func NewTeamSigns() *TeamSigns {
Expand Down

0 comments on commit 2f8c7c7

Please sign in to comment.