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