use ratatui::style::Color;
pub const ACCENT: Color = Color::Rgb(0xcb, 0xa6, 0xf7);
pub const ACCENT_DIM: Color = Color::Rgb(0x6c, 0x70, 0x86);
pub const SELECTED_BG: Color = Color::Rgb(0x45, 0x47, 0x5a);
pub const ADD_BG: Color = Color::Rgb(0x28, 0x3b, 0x2e);
pub const DEL_BG: Color = Color::Rgb(0x44, 0x2b, 0x30);
pub const PLACEHOLDER: Color = Color::Rgb(0x6c, 0x70, 0x86);
pub const HUNK: Color = Color::Rgb(0x89, 0xdc, 0xeb);
pub const TICK: Color = Color::Rgb(0xa6, 0xe3, 0xa1);
pub const YELLOW: Color = Color::Rgb(0xf9, 0xe2, 0xaf);
pub const RED: Color = Color::Rgb(0xf3, 0x8b, 0xa8);
pub const BLUE: Color = Color::Rgb(0x89, 0xb4, 0xfa);
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn colors_are_defined() {
assert_ne!(ADD_BG, DEL_BG);
assert_ne!(ACCENT, ACCENT_DIM);
}
}