rainbowcoat 0.1.0

Adds rainbows over writers
Documentation
# rainbowcoat [![Build Status]https://travis-ci.org/softprops/rainbowcoat.svg?branch=master]https://travis-ci.org/softprops/rainbowcoat [![Coverage Status]https://coveralls.io/repos/github/softprops/rainbowcoat/badge.svg?branch=master]https://coveralls.io/github/softprops/rainbowcoat?branch=master [![Crates.io]https://img.shields.io/crates/v/rainbowcoat.svg]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     |
            |_____/\_____|
"
  )
}
```

![](coat.png)

Doug Tangren (softprops) 2017