voidterm/termutil/cell_attributes.go

19 lines
290 B
Go
Raw Normal View History

2024-01-14 20:15:26 +00:00
package termutil
2024-01-14 18:33:53 +00:00
import (
"image/color"
)
type CellAttributes struct {
2024-01-14 20:15:26 +00:00
fgColour color.Color
bgColour color.Color
2024-01-14 18:33:53 +00:00
bold bool
italic bool
dim bool
underline bool
strikethrough bool
blink bool
inverse bool
hidden bool
}