summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..5295f05
--- /dev/null
+++ b/main.py
@@ -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()