From a3f62ee68f47686e52128e7f1a1e2278bb287ebc Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 19 Aug 2006 12:27:56 +0000 Subject: Integrate Walter color values. (Still not fully hooked up to buddies) --- (limited to 'tools') 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 + -- cgit v0.9.1