package tui type Style struct { Fg int32 Bg int32 Bold bool Italic bool Underline bool Strikethrough bool } const ( Black = iota Red Green Yellow Blue Magenta Cyan White BrightBlack BrightRed BrightGreen BrightYellow BrightBlue BrightMagenta BrightCyan BrightWhite ) var DefaultStyle = Style {Fg: BrightWhite, Bg: Black}