summary refs log tree commit diff
path: root/console.sh
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-03-12 23:16:03 -0400
committerJune McEnroe <programble@gmail.com>2017-03-12 23:16:03 -0400
commit81c0af62a0ae30a92979495d981447643f641a9a (patch)
tree942b53c0ac285b98a04c7406bac93ef1b6c297d8 /console.sh
parentAdd custom keymap for console (diff)
downloadsrc-81c0af62a0ae30a92979495d981447643f641a9a.tar.gz
src-81c0af62a0ae30a92979495d981447643f641a9a.zip
Add console color palette script
Diffstat (limited to 'console.sh')
-rwxr-xr-xconsole.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/console.sh b/console.sh
new file mode 100755
index 00000000..2f372345
--- /dev/null
+++ b/console.sh
@@ -0,0 +1,27 @@
+#!/usr/bin/env zsh
+
+# Set the console color palette.
+
+color() {
+  print -n "\e]P${1}${2}"
+}
+
+color 0 '1d2021'
+color 1 'cc241d'
+color 2 '98991a'
+color 3 'd89a22'
+color 4 '468589'
+color 5 'b16286'
+color 6 '689e6a'
+color 7 'a99a84'
+
+color 8 '938374'
+color 9 'fc4935'
+color a 'b8ba26'
+color b 'fbbe2f'
+color c '83a699'
+color d 'd4869c'
+color e '8fc17d'
+color f 'eddbb3'
+
+clear