input-painter

license Version info

a simple way to color the output of other programs

### Installation ``` cargo install input-painter ``` ### Usage The intended use of this program is for other programs to pipe into them. ``` cat README.md | input-painter rgb 1 152 157 ``` You can also select any of `termcolor`'s colors which are listed by ``` input-painter --help ``` #### TODO: - More thorough documentation - Support hex values - Support changing background as well as style - this will cause breaking changes, I will likely move everything to options rather than subcommands, as the current API is restrictive