1
0
Fork 0
tetris-go/game/draw/theme.go
2025-09-14 22:16:29 +02:00

20 lines
319 B
Go

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
}