use crate::config::colors::AnsiColor;
#[derive(Debug, Eq, PartialEq)]
pub enum Attr {
Reset,
Bold,
Dim,
Italic,
Underline,
DoubleUnderline,
Undercurl,
DottedUnderline,
DashedUnderline,
BlinkSlow,
BlinkFast,
Reverse,
Hidden,
Strike,
CancelBold,
CancelBoldDim,
CancelItalic,
CancelUnderline,
CancelBlink,
CancelReverse,
CancelHidden,
CancelStrike,
Foreground(AnsiColor),
Background(AnsiColor),
UnderlineColor(Option<AnsiColor>),
}