|
|
|
|
|
by mrottenkolber
3754 days ago
|
|
Hmm not sure if this is exactly what you are looking for, but this is the relevant section in my CUSTOM-SET-FACES: '(font-lock-builtin-face ((t (:weight bold))))
'(font-lock-comment-face ((t (:foreground "#707470"))))
'(font-lock-constant-face ((t (:underline t))))
'(font-lock-doc-face ((t (:inherit font-lock-comment-face))))
'(font-lock-function-name-face ((t (:inherit font-lock-constant-face))))
'(font-lock-keyword-face ((t (:weight bold))))
'(font-lock-preprocessor-face ((t (:underline (:color foreground-color :style wave)))))
'(font-lock-string-face ((t (:foreground "#707470"))))
'(font-lock-type-face ((t (:inherit font-lock-constant-face))))
'(font-lock-variable-name-face ((t (:inherit font-lock-constant-face))))
'(font-lock-warning-face ((t nil)))
'(fringe ((t (:background "#ffffff"))))
'(glyphless-char ((t (:slant italic))))
'(highlight ((t (:weight bold))))
'(isearch ((t (:box (:line-width 1 :color "#000000")))))
'(isearch-fail ((t (:weight bold))))
'(italic ((t (:slant italic))))
'(lazy-highlight ((t (:box (:line-width 1 :color "#d0d4d0")))))
'(link ((t (:inherit button))))
'(link-visited ((t (:inherit link :box (:line-width 1 :color "#707470" :style pressed-button)))))
'(minibuffer-prompt ((t (:weight bold))))
'(mode-line ((t (:inherit mode-line :background "gray93" :foreground "#000000" :height 110 :family "Source Sans Pro"))))
'(mode-line-emphasis ((t (:underline t))))
'(mode-line-inactive ((t (:inherit mode-line))))
'(mouse ((t (:background "#000000" :foreground "#ffffff"))))
'(region ((t (:background "#d0d4d0"))))
'(secondary-selection ((t (:background "#e9eee9"))))
'(show-paren-match ((t (:weight bold))))
'(show-paren-mismatch ((t (:underline t))))
Other than that I use the Inconsolata font. |
|