diff options
author | Anthony Wang | 2022-08-16 18:23:57 -0500 |
---|---|---|
committer | Anthony Wang | 2022-08-16 18:23:57 -0500 |
commit | 84c0f9a2501fbb77e93586e9ac25da1f35945acf (patch) | |
tree | aa2b7f2bf9e47bbb70cd0394ba2c001922493bef /main.py |
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +def color(x): + ret = '' + for i in range(0, 6): + ret += hex(2 * (x // 8**i % 8))[2:] + return ret + +f = open('index.html', 'w') +f.write('<meta charset="utf-8">\n') +f.write('<body style="font-size:6px">\n') +for i in range(0, 2**18): + try: + f.write('<span style="display:inline-block;width:8px;background-color:#' + color(2**18 - 1 - i) + '">' + chr(i) + '</span>\n') + except: + pass +f.write('</body>\n') +f.close() |