diff options
author | thinkpad <shipwrect@mailfence.com> | 2024-03-25 22:07:41 +0000 |
---|---|---|
committer | thinkpad <shipwrect@mailfence.com> | 2024-03-25 22:07:41 +0000 |
commit | b47ef26040f7f3762b0ec611a7307693b4ccb4c6 (patch) | |
tree | fcc2b3fb6ba8d9b13340c790d0bd7162d47912b6 | |
parent | 70586f7604942ab4fa2d614e366f83d62f4811d5 (diff) |
added red and plum colours.
-rwxr-xr-x[-rw-r--r--] | fakefetch.sh | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/fakefetch.sh b/fakefetch.sh index b9c04ff..e6644d4 100644..100755 --- a/fakefetch.sh +++ b/fakefetch.sh @@ -34,12 +34,18 @@ DORANGE='\033[38;5;208m' GREEN='\033[38;5;46m' DGREEN='\033[38;5;34m' +RED='\033[38;5;1m' +DRED='\033[38;5;9m' + +PLUM='\033[38;5;181m' +DPLUM='\033[38;5;182m' + #Custom Colours -#BLACK='\033[38;5;0m' (replace the 0 with a colour from this list https://www.ditig.com/publications/256-colors-cheat-sheet ) +#BLACK='\033[38;5;0m' -#Change to your desired colour -Text=$ORANGE -Background=$DORANGE +#Change to your desired colour variable name +Text=$PLUM +Background=$DPLUM #----------------------------------------------------------------------------------# # Variables # |