16 lines
283 B
Go
16 lines
283 B
Go
package ux
|
|
|
|
import (
|
|
"image/color"
|
|
|
|
"golang.org/x/image/font"
|
|
"golang.org/x/image/font/basicfont"
|
|
)
|
|
|
|
var (
|
|
FontFace font.Face = basicfont.Face7x13
|
|
FontColor color.Color = color.Black
|
|
BackgroundColor color.Color = color.White
|
|
Scale float64 = 1.0
|
|
)
|