diff options
Diffstat (limited to 'alacritty_terminal/src')
-rw-r--r-- | alacritty_terminal/src/term/color.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/alacritty_terminal/src/term/color.rs b/alacritty_terminal/src/term/color.rs index fc35952b..104fcfe5 100644 --- a/alacritty_terminal/src/term/color.rs +++ b/alacritty_terminal/src/term/color.rs @@ -15,9 +15,6 @@ pub const COUNT: usize = 269; /// Factor for automatic computation of dim colors used by terminal. pub const DIM_FACTOR: f32 = 0.66; -pub const RED: Rgb = Rgb { r: 0xff, g: 0x0, b: 0x0 }; -pub const YELLOW: Rgb = Rgb { r: 0xff, g: 0xff, b: 0x0 }; - #[derive(Debug, Eq, PartialEq, Copy, Clone, Default, Serialize)] pub struct Rgb { pub r: u8, |