Versions in this module Expand all Collapse all v0 v0.1.6 Nov 5, 2024 v0.1.5 Nov 3, 2024 Changes in this version + type Color struct + Blue uint8 + Green uint8 + Red uint8 + var Black Color + var Blue Color + var ElectricCyan Color + var ElectricGreen Color + var ElectricYellow Color + var Magenta Color + var Red Color + var White Color + func New(red, green, blue uint8) Color + func (c Color) Background(w io.Writer) error + func (c Color) Bytes() []byte + func (c Color) Foreground(w io.Writer) error + type Style struct + var DefaultStyle *Style + func (s *Style) Background(color Color) *Style + func (s *Style) Foreground(color Color) *Style + func (s Style) String() string