projects
/
cmccabe-bin
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
41bfed0
)
Add colortest.sh
author
Colin P. Mccabe
<colin@cmccabe.xyz>
Mon, 22 Jul 2019 18:06:54 +0000 (11:06 -0700)
committer
Colin P. Mccabe
<colin@cmccabe.xyz>
Mon, 22 Jul 2019 18:06:54 +0000 (11:06 -0700)
colortest.sh
[new file with mode: 0755]
patch
|
blob
diff --git a/colortest.sh
b/colortest.sh
new file mode 100755
(executable)
index 0000000..
ba21632
--- /dev/null
+++ b/
colortest.sh
@@ -0,0
+1,15
@@
+#!/usr/bin/env bash
+
+awk 'BEGIN{
+ s="/\\/\\/\\/\\/\\"; s=s s s s s s s s;
+ for (colnum = 0; colnum<77; colnum++) {
+ r = 255-(colnum*255/76);
+ g = (colnum*510/76);
+ b = (colnum*255/76);
+ if (g>255) g = 510-g;
+ printf "\033[48;2;%d;%d;%dm", r,g,b;
+ printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b;
+ printf "%s\033[0m", substr(s,colnum+1,1);
+ }
+ printf "\n";
+}'