Skip to content

Instantly share code, notes, and snippets.

@ephbaum
Created November 14, 2023 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ephbaum/62d5be28a63bc1f819c0f4564c7ef110 to your computer and use it in GitHub Desktop.
Save ephbaum/62d5be28a63bc1f819c0f4564c7ef110 to your computer and use it in GitHub Desktop.
Test Terminal Colors
#!/usr/bin/env bash
for x in {0..8}; do
for i in {30..37}; do
for a in {40..47}; do
echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "
done
echo
done
done
echo ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment