summaryrefslogtreecommitdiff
path: root/.local/share/Anki2/addons21/anki_reworked/utils/themes.py
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-09-01 07:41:39 +0300
committerThanosApollo <[email protected]>2022-09-01 07:41:39 +0300
commit0c89df9be987008e55c1b336489c41290653434b (patch)
tree73425d852d363acdd6c9297a97616b23f9311bd4 /.local/share/Anki2/addons21/anki_reworked/utils/themes.py
parenta6d1ec012952c5e955676af22732cd177d1f3abf (diff)
Remove 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.py34
1 files changed, 0 insertions, 34 deletions
diff --git a/.local/share/Anki2/addons21/anki_reworked/utils/themes.py b/.local/share/Anki2/addons21/anki_reworked/utils/themes.py
deleted file mode 100644
index 36af2d9..0000000
--- a/.local/share/Anki2/addons21/anki_reworked/utils/themes.py
+++ /dev/null
@@ -1,34 +0,0 @@
-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()