5 ms·
Interesting one liner but would like to see the colors it generates
by nick0garvey 4y ago
Interesting one liner but would like to see the colors it generates
- Silverback_VII 4y agoNot long ago I saw a link here to site with the words and the colors...
- LanternLight83 4y agohttps://gist.github.com/aileftech/dd4f5598b1f3837651fdf16e5abc3ffb?permalink_comment_id=4321765#gistcomment-4321765 https://gist.github.com/aileftech/dd4f5598b1f3837651fdf16e5a...
- deleted 4y ago[deleted]
- srcreigh 4y agoView colors here https://codepen.io/srcreigh/pen/QWrrgdx https://codepen.io/srcreigh/pen/QWrrgdx Code thanks to gabrielsroka on the Github thread
- blondin 4y agooh wow, #seabed generated a beautiful blue. what a truly happy accident!
- kps 4y agoIf your terminal does 24-bit colour, and your shell is bash or ksh or zsh or close, sed -n -e 'y/abcdefOoIi/ABCDEF0011/' -e '/^[A-F01]\{6\}$/p' /usr/share/dict/words | while read c; do printf '\033[38;2;%d;%d;%dm#%s\033[0m\n' $((0x${c:0:2})) $((0x${c:2:2})) $((0x${c:4})) $c; done