11 lines
687 B
EmacsLisp
11 lines
687 B
EmacsLisp
(require 'popup)
|
|
|
|
;; solarized
|
|
(custom-set-faces
|
|
'(popup-face ((t (:background "#586e75" :foreground "#000000"))))
|
|
'(popup-menu-face ((t (:background "#586e75" :foreground "#000000"))))
|
|
'(popup-menu-mouse-face ((t (:background "#073642" :foreground "#dc322f" :box (:line-width -1 :style pressed-button)))))
|
|
'(popup-menu-selection-face ((t (:background "#073642" :foreground "#b58900" :box (:line-width -1 :style pressed-button) :overline "black" :weight bold))))
|
|
'(popup-scroll-bar-background-face ((t (:background "#586e75"))))
|
|
'(popup-scroll-bar-foreground-face ((t (:background "#002b36"))))
|
|
'(popup-tip-face ((t (:background "#586e75" :foreground "#000000" :slant italic)))))
|