anstyle/
macros.rs

1macro_rules! escape {
2    ($($inner:expr),*) => {
3        concat!("\x1B[", $($inner),*, "m")
4    };
5}