//! TUI color palette: a bright, high-contrast variant inspired by the
//! opencode theme, lightened so text and accents pop on dark terminals.
use Color;
/// Default text color.
pub const INK: Color = Rgb;
/// Muted / de-emphasized text.
pub const MUTED: Color = Rgb;
/// Primary accent (peach).
pub const PRIMARY: Color = Rgb;
/// Secondary accent (violet) — headings / highlights.
pub const ACCENT: Color = Rgb;
/// Success / healthy (green).
pub const SUCCESS: Color = Rgb;
/// Warning (orange).
pub const WARNING: Color = Rgb;
/// Error / failed (red).
pub const ERROR: Color = Rgb;
/// Informational (teal).
pub const INFO: Color = Rgb;