Skip to content

Instantly share code, notes, and snippets.

@thinkpad20
thinkpad20 / mushroom.py
Last active August 29, 2015 14:00
Mario mushroom in pure html/css, generated by python. http://jsfiddle.net/z5c5U/
BLACK = {'background-color': 'black'}
WHITE = {'background-color': 'white'}
GREEN = {'background-color': 'green'}
_ = {}
colors = [BLACK, WHITE, GREEN, _]
pixel_size = 10
grid = [[_, _, _, _, _, BLACK, BLACK, BLACK, BLACK, BLACK, BLACK, _, _, _, _, _],
[_, _, _, BLACK, BLACK, BLACK, WHITE, GREEN, GREEN, WHITE, BLACK, BLACK, BLACK, _, _, _],