Skip to content

Commit 1383cf1

Browse files
committed
Add hallo-theme.el from color theme video
1 parent 10c1efd commit 1383cf1

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

hallo-theme.el

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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)

0 commit comments

Comments
 (0)