Define colors for company-mode

This commit is contained in:
John Mastro 2014-07-19 17:53:33 -07:00
parent 6a2c7ca018
commit 6a0f102950
1 changed files with 13 additions and 1 deletions

View File

@ -547,7 +547,19 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
(term-color-blue ((t ( ,@fg-blue))))
(term-color-magenta ((t ( ,@fg-magenta))))
(term-color-cyan ((t ( ,@fg-cyan))))
(term-color-white ((t ( ,@fg-base00)))))
(term-color-white ((t ( ,@fg-base00))))
;; company
(company-tooltip ((t (,@fg-base00 ,@bg-base02))))
(company-tooltip-selection ((t (,@fg-base1 ,@bg-base02))))
(company-tooltip-mouse ((t (,@fg-base1 ,@bg-base02))))
(company-tooltip-common ((t (,@fg-base1 ,@bg-base02))))
(company-tooltip-common-selection ((t (,@fg-base1 ,@bg-base02))))
(company-tooltip-annotation ((t (,@fg-yellow ,@bg-base02))))
(company-scrollbar-fg ((t (,@bg-base0))))
(company-scrollbar-bg ((t (,@bg-base02))))
(company-preview ((t (,@bg-green))))
(company-preview-common ((t (,@bg-base02))))
(company-template-field ((t (,@fg-base03 ,@bg-yellow)))))
((foreground-color . ,(when (<= 16 (display-color-cells)) base0))
(background-color . ,back)