Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/hex-colors-to-dict19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/hex-colors-to-dict b/tools/hex-colors-to-dict
new file mode 100755
index 0000000..5fa3ea7
--- /dev/null
+++ b/tools/hex-colors-to-dict
@@ -0,0 +1,19 @@
+#!/usr/bin/python
+
+import sys
+
+result = 'colors_dict = {\n'
+result += '\'white\' : \'black\' , \\\n'
+
+hex_file = open(sys.argv[1], 'r')
+
+for line in hex_file.readlines():
+ [ stroke, fill ] = line.split()
+ result += '\'#%s\' : \'#%s\', \\\n' % (fill, stroke)
+
+result += '}'
+
+hex_file.close()
+
+print result
+