diff options
| author | Deposite Pirate | 2025-10-15 11:32:55 +0200 |
|---|---|---|
| committer | Deposite Pirate | 2025-10-15 11:32:55 +0200 |
| commit | 21c1651547cb171673acc75f0ec29d625c2089f4 (patch) | |
| tree | f2e4049586bcb77d9c5242a2b6e3a88e6af873ed /functions | |
| parent | f85858e67abe6317b6cd0d446619ebd23c27a9ba (diff) | |
Script to show colours
new file: functions/colours.fish
Diffstat (limited to 'functions')
| -rw-r--r-- | functions/colours.fish | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/functions/colours.fish b/functions/colours.fish new file mode 100644 index 0000000..38150c4 --- /dev/null +++ b/functions/colours.fish @@ -0,0 +1,11 @@ +function colours --description 'Show terminal colours' + printf '\033[1;37mWhite\t\033[0;30mBlack\n' + printf '\033[1;30mGray\t\033[0;37mLight gray\033[0m\n' + printf '\033[0;34mBlue\t\033[1;34mLight blue\n' + printf '\033[0;36mCyan\t\033[1;36mLight cyan\n' + printf '\033[0;35mPurple\t\033[1;35mLight purple\n' + printf '\033[0;31mRed\t\033[1;31mLight red\n' + printf '\033[0;33mYellow\t\033[1;33mLight yellow\n' + printf '\033[0;32mGreen\t\033[1;32mLight green\n' + printf '\n\033[0mDefault colour\n' +end |
