aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el25
1 files changed, 20 insertions, 5 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 0b06b3f6980..8d440be9b39 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1633,7 +1633,7 @@ item in another window.\n\n"))
1633 :group 'custom-buffer) 1633 :group 'custom-buffer)
1634 1634
1635(defface custom-invalid-face '((((class color)) 1635(defface custom-invalid-face '((((class color))
1636 (:foreground "yellow" :background "red")) 1636 (:foreground "yellow1" :background "red1"))
1637 (t 1637 (t
1638 (:weight bold :slant italic :underline t))) 1638 (:weight bold :slant italic :underline t)))
1639 "Face used when the customize item is invalid." 1639 "Face used when the customize item is invalid."
@@ -1646,21 +1646,27 @@ item in another window.\n\n"))
1646 "Face used when the customize item is not defined for customization." 1646 "Face used when the customize item is not defined for customization."
1647 :group 'custom-magic-faces) 1647 :group 'custom-magic-faces)
1648 1648
1649(defface custom-modified-face '((((class color)) 1649(defface custom-modified-face '((((min-colors 88) (class color))
1650 (:foreground "white" :background "blue1"))
1651 (((class color))
1650 (:foreground "white" :background "blue")) 1652 (:foreground "white" :background "blue"))
1651 (t 1653 (t
1652 (:slant italic :bold))) 1654 (:slant italic :bold)))
1653 "Face used when the customize item has been modified." 1655 "Face used when the customize item has been modified."
1654 :group 'custom-magic-faces) 1656 :group 'custom-magic-faces)
1655 1657
1656(defface custom-set-face '((((class color)) 1658(defface custom-set-face '((((min-colors 88) (class color))
1659 (:foreground "blue1" :background "white"))
1660 (((class color))
1657 (:foreground "blue" :background "white")) 1661 (:foreground "blue" :background "white"))
1658 (t 1662 (t
1659 (:slant italic))) 1663 (:slant italic)))
1660 "Face used when the customize item has been set." 1664 "Face used when the customize item has been set."
1661 :group 'custom-magic-faces) 1665 :group 'custom-magic-faces)
1662 1666
1663(defface custom-changed-face '((((class color)) 1667(defface custom-changed-face '((((min-colors 88) (class color))
1668 (:foreground "white" :background "blue1"))
1669 (((class color))
1664 (:foreground "white" :background "blue")) 1670 (:foreground "white" :background "blue"))
1665 (t 1671 (t
1666 (:slant italic))) 1672 (:slant italic)))
@@ -2148,9 +2154,12 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
2148 `((((class color) 2154 `((((class color)
2149 (background dark)) 2155 (background dark))
2150 (:foreground "light blue" :weight bold :height 1.2 :inherit variable-pitch)) 2156 (:foreground "light blue" :weight bold :height 1.2 :inherit variable-pitch))
2157 (((min-colors 88) (class color)
2158 (background light))
2159 (:foreground "blue1" :weight bold :height 1.2 :inherit variable-pitch))
2151 (((class color) 2160 (((class color)
2152 (background light)) 2161 (background light))
2153 (:foreground "blue" :weight bold :height 1.2 :inherit variable-pitch)) 2162 (:foreground "blue" :weight bold :height 1.2 :inherit variable-pitch))
2154 (t (:weight bold))) 2163 (t (:weight bold)))
2155 "Face used for unpushable variable tags." 2164 "Face used for unpushable variable tags."
2156 :group 'custom-faces) 2165 :group 'custom-faces)
@@ -3392,6 +3401,9 @@ and so forth. The remaining group tags are shown with
3392 `((((class color) 3401 `((((class color)
3393 (background dark)) 3402 (background dark))
3394 (:foreground "pink" :weight bold :height 1.2 :inherit variable-pitch)) 3403 (:foreground "pink" :weight bold :height 1.2 :inherit variable-pitch))
3404 (((min-colors 88) (class color)
3405 (background light))
3406 (:foreground "red1" :weight bold :height 1.2 :inherit variable-pitch))
3395 (((class color) 3407 (((class color)
3396 (background light)) 3408 (background light))
3397 (:foreground "red" :weight bold :height 1.2 :inherit variable-pitch)) 3409 (:foreground "red" :weight bold :height 1.2 :inherit variable-pitch))
@@ -3403,6 +3415,9 @@ and so forth. The remaining group tags are shown with
3403 `((((class color) 3415 `((((class color)
3404 (background dark)) 3416 (background dark))
3405 (:foreground "light blue" :weight bold :height 1.2)) 3417 (:foreground "light blue" :weight bold :height 1.2))
3418 (((min-colors 88) (class color)
3419 (background light))
3420 (:foreground "blue1" :weight bold :height 1.2))
3406 (((class color) 3421 (((class color)
3407 (background light)) 3422 (background light))
3408 (:foreground "blue" :weight bold :height 1.2)) 3423 (:foreground "blue" :weight bold :height 1.2))