diff options
-rw-r--r-- | emacs.d/init.el | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 06b4144..351478f 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -183,6 +183,7 @@ '(bold ((t (:weight bold)))) '(compilation-column-number ((t (:foreground "grey40")))) '(cursor ((t (:background "grey80")))) + '(custom-state ((t (:foreground "#859900")))) '(diff-added ((t (:foreground "#859900")))) '(diff-file-header ((((class color) (min-colors 88) (background dark)) (:weight bold)))) '(diff-header ((((class color) (min-colors 88) (background dark)) (:foreground "#6C71C4")))) @@ -234,8 +235,17 @@ '(font-lock-variable-name-face ((t (:foreground "#E3F1F1")))) '(font-lock-warning-face ((((class color) (min-colors 88) (background dark)) (:foreground "#D30102" :weight bold)))) '(fringe ((((class color) (background dark)) (:background "grey25")))) + '(ggtags-global-line ((t (:inherit secondary-selection)))) '(header-line ((t (:inherit mode-line)))) '(highlight-beyond-fill-column-face ((t (:background "#530102")))) + '(ivy-confirm-face ((t (:inherit minibuffer-prompt :foreground "#859900")))) + '(ivy-current-match ((t (:background "#546E00")))) + '(ivy-match-required-face ((t (:inherit minibuffer-prompt :foreground "#DC322F")))) + '(ivy-minibuffer-match-face-1 ((t (:background "#222")))) + '(ivy-minibuffer-match-face-2 ((t (:background "#444" :weight bold)))) + '(ivy-minibuffer-match-face-3 ((t (:background "#3F4D91" :weight bold)))) + '(ivy-minibuffer-match-face-4 ((t (:background "#93115C" :weight bold)))) + '(ivy-remote ((t (:foreground "#6C71C4")))) '(jabber-chat-prompt-foreign ((t (:foreground "#00736F" :weight bold)))) '(jabber-chat-prompt-local ((t (:foreground "#859900" :weight bold)))) '(jabber-rare-time-face ((t (:foreground "#6C71C4" :weight bold)))) @@ -245,6 +255,8 @@ '(jabber-title-medium ((t (:weight bold :height 1.0 :width expanded)))) '(link ((((class color) (min-colors 88) (background dark)) (:foreground "#268BD2" :inverse-video nil :underline t)))) '(link-visited ((default (:inherit link)) (((class color) (background dark)) (:foreground "#6C71C4")))) + '(magit-branch-current ((t (:inherit magit-branch-local :box 1)))) + '(magit-branch-local ((t (:foreground "#69CABF")))) '(magit-diff-added ((t (:foreground "#657900")))) '(magit-diff-added-highlight ((t (:foreground "#859900")))) '(magit-diff-context ((t (:foreground "grey70")))) @@ -266,12 +278,14 @@ '(powerline-active2 ((t (:inherit mode-line :background "#2D3232")))) '(powerline-inactive1 ((t (:inherit mode-line-inactive :background "#121717")))) '(powerline-inactive2 ((t (:inherit mode-line-inactive :background "#1D2222")))) - '(region ((t (:background "#455900")))) + '(region ((t (:background "#253900")))) + '(secondary-selection ((t (:background "#344E00")))) '(smerge-refined-change ((t (:background "grey20"))) t) '(smerge-refined-changed ((t (:background "grey20")))) '(spaceline-highlight-face ((t (:background "#272A2A" :foreground "#FFFFFF" :inherit (quote mode-line))))) '(spaceline-modified ((t (:background "#A66" :foreground "#3E3D31" :inherit (quote mode-line))))) '(spaceline-unmodified ((t (:background "#777" :foreground "#3E3D31" :inherit (quote mode-line))))) + '(success ((t (:foreground "#859900" :weight bold)))) '(warning ((t (:foreground "#B58900" :weight bold)))) '(whitespace-indentation ((t (:foreground "grey20")))) '(whitespace-newline ((t (:foreground "grey20" :weight normal)))) |