mirror of
https://github.com/dchakro/alacritty_colors.git
synced 2026-05-17 10:12:17 -07:00
31 lines
No EOL
1.7 KiB
Bash
Executable file
31 lines
No EOL
1.7 KiB
Bash
Executable file
#!/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.
|
|
# #
|
|
# # 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 "" |