diff options
| author | Juri Linkov <juri@jurta.org> | 2005-06-06 12:18:20 +0000 |
|---|---|---|
| committer | Juri Linkov <juri@jurta.org> | 2005-06-06 12:18:20 +0000 |
| commit | a59c277843e219ad178b1b1d84eaf839ab766761 (patch) | |
| tree | 8247a22851ddab519c43f38263cda48435186027 | |
| parent | c711faac0a1ef15f18c23e988167d3dbccca1448 (diff) | |
| download | emacs-a59c277843e219ad178b1b1d84eaf839ab766761.tar.gz | |
(no-break-space, shadow): New faces.
(escape-glyph): Use less loud colors pink2 and red4.
| -rw-r--r-- | lisp/faces.el | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index b821d66f72e..c02c91cde86 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2084,13 +2084,29 @@ Note: Other faces cannot inherit from the cursor face." :group 'whitespace ; like `show-trailing-whitespace' :group 'basic-faces) -(defface escape-glyph '((((background dark)) :foreground "cyan") - ;; See the comment in minibuffer-prompt for - ;; the reason not to use blue on MS-DOS. - (((type pc)) :foreground "magenta") - (t :foreground "blue")) +(defface escape-glyph + '((((background dark)) :foreground "pink2") + ;; See the comment in minibuffer-prompt for + ;; the reason not to use blue on MS-DOS. + (((type pc)) :foreground "magenta") + (t :foreground "red4")) "Face for characters displayed as ^-sequences or \-sequences." - :group 'basic-faces) + :group 'basic-faces + :version "22.1") + +(defface no-break-space + '((t :inherit escape-glyph :underline t)) + "Face for non-breaking space." + :group 'basic-faces + :version "22.1") + +(defface shadow + '((((background dark)) :foreground "grey70") + (((background light)) :foreground "grey50")) + "Basic face for shadowed text." + :group 'basic-faces + :version "22.1") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Manipulating font names. |
