Org/Outline: Use bold faces and more readable colors

master
Pierre Neidhardt 2017-12-13 18:17:51 +01:00
parent 7a11fdfbc6
commit e96b0ae110
1 changed files with 10 additions and 8 deletions

View File

@ -76,14 +76,16 @@
;;; Outline mode ;;; Outline mode
(with-eval-after-load 'outline (with-eval-after-load 'outline
(set-face-attribute 'outline-1 nil :inherit 'font-lock-warning-face) ;; (set-face-attribute 'outline-1 nil :inherit 'font-lock-warning-face)
(set-face-foreground 'outline-2 "Gold") (set-face-attribute 'outline-1 nil :weight 'bold :foreground "#CBAC42")
(set-face-foreground 'outline-3 "SpringGreen") (set-face-attribute 'outline-2 nil :weight 'bold :foreground "#7BBF11")
(set-face-foreground 'outline-4 "LightSlateBlue") (set-face-attribute 'outline-3 nil :weight 'bold :foreground "#BC684F")
(set-face-foreground 'outline-5 "SlateGrey") (set-face-attribute 'outline-4 nil :weight 'bold :foreground "#4C95BF")
(set-face-foreground 'outline-6 "SeaGreen") (set-face-attribute 'outline-5 nil :weight 'bold :foreground "SeaGreen")
(set-face-foreground 'outline-7 "DarkSlateGray4") (set-face-attribute 'outline-6 nil :weight 'bold :foreground "DarkSlateGray4")
(set-face-foreground 'outline-8 "DarkSlateBlue")) (set-face-attribute 'outline-7 nil :weight 'bold :foreground "DarkSlateBlue")
(set-face-attribute 'outline-8 nil :weight 'bold :foreground "Gold"))
;;; show-paren ;;; show-paren
(with-eval-after-load 'paren (with-eval-after-load 'paren