File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ (require 'autothemer )
2
+
3
+ (autothemer-deftheme
4
+ hallo " A theme to set the mood for Halloween"
5
+
6
+ ((((class color ) (min-colors #xFFFFFF ))) ; ; We're only concerned with graphical Emacs
7
+
8
+ ; ; Define our color palette
9
+ (hallo-black " #000000" )
10
+ (hallo-white " #ffffff" )
11
+ (hallo-orange " orange1" )
12
+ (hallo-dk-orange " #eb6123" )
13
+ (hallo-purple " MediumPurple2" )
14
+ (hallo-dk-purple " MediumPurple4" )
15
+ (hallo-green " LightGreen" ))
16
+
17
+ ; ; Customize faces
18
+ ((default (:foreground hallo-white :background hallo-black))
19
+ (cursor (:background hallo-dk-orange))
20
+ (region (:background hallo-dk-purple))
21
+ (mode-line (:background hallo-dk-purple))
22
+ (font-lock-keyword-face (:foreground hallo-purple))
23
+ (font-lock-constant-face (:foreground hallo-green))
24
+ (font-lock-string-face (:foreground hallo-orange))
25
+ (font-lock-builtin-face (:foreground hallo-green))
26
+
27
+ (org-level-1 (:foreground hallo-orange))))
28
+
29
+ (provide-theme 'hallo )
You can’t perform that action at this time.
0 commit comments