1
0
Fork 0

Initial commit

This commit is contained in:
Henrik Hautakoski 2025-09-14 08:38:30 +02:00
commit 0245a5cb43
22 changed files with 610 additions and 0 deletions

20
game/draw/theme.go Normal file
View file

@ -0,0 +1,20 @@
package draw
import (
"image/color"
)
// Theme holds the different colors used when rendering.
type Theme struct {
// Frame colors
FrameBG color.RGBA
FrameBorder color.RGBA
// Text colors
TextHeader color.RGBA
Text color.RGBA
// Grid Colors
GridBackground color.RGBA
GridEmptyCell color.RGBA
}