diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-06-26 15:05:34 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-06-26 15:05:34 +0000 |
commit | d6d5905738a52cfeed1ee03d2e4d20919e104c96 (patch) | |
tree | 61c444dc3a149b9db6a0b3c50789d17efa9a9054 /lisp/faces.el | |
parent | 3fc720e4bde612fa3943745d06bd2968c123e561 (diff) | |
download | emacs-d6d5905738a52cfeed1ee03d2e4d20919e104c96.tar.gz |
(fringe): Change face for different backgrounds.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 10 |
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." (defface fringe - '((((class color)) - (:background "grey95")) - (t - (:background "gray"))) + '((((class color) (background light)) + (:background "grey95")) + (((class color) (background dark)) + (:background "grey10")) + (t + (:background "gray"))) "Basic face for the fringes to the left and right of windows under X." :version "21.1" :group 'frames |