牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

(再)markdown-mode のヘッダーが同じ色で見づらいから色分けしてみるメモ

(emacs24.3)

前にやったやつが品雑なのでシンプルにしてみた

           (progn
             (require 'markdown-mode)
             (set-face-attribute 'markdown-header-face-1 nil :foreground "#DFAF8F")
             (set-face-attribute 'markdown-header-face-2 nil :foreground "#BFEBBF")
             (set-face-attribute 'markdown-header-face-3 nil :foreground "#7CB8BB")
             (set-face-attribute 'markdown-header-face-4 nil :foreground "#D0BF8F")
             (set-face-attribute 'markdown-header-face-5 nil :foreground "#93E0E3")
             (set-face-attribute 'markdown-header-face-6 nil :foreground "#9FC59F")
             )

頭の "#" の色だけ変わらないけどよしとしよう
(zenburn-theme 使ってるから?)

追記 2014-12-07

Emacs 24.4 にアプデしたら色つかなくなったので若干修正
(org-mode に結構変更があった模様。もうほとんど使ってないから調べてないけど)

           (progn
             ;; markdown-mode
             (custom-set-faces
              '(markdown-header-delimiter-face ((t (:inherit org-mode-line-clock))))
              '(markdown-header-face-1 ((t (:inherit outline-1 :weight bold))))
              '(markdown-header-face-2 ((t (:inherit outline-2 :weight bold))))
              '(markdown-header-face-3 ((t (:inherit outline-3 :weight bold))))
              '(markdown-header-face-4 ((t (:inherit outline-4 :weight bold))))
              '(markdown-header-face-5 ((t (:inherit outline-5 :weight bold))))
              '(markdown-header-face-6 ((t (:inherit outline-6 :weight bold))))
              '(markdown-pre-face ((t (:inherit org-formula))))
              )
             )