//! Colored terminal output helpers.
//!
//! Convention: **meta-messages go to stderr**, actual command data goes
//! to stdout. That makes pipes work cleanly — `knishio metrics --raw |
//! prom-parser` only sees the Prometheus body, not the "ℹ Config
//! loaded from …" banner; `knishio ai status > snapshot.txt` writes
//! only the status body, not the meta-chatter.
//!
//! - `success` / `info` / `warn` / `error` — status / progress /
//! diagnostics about the command (stderr).
//! - `header` — section label *within* the command's rendered output
//! (stdout). Do not use for meta-chatter.
use Colorize;