#!/bin/bash
# Color echo (for Linux console)
#



# echo  -n "[01;40;35m"

case $1  in
'red') 
    echo  -n "[00;40;31m"
    shift;;

'blue')
    echo  -n "[01;40;34m"
    shift;;
'green')
    echo  -n "[01;40;32m";
    shift;;
'yellow')
    echo  -n "[01;40;33m";
    shift;;
'yellowgreen')
    echo  -n "[01;33;42m";
    shift;;
'violet')
    echo  -n "[05;34;45m";
    shift;;
'grey')
    echo  -n "[00;47;30m";
    shift;;
'blackwhite')
    echo  -n "[01;37;40m";
    shift;;
esac

echo  $@"[0m"





exit






