DevelopersToolbox / bash-colour-include

A script to create and export a set of variables which contain the 8 basic colours that can be displayed on most terminals.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DevelopersToolbox logo
Github Build Status Release Commits since release

Overview

This is a script that creates and exports a set of variables which contain the 8 basic colours that can be displayed on most terminals. It could easily be extended to use more colours if wanted.

In addition it also creeates and export a set of variables which handle other specific useful terminal information, cls, bold, reset etc.

The idea is for it to be included by other scripts to allow for colour to be added to a script in a clean and simple way.

Usaage

source bash-colour-include.sh

echo "${bgBlack}${fgRed}This should be red text${reset}"
echo "${bgBlack}${fgYellow}This should be yellow text${reset}"
echo "${bgWhite}${fgRed}This should be red on a white background${reset}"

Does my terminal support colour ?

If you do not known if your terminal supports colour, then take a look at our testcard tool which will show you.

About

A script to create and export a set of variables which contain the 8 basic colours that can be displayed on most terminals.

License:MIT License


Languages

Language:Shell 100.0%