remove old color defs; move PPQ and CORNERS to core

This commit is contained in:
🪞👃🪞 2024-11-02 21:03:42 +02:00
parent 1ab1b695a4
commit 0f3103a003
4 changed files with 11 additions and 24 deletions

View file

@ -676,14 +676,10 @@ border! {
}
}
pub const COLOR_BG0: Color = Color::Rgb(30, 33, 36);
pub const COLOR_BG1: Color = Color::Rgb(41, 46, 57);
pub const COLOR_BG2: Color = Color::Rgb(46, 52, 64);
pub const COLOR_BG3: Color = Color::Rgb(59, 66, 82);
pub const COLOR_BG4: Color = Color::Rgb(67, 76, 94);
pub const COLOR_BG5: Color = Color::Rgb(76, 86, 106);
pub const COLOR_RED: Color = Color::Rgb(191, 97, 106);
pub const COLOR_YELLOW: Color = Color::Rgb(235, 203, 139);
pub const COLOR_GREEN: Color = Color::Rgb(163, 190, 140);
pub const COLOR_PLAYING: Color = Color::Rgb(60, 100, 50);
pub const COLOR_SEPARATOR: Color = Color::Rgb(0, 0, 0);
pub const CORNERS: CornersTall = CornersTall(Style {
fg: Some(Color::Rgb(96, 255, 32)),
bg: None,
underline_color: None,
add_modifier: Modifier::empty(),
sub_modifier: Modifier::DIM
});