emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

19 lines
656 B

(deftheme gabriel
"Gabriel's Theme")
(custom-theme-set-faces
'gabriel
'(default ((t (:background "#000F00" :foreground "#39FF14"))))
'(cursor ((t (:background "white" :foreground "black"))))
'(font-lock-keyword-face ((t (:foreground "#C7EA46"))))
'(font-lock-type-face ((t (:foreground "#9DC183"))))
'(font-lock-doc-face ((t (:foreground "#708238"))))
'(font-lock-builtin-face ((t (:foreground "#00A86B"))))
'(font-lock-string-face ((t (:foreground "#708238")))))
;;;###autoload
(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'gabriel)