From 292874d8a4e0bcbf76e272a267e11de3984ea31b Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Wed, 2 Mar 2016 02:10:32 -0500 Subject: [PATCH] theme: add config/faces for ivy and diredp --- .emacs.d/fred-theme.el | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.emacs.d/fred-theme.el b/.emacs.d/fred-theme.el index 81aa4c2..4de4caa 100644 --- a/.emacs.d/fred-theme.el +++ b/.emacs.d/fred-theme.el @@ -38,11 +38,24 @@ (t (:foreground "yellow" :underline t)))) '(link-visited ((((class color) (min-colors 89)) (:underline t :foreground "#3465a4")))) '(default ((((class color) (min-colors 4096)) (:foreground "#eeeeec" :background "#151515")) (((class color) (min-colors 256)) (:foreground "#eeeeec" :background "#222")) (((class color) (min-colors 89)) (:foreground "#eeeeec" :background "black")))) + '(button ((t (:foreground "yellow")))) + '(company-tooltip ((t (:background "#0f0f0f")))) '(company-scrollbar-bg ((t (:background "#232323")))) '(company-scrollbar-fg ((t (:background "#161616")))) '(company-tooltip-selection ((t (:inherit font-lock-function-name-face)))) '(company-tooltip-common ((t (:inherit font-lock-constant-face)))) - '(button ((t (:foreground "yellow"))))) + + '(ivy-current-match ((t (:background "#555" :foreground "light grey")))) + '(ivy-minibuffer-match-face-3 ((t (:background "#777ccc" :weight bold)))) + '(ivy-remote ((t (:foreground "deep sky blue")))) + '(ivy-subdir ((t (:inherit dired-directory)))) + + '(diredp-date-time ((t (:foreground "#0696AC34DBD5")))) + '(diredp-dir-heading ((t (:foreground "deep sky blue")))) + '(diredp-dir-name ((t (:foreground "#4E60C1DBFFFF")))) + '(dired-directory ((t (:foreground "#4E60C1DBFFFF")))) + '(diredp-file-name ((t (:foreground "light grey")))) + '(diredp-file-suffix ((t (:foreground "dark gray"))))) (provide-theme 'fred)