doomemacs/private/themes/narf/narf-dark-theme.el

138 lines
6.2 KiB
EmacsLisp
Raw Normal View History

2015-06-02 05:26:59 -04:00
;; NARF Dark
;; By Henrik Lissner <http://github.com/hlissner/emacs.d>
(deftheme narf-dark "dark theme for narfy emacs")
(custom-theme-set-variables 'narf-dark)
2015-07-27 15:13:06 +02:00
(let (;; (background "#2b303b")
(background "#232837")
(gutters "#05051e")
2015-06-02 05:26:59 -04:00
(gutter-fg "#55616A")
2015-07-27 15:13:06 +02:00
(gutters-active "#2b303f")
(gutter-light "#191e28")
2015-06-02 05:26:59 -04:00
(linum "#1e262c")
(builtin "#d08770")
(foreground "#c0c5ce")
(invisibles "#65737e")
2015-07-27 15:13:06 +02:00
(line-hl "#2b303f")
;; (line-hl "#343d46")
2015-06-02 05:26:59 -04:00
(selection "#4f5b66")
(text "#c0c5ce")
(comments "#65737e")
(punctuation "#8fa1b3")
(delimiters "#c0c5ce")
(operators "#c0c5ce")
(keywords "#b48ead")
(variables "#CBECFF")
(functions "#8fa1b3")
(methods "#8fa1b3")
(strings "#a3be8c")
(constants "#d08770")
(white "#ffffff")
(highlight "orange")
(dim-highlight "#556779")
(git-modified "#55616A")
(git-added "#436b3b")
2015-09-28 15:55:25 -04:00
(git-deleted "#714243")
(dark-bg "#05051e"))
2015-06-02 05:26:59 -04:00
(custom-theme-set-faces
'narf-dark
;; Default colors
`(default ((t (:foreground ,text :background ,background) )))
`(hl-line ((t (:background ,line-hl) )))
`(region ((t (:background ,selection) )))
`(cursor ((t (:background ,white) )))
`(fringe ((t (:background ,background :foreground ,white) )))
`(linum ((t (:background ,background :foreground ,gutter-fg :weight normal) )))
`(vertical-border ((t (:foreground "#000000") )))
2015-09-28 15:55:25 -04:00
`(mode-line ((t (:foreground ,white :background ,gutter-light))))
`(mode-line-inactive ((t (:foreground ,gutter-fg :background ,gutters-active))))
2015-06-02 05:26:59 -04:00
`(mode-line-modified-face ((t (:foreground ,builtin))))
2015-09-28 15:55:25 -04:00
`(powerline-active1 ((t (:background "#343A4D"))))
`(powerline-active2 ((t (:background "#3B435C"))))
`(powerline-inactive2 ((t (:background ,gutters-active))))
`(powerline-inactive2 ((t (:background ,gutters-active))))
2015-06-02 05:26:59 -04:00
;; Font lock faces
`(linum-highlight-face ((t (:foreground ,text :background ,line-hl :inherit linum))))
`(font-lock-keyword-face ((t (:foreground ,keywords))))
`(font-lock-type-face ((t (:foreground ,punctuation))))
`(font-lock-constant-face ((t (:foreground ,constants))))
`(font-lock-variable-name-face ((t (:foreground ,variables))))
`(font-lock-builtin-face ((t (:foreground ,builtin))))
`(font-lock-string-face ((t (:foreground ,strings))))
`(font-lock-comment-face ((t (:foreground ,comments))))
`(font-lock-comment-delimiter-face ((t (:foreground ,comments))))
`(font-lock-function-name-face ((t (:foreground ,functions))))
`(font-lock-doc-string-face ((t (:foreground ,comments))))
`(font-lock-doc-face ((t (:foreground ,comments))))
`(trailing-whitespace ((t (:background "#884444"))))
2015-08-06 12:49:32 +02:00
`(whitespace-tab ((t (:foreground "#343d46"))))
`(whitespace-newline ((t (:foreground "#343d46"))))
2015-06-02 05:26:59 -04:00
`(whitespace-trailing ((t (:background "#553333"))))
2015-07-23 01:31:58 +02:00
`(highlight-indentation-face ((t (:background "#2f3641"))))
`(highlight-indentation-current-column-face ((t (:background ,gutter-light))))
2015-06-02 05:26:59 -04:00
`(git-gutter+-modified ((t (:foreground ,git-modified :background nil))))
`(git-gutter+-added ((t (:foreground ,git-added :background nil))))
`(git-gutter+-deleted ((t (:foreground ,git-deleted :background nil))))
`(diff-hl-change ((t (:background ,git-modified))))
`(diff-hl-delete ((t (:background ,git-deleted))))
`(diff-hl-insert ((t (:background ,git-added))))
`(rainbow-delimiters-unmatched-face ((t (:inherit 'error))))
`(rainbow-delimiters-depth-1-face ((t (:foreground "#CCCCCC" :weight bold :bold t))))
;; js2-mode
;; *****************************************************************************************
`(js2-function-param ((t (:foreground ,variables))))
`(js2-jsdoc-tag ((t (:foreground ,comments :weight bold :bold t))))
;; company-mode
;; *****************************************************************************************
`(company-tooltip ((t (:inherit default :background "#3e4555"))))
`(company-tooltip-selection ((t (:inherit font-lock-function-name-face))))
`(company-tooltip-common ((t (:inherit font-lock-constant-face))))
`(company-scrollbar-bg ((t (:background "#4b5367"))))
`(company-scrollbar-fg ((t (:background "#353b49"))))
`(company-search ((t (:background "#4b5367"))))
;; *****************************************************************************************
`(persp-selected-face ((t (:foreground ,builtin))))
`(org-level-1 ((t (:inherit outline-1 :bold t :foreground ,constants))))
`(org-level-2 ((t (:inherit outline-2 :bold t :foreground ,variables))))
`(show-paren-match ((t (:background nil :foreground ,highlight :weight ultra-bold))))
`(evil-snipe-first-match-face ((t (:background ,highlight :foreground "black"))))
`(evil-snipe-matches-face ((t (:foreground ,highlight :background ,dim-highlight))))
`(isearch ((t (:foreground "black" :background ,highlight :inverse-video nil))))
`(isearch-lazy-highlight-face ((t (:foreground ,text :background ,dim-highlight))))
`(evil-search-highlight-persist-highlight-face ((t (:inherit isearch-lazy-highlight-face))))
))
;; *****************************************************************************************
(provide-theme 'narf-dark)
;; Local Variables:
;; no-byte-compile: t
;; End: