1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

chore: add support for astro files (see #469)

This commit is contained in:
Ferdinand Mütsch
2023-02-19 20:14:22 +01:00
parent f67115a788
commit e495468be2
5 changed files with 460 additions and 144 deletions

13
scripts/convert_colors.py Normal file
View File

@@ -0,0 +1,13 @@
# convert colors from the format provided by https://raw.githubusercontent.com/ozh/github-colors/master/colors.json to what wakapi wants
import sys
import json
with open(sys.argv[1], 'r') as f:
colors = json.load(f)
result = {}
for k, v in colors.items():
result[k] = v['color']
print(json.dumps(result, indent=4))