Skip to content

Commit 60a619f

Browse files
committed
[bin/colors] Add script to print colors
1 parent 4f20c13 commit 60a619f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

bin/colors

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
echo -e "\033[0mNC (No color)"
6+
echo -e "\033[1;37mWHITE\t\033[0;30mBLACK"
7+
echo -e "\033[0;34mBLUE\t\033[1;34mLIGHT_BLUE"
8+
echo -e "\033[0;32mGREEN\t\033[1;32mLIGHT_GREEN"
9+
echo -e "\033[0;36mCYAN\t\033[1;36mLIGHT_CYAN"
10+
echo -e "\033[0;31mRED\t\033[1;31mLIGHT_RED"
11+
echo -e "\033[0;35mPURPLE\t\033[1;35mLIGHT_PURPLE"
12+
echo -e "\033[0;33mYELLOW\t\033[1;33mLIGHT_YELLOW"
13+
echo -e "\033[1;30mGRAY\t\033[0;37mLIGHT_GRAY"

0 commit comments

Comments
 (0)