From 1b995bef5ebb9d90afebf09fecd510b675417860 Mon Sep 17 00:00:00 2001 From: John Turner Date: Thu, 22 Dec 2022 21:23:54 -0500 Subject: 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. --- themes/badger-theme.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 themes/badger-theme.el (limited to 'themes/badger-theme.el') 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) -- cgit v1.2.3