Last active
February 6, 2024 16:56
-
-
Save linuxoid69/f1555cb285599e1423ad to your computer and use it in GitHub Desktop.
man color gentoo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# красно-зеленая | |
export LESS_TERMCAP_mb=$'\033[01;31m' | |
export LESS_TERMCAP_md=$'\033[01;31m' | |
export LESS_TERMCAP_me=$'\033[0m' | |
export LESS_TERMCAP_se=$'\033[0m' | |
export LESS_TERMCAP_so=$'\033[01;44;33m' | |
export LESS_TERMCAP_ue=$'\033[0m' | |
export LESS_TERMCAP_us=$'\033[01;32m' | |
export LESS=-r | |
export GROFF_NO_SGR=1 | |
# зелено-голубая | |
export LESS_TERMCAP_mb=$'\033[01;36m' | |
export LESS_TERMCAP_md=$'\033[01;32m' | |
export LESS_TERMCAP_me=$'\033[0m' | |
export LESS_TERMCAP_mu=$'\033[01;37m' | |
export LESS_TERMCAP_se=$'\033[0m' | |
export LESS_TERMCAP_so=$'\033[01;44;33m' | |
export LESS_TERMCAP_ue=$'\033[0m' | |
export LESS_TERMCAP_us=$'\033[01;36m' | |
export LESS=-r | |
export GROFF_NO_SGR=1 | |
# зелено-сереневая | |
export LESS_TERMCAP_md=$'\033[1;32m' | |
export LESS_TERMCAP_me=$'\033[0m' | |
export LESS_TERMCAP_us=$'\033[0;35m' | |
export LESS_TERMCAP_ue=$'\033[0m' | |
export LESS_TERMCAP_mb=$'\033[1;33m' | |
export LESS_TERMCAP_so=$'\033[1;33m' | |
export LESS_TERMCAP_se=$'\033[0m' | |
export LESS=-r | |
export GROFF_NO_SGR=1 | |
# сине-сереневая | |
export LESS_TERMCAP_mb=$'\033[01;31m' | |
export LESS_TERMCAP_md=$'\033[01;38;5;74m' | |
export LESS_TERMCAP_me=$'\033[0m' | |
export LESS_TERMCAP_se=$'\033[0m' | |
export LESS_TERMCAP_so=$'\033[38;5;246m' | |
export LESS_TERMCAP_ue=$'\033[0m' | |
export LESS_TERMCAP_us=$'\033[04;38;5;146m' | |
export LESS=-r | |
export GROFF_NO_SGR=1 | |
# зеленая | |
export LESS_TERMCAP_mb=$'\E[01;32m' | |
export LESS_TERMCAP_md=$'\E[01;32m' | |
export LESS_TERMCAP_me=$'\E[0m' | |
export LESS_TERMCAP_se=$'\E[0m' | |
export LESS_TERMCAP_so=$'\E[01;47;34m' | |
export LESS_TERMCAP_ue=$'\E[0m' | |
export LESS_TERMCAP_us=$'\E[01;32m' | |
export LESS=-r | |
export GROFF_NO_SGR=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment