voidterm/cell-attributes.go
2024-01-14 18:33:53 +00:00

19 lines
290 B
Go

package voidterm
import (
"image/color"
)
type CellAttributes struct {
fg color.Color
bg color.Color
bold bool
italic bool
dim bool
underline bool
strikethrough bool
blink bool
inverse bool
hidden bool
}