# sgr_const! [Documentation](https://docs.rs/sgr-const) A macro to generate [SGR](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) control sequences for colored output in terminal applications. ```toml [dependencies] sgr-const = "0.1" ``` ## Example ```rust sgr_const::sgr_const! { STYLE_CYAN = Bold | CyanFg; STYLE_NONE = Reset; } println!("{}{}{}", STYLE_CYAN, "This text will be cyan if your terminal supports it!", STYLE_NONE); ``` # License This project is licensed under the Mozilla Public License, Version 2.0. See [LICENSE](LICENSE) for more information.