mirror of
https://github.com/1f349/voidterm.git
synced 2024-11-09 22:52:55 +00:00
19 lines
290 B
Go
19 lines
290 B
Go
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
|
|
}
|