summaryrefslogtreecommitdiff
path: root/themes/badger-theme.el
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2022-12-22 21:23:54 -0500
committerJohn Turner <jturner.usa@gmail.com>2022-12-22 21:42:06 -0500
commit1b995bef5ebb9d90afebf09fecd510b675417860 (patch)
tree5dd0c6c9bb6c79048789181581c413e91baf4704 /themes/badger-theme.el
parent1249e9080daf981f56f00a4ec10a193e2bd1dcdf (diff)
downloademacs.d-1b995bef5ebb9d90afebf09fecd510b675417860.tar.gz
deleted old themes, created new badgar theme
Themes in Emacs can be loaded on top of each other, allowing to easily customize or override aspects of other themes, which I did not realize at the time of creating the custom-wombat theme! Badgar adds a few small tweaks, like setting highlight-indentation colors, making the fringe match the background, and highlighting the current line when using line-number-mode.
Diffstat (limited to 'themes/badger-theme.el')
-rw-r--r--themes/badger-theme.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/badger-theme.el b/themes/badger-theme.el
new file mode 100644
index 0000000..41102ed
--- /dev/null
+++ b/themes/badger-theme.el
@@ -0,0 +1,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)