use ratatui::{
layout::Rect,
style::{Color, Style},
widgets::{Block, Clear},
Frame,
};
pub const GHOST_WHITE: Color = Color::Indexed(15);
pub const COOL_GREY: Color = Color::Indexed(246);
pub const LIGHT_PERIWINKLE: Color = Color::Indexed(252);
pub const VERY_LIGHT_AZURE: Color = Color::Indexed(75);
pub const EUCALYPTUS: Color = Color::Indexed(115);
pub const SIZZLING_RED: Color = Color::Indexed(197);
pub const SPACE_CADET: Color = Color::Indexed(17);
pub const DARK_GUNMETAL: Color = Color::Indexed(235); pub const INDIGO: Color = Color::Indexed(24);
pub const VIVID_SKY_BLUE: Color = Color::Indexed(45);
pub const RED: Color = Color::Indexed(196);
pub fn clear_area(f: &mut Frame<'_>, area: Rect) {
f.render_widget(Clear, area);
f.render_widget(Block::new().style(Style::new().bg(DARK_GUNMETAL)), area);
}