-
Notifications
You must be signed in to change notification settings - Fork 4
/
show_colors.sh
executable file
·32 lines (27 loc) · 1.7 KB
/
show_colors.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
# #<---------------------------->
# # You must include this section when:
# # Distributing, Using and/or Modifying this code.
# # Please read and abide by the terms of the included LICENSE.
# # Copyright 2020, Deepankar Chakroborty, All rights reserved.
# #
# # Version : 0.1
# # Author : Deepankar Chakroborty (https://github.com/dchakro)
# # Report issues: https://github.com/dchakro/alacritty_colors/issues
# # License: https://github.com/dchakro/alacritty_colors/blob/master/LICENSE
# #<---------------------------->
# # Syntax of colors from https://misc.flogisoft.com/bash/tip_colors_and_formatting
NC='\033[0m'
# Colors
echo -e ""
echo -e " \033[39mRegular${NC} \033[1;39mBold${NC} \033[30;107mBackground${NC} \033[30;107mLighter BG${NC}"
echo -e "30: \033[30mBlack${NC} \033[1;30mBlack${NC}"
echo -e "31: \033[31mRed${NC} \033[1;31mRed${NC} \033[41mRed${NC} \033[101mRed${NC}"
echo -e "32: \033[32mGreen${NC} \033[1;32mGreen${NC} \033[42mGreen${NC} \033[102mgreen${NC}"
echo -e "33: \033[33mYellow${NC} \033[1;33mYellow${NC} \033[43mYellow${NC} \033[103mYellow${NC}"
echo -e "34: \033[34mBlue${NC} \033[1;34mBlue${NC} \033[44mBlue${NC} \033[104mBlue${NC}"
echo -e "35: \033[35mMagenta${NC} \033[1;35mMagenta${NC} \033[45mMagenta${NC} \033[105mMagenta${NC}"
echo -e "36: \033[36mCyan${NC} \033[1;36mCyan${NC} \033[46mCyan${NC} \033[106mCyan${NC}"
echo -e "37: \033[37mGray${NC} \033[1;37mGray${NC} \033[47mGray${NC} \033[100mGray${NC}"
echo -e "39: \033[39mWhite${NC} \033[1;39mWhite${NC} \033[107mWhite${NC} \033[107mWhite${NC}"
echo -e ""