Browse Source

Defined shorthand for terminal color codes

tags/original
Bryan Miller 6 years ago
parent
commit
472afdcedb
1 changed files with 27 additions and 0 deletions
  1. +27
    -0
      colors.rc

+ 27
- 0
colors.rc View File

@@ -0,0 +1,27 @@

_CC() {
local c="0;00"
if [ "$1" ]; then
c="0;${1}"
fi
echo -n "\[\033[${c}m\]"
}

NORMAL=$(_CC '00')
BLACK=$(_CC '30')
BLUE=$(_CC '34')
CYAN=$(_CC '36')
GREEN=$(_CC '32')
PURPLE=$(_CC '35')
RED=$(_CC '31')
WHITE=$(_CC '37')
YELLOW=$(_CC '33')

BG_BLACK=$(_CC '40')
BG_BLUE=$(_CC '44')
BG_CYAN=$(_CC '46')
BG_GREEN=$(_CC '42')
BG_PURPLE=$(_CC '45')
BG_RED=$(_CC '41')
BG_WHITE=$(_CC '47')
BG_YELLOW=$(_CC '43')

Loading…
Cancel
Save