From 7ee689c57c75dc9e8c854e80007026fa6ac72bde Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 23 Apr 2018 04:30:44 -0400 Subject: [PATCH] completion/company: reduce contrast of company-box icon colors --- modules/completion/company/config.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/completion/company/config.el b/modules/completion/company/config.el index 4cdda0626..7bc2154cb 100644 --- a/modules/completion/company/config.el +++ b/modules/completion/company/config.el @@ -70,11 +70,11 @@ when company-box is active, which are incompatible and cause duplicate popups." :config (setq company-box-backends-colors nil company-box-icons-elisp - (list (all-the-icons-material "functions" :face 'all-the-icons-red) + (list (all-the-icons-material "functions" :face 'all-the-icons-purple) (all-the-icons-material "check_circle" :face 'all-the-icons-blue) - (all-the-icons-material "stars" :face 'all-the-icons-orange) + (all-the-icons-material "stars" :face 'all-the-icons-yellow) (all-the-icons-material "format_paint" :face 'all-the-icons-pink)) - company-box-icons-unknown (all-the-icons-material "find_in_page" :face 'all-the-icons-purple) + company-box-icons-unknown (all-the-icons-material "find_in_page" :face 'all-the-icons-silver) company-box-icons-yasnippet (all-the-icons-material "short_text" :face 'all-the-icons-green)))