# ansi-term-codes
[](https://crates.io/crates/ansi-term-codes)
[](https://docs.rs/ansi-term-codes)
[](https://github.com/lintel-rs/lintel/actions/workflows/ci.yml)
[](https://github.com/lintel-rs/lintel/blob/master/LICENSE)
ANSI terminal escape code constants. Zero-dependency, `no_std` compatible.
## Usage
```rust
use ansi_term_codes::{BOLD, RED, RESET};
println!("{BOLD}{RED}error:{RESET} something went wrong");
```
## Constants
- **Attributes:** `BOLD`, `DIM`, `ITALIC`, `UNDERLINE`, `RESET`
- **Colors:** `RED`, `GREEN`, `YELLOW`, `BLUE`, `MAGENTA`, `CYAN`
- **Bold colors:** `BOLD_RED`, `BOLD_GREEN`
## License
Apache-2.0