emacs.d

My Emacs configuration files.
git clone git://soucy.cc/emacs.d.git
Log | Files | Refs | README

commit 030332675769a53927f1f3f34f2835d919a9c9c5
parent 167510a7506fb41cc269920776004c2047e5fb6d
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Thu, 23 Mar 2023 20:32:16 -0400

Ignore emojify png and projects file

Diffstat:
M.gitignore | 2++
Athemes/solarpunk/solarpunk-theme.el | 32++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -28,3 +28,5 @@ mastodon.plstore /transient/history.el image-dired/ projectile.cache +emojis +projects diff --git a/themes/solarpunk/solarpunk-theme.el b/themes/solarpunk/solarpunk-theme.el @@ -0,0 +1,32 @@ +(require 'autothemer) + +(autothemer-deftheme + solarpunk "A theme to set the mood for Solarpunkween" + + ((((class color) (min-colors #xFFFFFF))) ;; We're only concerned with graphical Emacs + + ;; Define our color palette + (solarpunk-black "#000000") + (solarpunk-white "#ffffff") + (solarpunk-yellow "#ffd340") + (solarpunk-yellow-dark "#e5bd39") + (solarpunk-green "#7eb95c") + (solarpunk-brown "#ca5815") + (solarpunk-orange "#fc8c3b") + (solarpunk-orange-vivid "#ff6c00") + ) + + ;; Customize faces + ((default (:foreground solarpunk-brown :background solarpunk-yellow)) + (cursor (:background solarpunk-orange)) + ;;(region (:background solarpunk-dk-purple)) + (mode-line (:background solarpunk-green)) + (highlight (:background solarpunk-yellow-dark)) + (font-lock-keyword-face (:foreground solarpunk-green :weight 'extra-bold)) + ;;(font-lock-constant-face (:foreground solarpunk-green)) + ;;(font-lock-string-face (:foreground solarpunk-orange)) + ;;(font-lock-builtin-face (:foreground solarpunk-green)) + ;;(org-level-1 (:foreground solarpunk-orange)) + )) + +(provide-theme 'solarpunk)