You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
391 B
EmacsLisp
13 lines
391 B
EmacsLisp
2 years ago
|
(require-theme 'wombat-theme)
|
||
|
|
||
|
(deftheme badger)
|
||
|
|
||
|
(custom-theme-set-faces
|
||
|
'badger
|
||
|
`(fringe ((t (:foreground ,(face-foreground 'default) :background ,(face-background 'default)))))
|
||
|
'(elisp-shorthand-font-lock-face ((t (:foreground "dark cyan"))))
|
||
|
'(line-number-current-line ((t (:background "gray"))))
|
||
|
'(highlight-indentation-face ((t (:background "gray20")))))
|
||
|
|
||
|
(provide-theme 'badger)
|