aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-04 02:57:47 +0000
committerRichard M. Stallman1997-08-04 02:57:47 +0000
commit1c1e0fe5df9f65f8ee15725724bb8304fb9a4872 (patch)
treee2f69b47f0616bd2893f19d167192bb7d5b258ce /lisp
parent338992a502d4d51fee5ffb776abc4882ff38b14a (diff)
downloademacs-1c1e0fe5df9f65f8ee15725724bb8304fb9a4872.tar.gz
emacs-1c1e0fe5df9f65f8ee15725724bb8304fb9a4872.zip
Alternative colors for standard faces if dark background.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/faces.el14
1 files changed, 11 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 0ff08e2efe7..cfa5b223b7f 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1584,15 +1584,23 @@ examine the brightness for you."
1584 (underline "Underline text." ((t (:underline t)))) 1584 (underline "Underline text." ((t (:underline t))))
1585 (default "Used for text not covered by other faces." ((t nil))) 1585 (default "Used for text not covered by other faces." ((t nil)))
1586 (highlight "Highlight text in some way." 1586 (highlight "Highlight text in some way."
1587 ((((class color)) (:background "darkseagreen2")) 1587 ((((class color) (background light))
1588 (:background "darkseagreen2"))
1589 (((class color) (background dark))
1590 (:background "darkolivegreen"))
1588 (t (:inverse-video t)))) 1591 (t (:inverse-video t))))
1589 (modeline "Used for displaying the modeline." 1592 (modeline "Used for displaying the modeline."
1590 ((t (:inverse-video t)))) 1593 ((t (:inverse-video t))))
1591 (region "Used for displaying the region." 1594 (region "Used for displaying the region."
1592 ((t (:background "gray")))) 1595 ((((class color) (background dark))
1596 (:background "blue"))
1597 (t (:background "gray"))))
1593 (secondary-selection 1598 (secondary-selection
1594 "Used for displaying the secondary selection." 1599 "Used for displaying the secondary selection."
1595 ((((class color)) (:background "paleturquoise")) 1600 ((((class color) (background light))
1601 (:background "paleturquoise"))
1602 (((class color) (background dark))
1603 (:background "darkslateblue"))
1596 (t (:inverse-video t)))))) 1604 (t (:inverse-video t))))))
1597 entry symbol doc spec) 1605 entry symbol doc spec)
1598 (while all 1606 (while all