From 21c1651547cb171673acc75f0ec29d625c2089f4 Mon Sep 17 00:00:00 2001 From: Deposite Pirate Date: Wed, 15 Oct 2025 11:32:55 +0200 Subject: Script to show colours new file: functions/colours.fish --- functions/colours.fish | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 functions/colours.fish (limited to 'functions') 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 -- cgit v1.3.1