Skip to content

Instantly share code, notes, and snippets.

@xphere
Last active February 18, 2021 09:07
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 xphere/aca4296c3de673026557e88d3c3ebaa1 to your computer and use it in GitHub Desktop.
Save xphere/aca4296c3de673026557e88d3c3ebaa1 to your computer and use it in GitHub Desktop.
Show all console color combinations
all:
$(call colors)
define colors
$(foreach in,$(shell seq 0 9),$(foreach bg,$(shell seq 30 39),@echo -e $(foreach fg,$(shell seq 40 49),"\033[$(in);$(bg);$(fg)m $(in);$(bg);$(fg) \033[0m")
))
endef
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment