BlackdestinyXX / NyanTerminal

Make your terminal colorful using this simple library created with C++!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NyanTerminal

Make your terminal colorful, with this fantastic C++ library!

Example

#include <iostream>
#include <string>
#include "nyan_terminal.cpp"

int main() {
    nyanf("Hello World!", "black", "cyan");
    return 0;
}

This code print on console the text "Hello World!" with a black foreground, and a cyan background.

Include the library

For include the library, simple download "nyan_terminal.cpp" file and put it in your project folder.
Then, include it like this:

#include "PATH_TO_FILE/nyan_terminal.cpp"

All colors && backgrounds

Text Colors

default -> default color for text
black 
red
green
yellow
blue
magenta
cyan
white

Background Colors

default -> default color for background
black 
red
green
yellow
blue
magenta
cyan
white


Created by Bl4ckdestinyXX

About

Make your terminal colorful using this simple library created with C++!


Languages

Language:C++ 100.0%