Skip to content

Instantly share code, notes, and snippets.

@strangeglyph
Created January 19, 2019 13:24
Show Gist options
  • Save strangeglyph/30c5ca8decee5ad80556d6c4f4c5782a to your computer and use it in GitHub Desktop.
Save strangeglyph/30c5ca8decee5ad80556d6c4f4c5782a to your computer and use it in GitHub Desktop.
while True:
b=512
while b >= 0:
g = 512
while g >= 0:
r = 512
while r >= 0:
print("r={:>3}, g={:>3}, b={:>3}".format(r,g,b))
r -= 8
g -= 8
b -= 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment