Skip to content

Commit

Permalink
. diff faces for the monokai theme
Browse files Browse the repository at this point in the history
  • Loading branch information
senny committed Nov 13, 2010
1 parent e7cc939 commit 8f8a533
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
3 changes: 3 additions & 0 deletions theme-roller-macro.el
Expand Up @@ -122,6 +122,9 @@
(magit-diff-add ((t (:inherit theme-roller--diff-added))))
(magit-diff-del ((t (:inherit theme-roller--diff-removed))))
(magit-diff-none ((t (:inherit theme-roller--diff-context))))
(magit-log-sha1 ((t (:inherit theme-roller--code-keyword))))
(magit-log-head-label-remote ((t (:inherit theme-roller--code-string :box t))))
(magit-log-head-label-local ((t (:inherit theme-roller--code-variable :box t))))

(flymake-errline ((t (:inherit theme-roller--code-error))))
(flymake-warnline ((t (:inherit theme-roller--code-warning))))
Expand Down
18 changes: 11 additions & 7 deletions themes/monokai.el
Expand Up @@ -17,22 +17,26 @@
:link (:foreground "blue1" :underline t)
:mode-line (:background "#bcd5fa" :foreground "black")
:minibuffer-prompt (:inherit theme-roller--code-keyword)
:code-variable (:foreground "#FD971F")
:code-variable (:foreground "#66D9EF")
:code-reference (nil)
:code-constant (:foreground "#AE81FF")
:code-type (:foreground "#A6E22E")
:code-type (:foreground "#FD971F")
:code-keyword (:foreground "#F92672")
:code-string (:foreground "#A6E22E")
:code-comment (:foreground "#75715E")
:code-documentation (:foreground "#66D9EF")
:code-documentation (:foreground "#75715E")
:code-function (:foreground "#E6DB74")
:code-meta (:foreground "#8996A8")
:code-error (:background "#F92672" :foreground "#F8F8F0")
:code-warning (:background "#AE81FF" :foreground "#F8F8F0")
;; TODO: style diff faces
:diff-removed (:background "#420E09" :foreground "#F8F8F8")
:diff-changed (:background "#4A410D" :foreground "#F8F8F8")
:diff-info (:background "#0E2231" :foreground "#F8F8F8" :italic t)
:diff-added (:background "#253B22" :foreground "#F8F8F8")
:diff-removed (:background "#F92672" :foreground "#161711")
:diff-changed (:background "#E6DB74" :foreground "#161711")
:diff-info (:background "#66D9EF" :foreground "#161711" :italic t)
:diff-added (:background "#A6E22E" :foreground "#161711")
;; :diff-removed (:background "#B50230" :foreground "#161711")
;; :diff-changed (:background "#A29730" :foreground "#F8F8F2")
;; :diff-info (:background "#2295AB" :foreground "#F8F8F2" :italic t)
;; :diff-added (:background "#62A00A" :foreground "#F8F8F2")
:diff-context (:inherit theme-roller--base-font)
:code-escape-char (:foreground "#FF8000"))

0 comments on commit 8f8a533

Please sign in to comment.