diff options
Diffstat (limited to 'scripts/theme-studio/face_data.py')
| -rw-r--r-- | scripts/theme-studio/face_data.py | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/scripts/theme-studio/face_data.py b/scripts/theme-studio/face_data.py index d94f23068..56a660b82 100644 --- a/scripts/theme-studio/face_data.py +++ b/scripts/theme-studio/face_data.py @@ -143,6 +143,18 @@ GHOSTEL_SEED={ "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 @@ -353,13 +365,14 @@ 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 +385,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, ghostel, 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).", +} |
