aboutsummaryrefslogtreecommitdiff
path: root/scripts/theme-studio/face_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/theme-studio/face_data.py')
-rw-r--r--scripts/theme-studio/face_data.py52
1 files changed, 31 insertions, 21 deletions
diff --git a/scripts/theme-studio/face_data.py b/scripts/theme-studio/face_data.py
index d94f23068..f149c5441 100644
--- a/scripts/theme-studio/face_data.py
+++ b/scripts/theme-studio/face_data.py
@@ -131,24 +131,24 @@ ELFEED_SEED={
"elfeed-log-date-face":{"fg":"steel"},"elfeed-log-error-level-face":{"fg":"terracotta","bold":True},
"elfeed-log-warn-level-face":{"fg":"gold"},"elfeed-log-info-level-face":{"fg":"sage"},
"elfeed-log-debug-level-face":{"fg":"pewter"}}
-# ghostel (terminal): the 16 ANSI colors plus default and the fake cursor.
-GHOSTEL_FACES=("ghostel-default ghostel-fake-cursor ghostel-fake-cursor-box "
- "ghostel-color-black ghostel-color-red ghostel-color-green ghostel-color-yellow "
- "ghostel-color-blue ghostel-color-magenta ghostel-color-cyan ghostel-color-white "
- "ghostel-color-bright-black ghostel-color-bright-red ghostel-color-bright-green ghostel-color-bright-yellow "
- "ghostel-color-bright-blue ghostel-color-bright-magenta ghostel-color-bright-cyan ghostel-color-bright-white").split()
-GHOSTEL_SEED={
- "ghostel-default":{"fg":"#cdced1"},"ghostel-fake-cursor":{"fg":"#000000","bg":"silver"},"ghostel-fake-cursor-box":{"fg":"silver"},
- "ghostel-color-black":{"fg":"pewter"},"ghostel-color-red":{"fg":"terracotta"},"ghostel-color-green":{"fg":"emerald"},"ghostel-color-yellow":{"fg":"gold"},
- "ghostel-color-blue":{"fg":"blue"},"ghostel-color-magenta":{"fg":"regal"},"ghostel-color-cyan":{"fg":"sage"},"ghostel-color-white":{"fg":"silver"},
- "ghostel-color-bright-black":{"fg":"steel"},"ghostel-color-bright-red":{"fg":"#de4949"},"ghostel-color-bright-green":{"fg":"#84b068"},"ghostel-color-bright-yellow":{"fg":"#eed376"},
- "ghostel-color-bright-blue":{"fg":"#7a9abe"},"ghostel-color-bright-magenta":{"fg":"#b07fd0"},"ghostel-color-bright-cyan":{"fg":"#7fc0a8"},"ghostel-color-bright-white":{"fg":"white"}}
+# eat (F12 terminal, pure-elisp): the 16 named ANSI palette faces (which :inherit
+# ansi-color-*), the SGR attribute faces, and the shell-prompt annotation faces.
+# No seed -- the faces are exposed editable but left at their own defaults until
+# themed (the eat-term-color-* numeric 0..255 cube is skipped; the named 16 alias
+# 0..15, and there is no dedicated eat default fg/bg face -- EAT uses `default').
+EAT_FACES=("eat-term-color-black eat-term-color-red eat-term-color-green eat-term-color-yellow "
+ "eat-term-color-blue eat-term-color-magenta eat-term-color-cyan eat-term-color-white "
+ "eat-term-color-bright-black eat-term-color-bright-red eat-term-color-bright-green eat-term-color-bright-yellow "
+ "eat-term-color-bright-blue eat-term-color-bright-magenta eat-term-color-bright-cyan eat-term-color-bright-white "
+ "eat-term-bold eat-term-faint eat-term-italic eat-term-slow-blink eat-term-fast-blink "
+ "eat-shell-prompt-annotation-success eat-shell-prompt-annotation-running eat-shell-prompt-annotation-failure").split()
+EAT_SEED={}
# ansi-color (built-in, not in the inventory): the 16 ANSI palette faces that every
-# ANSI consumer resolves -- vterm, eshell, compilation, and ghostel (whose
-# ghostel-color-* faces :inherit these). Theming ansi-color-* drives the 16
-# colors everywhere at once. Seed mirrors the ghostel palette so the two agree.
+# ANSI consumer resolves -- vterm, eshell, compilation, and eat (whose
+# eat-term-color-* faces :inherit these). Theming ansi-color-* drives the 16
+# colors everywhere at once.
# Note: a face left unset here inherits nothing extra; a consumer that sets its
-# own color directly (e.g. a seeded ghostel-color-red) overrides this inheritance.
+# own color directly (e.g. a seeded ansi-color-red) overrides this inheritance.
ANSI_COLOR_FACES=("ansi-color-black ansi-color-red ansi-color-green ansi-color-yellow "
"ansi-color-blue ansi-color-magenta ansi-color-cyan ansi-color-white "
"ansi-color-bright-black ansi-color-bright-red ansi-color-bright-green ansi-color-bright-yellow "
@@ -353,13 +353,13 @@ BESPOKE_APP_SPECS=[
("magit","magit","magit",MAGIT_FACES,"magit-",MAGIT_SEED),
("elfeed","elfeed","elfeed",ELFEED_FACES,"elfeed-",ELFEED_SEED),
("mu4e","mu4e","mu4e",MU4E_FACES,"mu4e-",MU4E_SEED),
- ("gnus","gnus (mu4e article view)","gnus",GNUS_FACES,"gnus-",GNUS_SEED),
+ ("gnus","gnus","gnus",GNUS_FACES,"gnus-",GNUS_SEED),
("org-faces","org-faces","orgfaces",ORGFACES_FACES,"org-faces-",ORGFACES_SEED),
- ("ghostel","ghostel","ghostel",GHOSTEL_FACES,"ghostel-",GHOSTEL_SEED),
- ("ansi-color","ansi-color (vterm/eshell/compilation/ghostel)","ansicolor",ANSI_COLOR_FACES,"ansi-color-",ANSI_COLOR_SEED),
+ ("ansi-color","ansi-color","ansicolor",ANSI_COLOR_FACES,"ansi-color-",ANSI_COLOR_SEED),
+ ("eat","emulate a terminal (eat)","eat",EAT_FACES,"eat-",EAT_SEED),
("auto-dim-other-buffers","auto-dim","autodim",AUTODIM_FACES,"auto-dim-other-buffers-",AUTODIM_SEED),
("dashboard","dashboard","dashboard",DASHBOARD_FACES,"dashboard-",DASHBOARD_SEED),
- ("lsp-mode","lsp-mode","lsp",LSP_FACES,"lsp-",LSP_SEED),
+ ("lsp-mode","language server protocol (lsp)","lsp",LSP_FACES,"lsp-",LSP_SEED),
("git-gutter","git-gutter","gitgutter",GITGUTTER_FACES,"git-gutter:",GITGUTTER_SEED),
("flycheck","flycheck","flycheck",FLYCHECK_FACES,"flycheck-",FLYCHECK_SEED),
("dired","dired","dired",DIRED_FACES,"dired-",DIRED_SEED),
@@ -372,5 +372,15 @@ BESPOKE_APP_SPECS=[
("pearl","pearl","pearl",PEARL_FACES,"pearl-",PEARL_SEED),
("slack","slack","slack",SLACK_FACES,"slack-",SLACK_SEED),
("telega","telega","telega",TELEGA_FACES,"telega-",TELEGA_SEED),
- ("shr","shr (HTML: nov/eww/mail)","shr",SHR_FACES,"shr-",SHR_SEED),
+ ("shr","simple html renderer (shr)","shr",SHR_FACES,"shr-",SHR_SEED),
]
+
+# Hover text for foundational/reused apps: names what consumes these faces, so
+# the app label can stay clean and the "who reuses this" context rides the app
+# dropdown's tooltip instead. Apps not listed here get no hover.
+APP_HOVERS={
+ "ansi-color":"The 16 ANSI palette faces. Reused by vterm, eshell, compilation, and eat, whose own color faces inherit these.",
+ "shr":"Simple HTML Renderer. Reused by eww, nov (epub reading), and mu4e / message for HTML mail.",
+ "gnus":"Article-view faces, reused by mu4e's article view.",
+ "dired":"Directory-listing faces, reused by dirvish (a dired frontend).",
+}