Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@genegoykhman
Last active November 3, 2019 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save genegoykhman/c086db41b26e4cf9ca419aefdb874be4 to your computer and use it in GitHub Desktop.
Save genegoykhman/c086db41b26e4cf9ca419aefdb874be4 to your computer and use it in GitHub Desktop.
My custom Emacs font colors for dark themes
(custom-set-faces
'(default ((t (:stipple nil :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 130 :width normal :family "Source Code Pro for Powerline"))))
'(line-number ((t (:foreground "#485e65" :background "#081e25" :height 0.8))))
'(magit-mode-line-process ((t (:inherit mode-line-emphasis :foreground "yellow"))))
'(markdown-comment-face ((t (:foreground "#586e75" :strike-through nil))))
'(mu4e-view-body-face ((t (:foreground "#ffffff"))))
'(smerge-upper ((((class color) (min-colors 88) (background light))
:background "#ffdddd")
(((class color) (min-colors 88) (background dark))
:background "#330000")
(((class color))
:foreground "red")))
'(smerge-lower ((((class color) (min-colors 88) (background light))
:background "#ddffdd")
(((class color) (min-colors 88) (background dark))
:background "#003300")
(((class color))
:foreground "green")))
'(smerge-base ((((class color) (min-colors 88) (background light))
:background "#ffffaa")
(((class color) (min-colors 88) (background dark))
:background "#444400")
(((class color))
:foreground "yellow"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment