From d4b06c54d32131b90351b6a83cfe80ee4a9f0cdd Mon Sep 17 00:00:00 2001 From: astoff Date: Wed, 8 Jan 2020 10:14:46 +0100 Subject: [PATCH] jupyter-repl-traceback face: use a light background on light themes The previous value of this face used a dark background even on light themes, making error messages hard to read. --- jupyter-repl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter-repl.el b/jupyter-repl.el index 09b75ca..547bc18 100644 --- a/jupyter-repl.el +++ b/jupyter-repl.el @@ -90,7 +90,7 @@ (defface jupyter-repl-traceback '((((class color) (min-colors 88) (background light)) - :background "darkred") + :background "LightYellow2") (((class color) (min-colors 88) (background dark)) :background "firebrick")) "Face used for a traceback."