aboutsummaryrefslogtreecommitdiff
path: root/scripts/theme-studio/default_faces.py
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-13 15:05:27 -0500
committerCraig Jennings <c@cjennings.net>2026-06-13 15:05:27 -0500
commit2d8047ccf453b1248f9e9ba25d53f5f49d7a9c97 (patch)
tree15eee28d9bdc064301b34129d19bda413f74ba0e /scripts/theme-studio/default_faces.py
parenta090138d84f3e93b2d57b38159cf0b3b7330fe11 (diff)
downloaddotemacs-2d8047ccf453b1248f9e9ba25d53f5f49d7a9c97.tar.gz
dotemacs-2d8047ccf453b1248f9e9ba25d53f5f49d7a9c97.zip
Extract theme studio default face adapter
Diffstat (limited to 'scripts/theme-studio/default_faces.py')
-rw-r--r--scripts/theme-studio/default_faces.py128
1 files changed, 128 insertions, 0 deletions
diff --git a/scripts/theme-studio/default_faces.py b/scripts/theme-studio/default_faces.py
new file mode 100644
index 00000000..a2fd2720
--- /dev/null
+++ b/scripts/theme-studio/default_faces.py
@@ -0,0 +1,128 @@
+"""Helpers for theme-studio's captured Emacs default face snapshot."""
+
+from __future__ import annotations
+
+import json
+import pathlib
+from typing import Any
+
+
+class DefaultFaces:
+ def __init__(self, data: dict[str, Any] | None):
+ self.data = data
+ self.color_hex = self._build_color_hex()
+ self.color_names = self._build_color_names()
+
+ @classmethod
+ def from_path(cls, path: str | pathlib.Path) -> "DefaultFaces":
+ path = pathlib.Path(path)
+ if not path.exists():
+ return cls(None)
+ return cls(json.loads(path.read_text()))
+
+ @property
+ def available(self) -> bool:
+ return bool(self.data)
+
+ def face(self, face: str, effective: bool = True) -> dict[str, Any]:
+ if not self.data:
+ return {}
+ data = self.data.get("faces", {}).get(face, {})
+ block = "effectiveGuiLight" if effective else "chosenGuiLight"
+ return data.get(block, {}) or {}
+
+ def color(self, face: str, attr: str = "foreground", effective: bool = True) -> Any:
+ data = self.face(face, effective)
+ return data.get(attr + "Hex") or data.get(attr)
+
+ def seed(self, face: str, effective: bool = False) -> dict[str, Any]:
+ data = self.face(face, effective)
+ out: dict[str, Any] = {}
+ fg = data.get("foregroundHex") or data.get("foreground")
+ bg = data.get("backgroundHex") or data.get("background")
+ if fg:
+ out["fg"] = fg
+ if bg:
+ out["bg"] = bg
+ if data.get("weight") == "bold":
+ out["bold"] = True
+ if data.get("slant") == "italic":
+ out["italic"] = True
+ if data.get("underline"):
+ out["underline"] = True
+ if data.get("strike"):
+ out["strike"] = True
+ if data.get("inherit"):
+ out["inherit"] = data.get("inherit")
+ if data.get("height") and data.get("height") != 1:
+ out["height"] = data.get("height")
+ box = self.box_to_theme(data.get("box"))
+ if box:
+ out["box"] = box
+ return out
+
+ def box_to_theme(self, box: Any) -> dict[str, Any] | None:
+ if not box:
+ return None
+ if isinstance(box, dict):
+ return box
+ if not isinstance(box, list):
+ return None
+
+ vals = {}
+ i = 0
+ while i + 1 < len(box):
+ vals[box[i]] = box[i + 1]
+ i += 2
+
+ width = vals.get(":line-width", 1)
+ if isinstance(width, list) and width and width[0] == "cons":
+ width = width[1]
+ if isinstance(width, (int, float)):
+ width = abs(int(width)) or 1
+ else:
+ width = 1
+
+ color = vals.get(":color")
+ if color:
+ color = self.color_hex.get(str(color).lower().replace(" ", ""), color)
+
+ style = vals.get(":style")
+ if style == "released-button":
+ return {"style": "released", "width": width, "color": None}
+ if style == "pressed-button":
+ return {"style": "pressed", "width": width, "color": None}
+ return {"style": "line", "width": width, "color": color}
+
+ def label(self, value: str | None, fallback: str) -> str:
+ if not value:
+ return fallback
+ return self.color_names.get(str(value).lower(), fallback)
+
+ def _build_color_hex(self) -> dict[str, str]:
+ out: dict[str, str] = {}
+ if not self.data:
+ return out
+ for data in self.data.get("faces", {}).values():
+ for block in ("chosenGuiLight", "effectiveGuiLight"):
+ face_data = data.get(block, {}) or {}
+ for attr in ("foreground", "background", "distantForeground"):
+ name = face_data.get(attr)
+ hex_value = face_data.get(attr + "Hex")
+ if name and hex_value:
+ out[str(name).lower().replace(" ", "")] = hex_value
+ return out
+
+ def _build_color_names(self) -> dict[str, str]:
+ out: dict[str, str] = {}
+ if not self.data:
+ return out
+ for data in self.data.get("faces", {}).values():
+ for block in ("chosenGuiLight", "effectiveGuiLight"):
+ face_data = data.get(block, {}) or {}
+ for attr in ("foreground", "background", "distantForeground"):
+ hex_value = face_data.get(attr + "Hex")
+ name = face_data.get(attr)
+ if hex_value and name and not str(name).startswith("#"):
+ out.setdefault(hex_value.lower(), str(name).lower().replace(" ", "-"))
+ return out