emacs: add themes

This commit is contained in:
Paul Walker
2021-03-02 10:02:24 +00:00
parent 9fb40204f5
commit 954bca71a5
5 changed files with 319 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
(defun color-theme-smoothy-786597 ()
"Theme generated by Sweyla: http://color-theme-smoothy-786597.el.sweyla.com/code/seed/786597/"
(interactive)
(color-theme-install
'(color-theme-smoothy-786597
((background-color . "#000000")
(foreground-color . "#FFFFFF")
(background-mode . dark)
(border-color . "#323232")
(cursor-color . "#FFFFFF")
(mouse-color . "#323232"))
(mode-line ((t (:foreground "#FFFFFF" :background "#323232"))))
(region ((t (:background "#323232"))))
(font-lock-comment-face ((t (:foreground "#208598"))))
(font-lock-constant-face ((t (:foreground "#A9430C"))))
(font-lock-builtin-face ((t (:foreground "#7F669E"))))
(font-lock-function-name-face ((t (:foreground "#C8FFBE"))))
(font-lock-variable-name-face ((t (:foreground "#4DB021"))))
(font-lock-keyword-face ((t (:foreground "#BFA155"))))
(font-lock-string-face ((t (:foreground "#5BC500"))))
(font-lock-doc-string-face ((t (:foreground "#5BC500"))))
(font-lock-type-face ((t (:foreground "#DE5E12"))))
)))
(provide 'color-theme-smoothy-786597)