From d88c1e3abd8cf78215c1bb0becf87cce6d977c55 Mon Sep 17 00:00:00 2001 From: Mgldvd Date: Mon, 27 Feb 2023 13:03:49 -0500 Subject: [PATCH] Fix: in the json file cursorColor now is cursor --- tools/generatJson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/generatJson.py b/tools/generatJson.py index 8d64d13..c0134dd 100644 --- a/tools/generatJson.py +++ b/tools/generatJson.py @@ -27,7 +27,7 @@ for filename in os.listdir(source_path): "name": data["name"], "foreground": data["foreground"], "background": data["background"], - "color": data["cursor"], + "cursor": data["cursor"], "hash": hash_hex }) themes.append(theme)