aboutsummaryrefslogtreecommitdiff
path: root/src/ansi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ansi.rs')
-rw-r--r--src/ansi.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ansi.rs b/src/ansi.rs
index c63d334e..3bcfff88 100644
--- a/src/ansi.rs
+++ b/src/ansi.rs
@@ -558,14 +558,11 @@ pub enum NamedColor {
DimCyan,
/// Dim white
DimWhite,
- /// The bright foreground color
- BrightForeground,
}
impl NamedColor {
pub fn to_bright(&self) -> Self {
match *self {
- NamedColor::Foreground => NamedColor::BrightForeground,
NamedColor::Black => NamedColor::BrightBlack,
NamedColor::Red => NamedColor::BrightRed,
NamedColor::Green => NamedColor::BrightGreen,