https://github.com/wyatt-herkamp/style-term
A simple to use ANSI terminal style tool for Rust
https://github.com/wyatt-herkamp/style-term
Last synced: about 1 month ago
JSON representation
A simple to use ANSI terminal style tool for Rust
- Host: GitHub
- URL: https://github.com/wyatt-herkamp/style-term
- Owner: wyatt-herkamp
- License: other
- Created: 2022-05-24T17:25:57.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-26T12:09:15.000Z (almost 3 years ago)
- Last Synced: 2025-02-28T12:37:05.524Z (2 months ago)
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# style-term
A simple-to-use ANSI terminal style tool for Rust
## Features
Supports [No Color](https://no-color.org/) on the high level display methods
## How to use
```rust
use style_term::{Color, DefaultColor, EightBitColor, StyleString, TrueColor};fn main() {
println!("{}", "How are you doing".style().text_color(DefaultColor::Red))
}
```