(outline-4, outline-5, outline-7):
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 10 Sep 2007 18:21:58 +0000 (18:21 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 10 Sep 2007 18:21:58 +0000 (18:21 +0000)
Move font-lock-builtin-face down from 4 to 7 to better keep the
progression of color brightness, and to better match Org-mode's faces.

lisp/ChangeLog
lisp/outline.el

index c4e6741..61ff8ec 100644 (file)
@@ -1,3 +1,9 @@
+2007-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * outline.el (outline-4, outline-5, outline-7):
+       Move font-lock-builtin-face down from 4 to 7 to better keep the
+       progression of color brightness, and to better match Org-mode's faces.
+
 2007-09-10  Micha\e,Ak\e(Bl Cadilhac  <michael@cadilhac.name>
 
        * progmodes/meta-mode.el (meta-font-lock-keywords)
index 294de86..013b0ae 100644 (file)
@@ -187,12 +187,12 @@ in the file it applies to."
   :group 'outlines)
 
 (defface outline-4
-  '((t :inherit font-lock-builtin-face))
+  '((t :inherit font-lock-comment-face))
   "Level 4."
   :group 'outlines)
 
 (defface outline-5
-  '((t :inherit font-lock-comment-face))
+  '((t :inherit font-lock-type-face))
   "Level 5."
   :group 'outlines)
 
@@ -202,7 +202,7 @@ in the file it applies to."
   :group 'outlines)
 
 (defface outline-7
-  '((t :inherit font-lock-type-face))
+  '((t :inherit font-lock-builtin-face))
   "Level 7."
   :group 'outlines)