termcolor repository

Repository Summary

Checkout URI https://github.com/stonier/termcolor.git
VCS Type git
VCS Version catkin
Last Updated 2015-10-27
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Packages

Name Version
termcolor 1.0.0

README

                          //  termcolor  //

               a library for printing colored messages

                          by Igor Kalnitsky


    ~ What is termcolor?

      Termcolor is a header-only C++ library for printing colored
      messages to the terminal. Written just for fun with a help of
      the Force.


    ~ How to use?

      Add `termcolor.hpp` to the project and use provided stream
      manimulators from the `termcolor` namespace.

      For example:

          std::cout << termcolor::red << termcolor::on_blue
                    << "Red text on blue background!"
                    << termcolor::reset << std::endl;

      Please, don't forgot to reset termcolor's settings on the stream!


    ~ What terminals are supported?

      Termcolor supports ANSI color formatting. This formatting is
      supported by most popular terminals on Linux, Unix and Mac OS.


    ~ Where the docs?

      http://termcolor.readthedocs.org/


CONTRIBUTING

No CONTRIBUTING.md found.