Skip to main content
4 of 7
added 2 characters in body
Blue
  • 28.8k
  • 8
  • 53
  • 101

#Pyth, 27 bytes

.wsm*50]sm*50]*255%+kd2U8U8 

Python equivalent

write_greyscale(sum([50*[sum([50*[255*((k+d)%2)] for k in range(8)])] for d in range(8)])) 

Try it here (just the colour values)

Output:

Output

Blue
  • 28.8k
  • 8
  • 53
  • 101