diff options
author | ThanosApollo <[email protected]> | 2022-09-01 07:46:56 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-09-01 07:46:56 +0300 |
commit | 95853bb603efacc9890f2b86bd28b0377e448ee5 (patch) | |
tree | b787556e8f94151d67cce064af5614978eec3888 /.local/share/Anki2/addons21/anki_reworked/utils/themes.py | |
parent | 0c89df9be987008e55c1b336489c41290653434b (diff) |
Re-add anki addons
Diffstat (limited to '.local/share/Anki2/addons21/anki_reworked/utils/themes.py')
-rw-r--r-- | .local/share/Anki2/addons21/anki_reworked/utils/themes.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.local/share/Anki2/addons21/anki_reworked/utils/themes.py b/.local/share/Anki2/addons21/anki_reworked/utils/themes.py new file mode 100644 index 0000000..36af2d9 --- /dev/null +++ b/.local/share/Anki2/addons21/anki_reworked/utils/themes.py @@ -0,0 +1,34 @@ +import os +import json +from aqt import mw +from .logger import logger + +this_script_dir = os.path.join(os.path.dirname(__file__), "..") +themes_dir = os.path.join(this_script_dir, 'themes') + +def get_themes_dict() -> dict: + # Replace pathing for theme files (ReColor compatible) + themes = {} + for file in os.listdir(themes_dir): + if "json" in file: + file = file.replace(".json", "") + if themes.get(file, "") == "": + themes[file] = os.path.join(themes_dir, file+'.json') + return themes + +def get_theme(theme: str) -> dict: + themes_parsed = json.loads(open(themes[theme], encoding='utf-8').read()) + theme_colors = themes_parsed.get("colors") + # Add extra color_keys on theme files if not exist (ReColor compatible) + if not theme_colors.get("PRIMARY_COLOR", False): + theme_colors["PRIMARY_COLOR"] = ["Primary Color", "#0093d0", "#0093d0", "--primary-color"] + if not theme_colors.get("FOCUS_SHADOW", False): + theme_colors["FOCUS_SHADOW"] = ["Focus Shadow", "#ff93d0", "#0093d0", "--focus-shadow-color"] + themes_parsed["colors"] = theme_colors + return themes_parsed + +def write_theme(file, theme_content): + with open(file, "w") as f: + json.dump(theme_content, f, indent=2, sort_keys=True) + +themes = get_themes_dict() |