xtodo 0.2.3

To-do and note application using the terminal user interface (TUI) written in Rust. Simple, nice-looking, efficient, and intuitive. Tested on Linux, macOS, and Windows.
use ratatui::prelude::Color;

// pub const BRIGHTORANGE: Color = Color::Rgb(200, 100, 50);
// pub const BLUE: Color = Color::Rgb(167, 199, 231);
// pub const GREEN: Color = Color::Rgb(193, 225, 193);
// pub const DARKGREEN: Color = Color::Rgb(64, 75, 64);
pub const ORANGE: Color = Color::Rgb(250, 200, 152);
pub const DARKORANGE:  Color = Color::Rgb(125, 100, 76);
// pub const PINK: Color = Color::Rgb(248, 200, 220);
pub const RED: Color = Color::Rgb(250, 160, 160);
pub const DARKRED: Color = Color::Rgb(83, 53, 53);
// pub const PURPLE: Color = Color::Rgb(195, 177, 225);
// pub const DARKPURPLE: Color = Color::Rgb(98, 89, 113);
pub const YELLOW: Color = Color::Rgb(255, 250, 160);
pub const DARKYELLOW: Color = Color::Rgb(85, 82, 53);
// pub const GRAY: Color = Color::Rgb(60, 60, 60);
pub const LIGHTGRAY: Color = Color::Rgb(120, 120, 120);
pub const DARKGRAY: Color = Color::Rgb(30, 30, 30);
pub const HELP_BACKGROUND: Color = Color::Rgb(0, 0, 0);