This commit is contained in:
2025-08-18 14:57:01 -04:00
parent 627ca88732
commit a7b3a6cd4a
9 changed files with 353 additions and 2 deletions

13
common/ux/v1/ux.go Normal file
View File

@@ -0,0 +1,13 @@
package ux
import (
"image/color"
"golang.org/x/image/font"
"golang.org/x/image/font/basicfont"
)
var (
FontFace font.Face = basicfont.Face7x13
BackgroundColor color.Color = color.White
)