diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-24 17:30:22 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-24 17:30:22 +0200 |
| commit | 390f03333e2e6083ee5d7f9b36c2e794105cf466 (patch) | |
| tree | f6144a4c15fd7a9e12ccb5faa4fe948431d5799e | |
| parent | 41520c0418a2a5468ac7696159a7dedb558187a7 (diff) | |
| download | soria-390f03333e2e6083ee5d7f9b36c2e794105cf466.tar.gz soria-390f03333e2e6083ee5d7f9b36c2e794105cf466.zip | |
Added support for company-mode and company-box
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
| -rw-r--r-- | soria-theme.el | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/soria-theme.el b/soria-theme.el index 5f40d7a..6c7be93 100644 --- a/soria-theme.el +++ b/soria-theme.el @@ -413,7 +413,35 @@ The theme has to be reloaded after changing anything in this group." :foreground ,soria-white :underline nil))))) - ; ansi color names + ;; company-mode + + `(company-tooltip + ((,class (:background ,soria-darkgray)))) + + `(company-tooltip-selection + ((,class (:inherit helm-selection)))) + + `(company-tooltip-common + ((,class (:foreground ,soria-green)))) + + `(company-scrollbar-fg + ((,class (:background ,soria-white)))) + + `(company-scrollbar-bg + ((,class (:background ,soria-statusgray)))) + + `(company-preview-search + ((,class (:background ,soria-white)))) + + ;; company-box + + `(company-box-candidate + ((,class (:foreground ,soria-white)))) + + `(company-box-scrollbar + ((,class (:inherit company-scrollbar-fg)))) + + ;; ansi color names (custom-theme-set-variables 'soria `(ansi-color-names-vector |
