# rainbowcoat [](https://travis-ci.org/softprops/rainbowcoat) [](https://coveralls.io/github/softprops/rainbowcoat?branch=master) [](https://crates.io/crates/rainbowcoat)
> Adds rainbows over writers (inspired by [lolcat](https://github.com/busyloop/lolcat))
## [Documentation](https://softprops.github.io/rainbowcoat)
## intall
Add the following to your Cargo.toml file
```toml
[dependencies]
rainbowcoat = "0.1"
```
## usage
```rust
extern crate rainbowcoat;
use std::io::Write;
fn main() {
write!(
&mut rainbowcoat::Colors::configure(
io::stdout(), 2.0, 0.4, 0.0
),
" _
( |
|
__,--./|.--,__
.` \ \ / / `.
.` \ | / `.
/ / ^|^ \ \
/ / | |o | \ \
/===/ | | | \===\
/___/ | |o | \___\
| | |
| |o |
| | |
| |o |
| | |
| |o |
|_____/\_____|
"
)
}
```

Doug Tangren (softprops) 2017