Commit Diff
- Commit:
b3b09659ba56fc41d2734e8a2fac920ffc848cbe- From:
- jn <j@ustink.org>
- Date:
- Message:
- Ensure UI is readable if init.el fails early The background is set to black in early-init.el, with the assumption that a dark theme will be loaded. If init.el fails for any reason before the theme is loaded, the user ends up with black-on-black text. One expected case where this can happen is if the Emacs version is <29. The error message from the guardrail in init.el would be unreadable.
- Actions:
- Patch | Tree
--- early-init.el +++ early-init.el @@ -36,5 +36,6 @@ ;; Setting the face in here prevents flashes of ;; color as the theme gets activated (background-color . "#000000") + (foreground-color . "#ffffff") (ns-appearance . dark) (ns-transparent-titlebar . t)))
