blob: 41102edcd1d1e30dba5acf595fcd65482bd8f4c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(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)
|