* bug#73248: [macOS] `ns-transparent-titlebar` gives black-on-black text with dark themes
@ 2024-09-14 12:58 Stefan Kangas
0 siblings, 0 replies; only message in thread
From: Stefan Kangas @ 2024-09-14 12:58 UTC (permalink / raw)
To: 73248; +Cc: Steve Purcell, Alan Third
Severity: minor
When using (some?) dark themes with `ns-transparent-titlebar` set to t
on macOS, you get black-on-black text in the titlebar.
To reproduce the bug, evaluate this in emacs -Q:
(progn (load-theme 'modus-vivendi)
(modify-frame-parameters
nil '((ns-transparent-titlebar . t))))
The black-on-black text disappear when evaluating this:
(modify-frame-parameters
nil `((ns-transparent-titlebar . t)
(ns-appearance . ,(frame-parameter nil 'background-mode))))
However, this now gives white-on-white text when you switch to a light
theme (for example `M-x load-theme RET modus-operandi RET`).
There is a package that attempts to solve this by updating
`ns-appearance` dynamically depending on the theme:
https://github.com/purcell/ns-auto-titlebar
However, this just seems like a work-around for a plain bug.
I wonder if there is any reason why `ns-transparent-titlebar` set to t
can't just make it work as if `ns-appearance` was set to something like
this:
(ns-appearance . ,(frame-parameter nil 'background-mode))
FWIW, here's a recipe to try the `ns-auto-titlebar` package:
emacs -Q --eval "(progn (package-initialize) \
(use-package ns-auto-titlebar :ensure t \
:config (ns-auto-titlebar-mode)) \
(load-theme 'modus-vivendi))"
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-09-14 12:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-14 12:58 bug#73248: [macOS] `ns-transparent-titlebar` gives black-on-black text with dark themes Stefan Kangas
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.