Last active
November 3, 2019 00:10
-
-
Save genegoykhman/c086db41b26e4cf9ca419aefdb874be4 to your computer and use it in GitHub Desktop.
My custom Emacs font colors for dark themes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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