Skip to main content

cove_cli/
colors.rs

1// ── Catppuccin Mocha palette ──
2
3use ratatui::style::Color;
4
5pub const LAVENDER: Color = Color::Rgb(180, 190, 254);
6pub const BLUE: Color = Color::Rgb(137, 180, 250);
7pub const PEACH: Color = Color::Rgb(250, 179, 135);
8pub const OVERLAY: Color = Color::Rgb(108, 112, 134);
9pub const GREEN: Color = Color::Rgb(166, 227, 161);
10pub const SURFACE: Color = Color::Rgb(69, 71, 90);
11
12// ── ANSI escape codes for non-ratatui output (CLI commands) ──
13
14pub const ANSI_PEACH: &str = "\x1b[38;2;250;179;135m";
15pub const ANSI_OVERLAY: &str = "\x1b[38;2;108;112;134m";
16pub const ANSI_SURFACE: &str = "\x1b[38;2;69;71;90m";
17pub const ANSI_SUBTEXT: &str = "\x1b[38;2;166;173;200m";
18pub const ANSI_WHITE: &str = "\x1b[38;2;205;214;244m";
19pub const ANSI_BOLD: &str = "\x1b[1m";
20pub const ANSI_RESET: &str = "\x1b[0m";