erm/internal/app/darktile/termutil/cell_attributes.go

19 lines
290 B
Go
Raw Normal View History

2021-07-30 22:29:20 +00:00
package termutil
import (
"image/color"
)
type CellAttributes struct {
fgColour color.Color
bgColour color.Color
bold bool
italic bool
dim bool
underline bool
strikethrough bool
blink bool
inverse bool
hidden bool
}