Created
September 5, 2024 21:22
-
-
Save roelds/04bac89d59fe3a18da30c96f65ab38b3 to your computer and use it in GitHub Desktop.
Test Terminal TrueColor Support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | |
}' | |
# https://github.com/termstandard/colors |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment