aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-06-26 15:05:34 +0000
committerGerd Moellmann2000-06-26 15:05:34 +0000
commitd6d5905738a52cfeed1ee03d2e4d20919e104c96 (patch)
tree61c444dc3a149b9db6a0b3c50789d17efa9a9054
parent3fc720e4bde612fa3943745d06bd2968c123e561 (diff)
downloademacs-d6d5905738a52cfeed1ee03d2e4d20919e104c96.tar.gz
emacs-d6d5905738a52cfeed1ee03d2e4d20919e104c96.zip
(fringe): Change face for different backgrounds.
-rw-r--r--lisp/faces.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 4210dd5eccc..257ac51c50a 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1557,10 +1557,12 @@ created."
1557 1557
1558 1558
1559(defface fringe 1559(defface fringe
1560 '((((class color)) 1560 '((((class color) (background light))
1561 (:background "grey95")) 1561 (:background "grey95"))
1562 (t 1562 (((class color) (background dark))
1563 (:background "gray"))) 1563 (:background "grey10"))
1564 (t
1565 (:background "gray")))
1564 "Basic face for the fringes to the left and right of windows under X." 1566 "Basic face for the fringes to the left and right of windows under X."
1565 :version "21.1" 1567 :version "21.1"
1566 :group 'frames 1568 :group 'frames