-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnaga-theme.el
72 lines (59 loc) · 2.04 KB
/
naga-theme.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
;;; naga-theme.el --- Dark color theme with green foreground color
;; Author: Johannes Maier <johannes.maier@mailbox.org>
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see
;; <http://www.gnu.org/licenses/>.
;;; Commentary:
;; The default version of `naga'.
;;; Code:
(deftheme naga
"Created 2021-09-26.")
;;;###autoload
(when (and load-file-name
(boundp 'custom-theme-load-path))
(let ((dir (file-name-as-directory
(file-name-directory load-file-name))))
(add-to-list 'custom-theme-load-path dir)
(unless (featurep 'naga-base)
(load-file (expand-file-name "naga-base.el" dir)))))
(let ((bg "#040404")
(bg-green "#041a04")
(fg "#0ac30a")
(fg-medium "#089e08")
(fg-dark "#078807")
(yellow "#eec900")
(gold "#eead0e")
(cyan "#00bfb0")
(string "#b3ee3a")
(purple "#cc59d2")
(orange "#ff9000")
(comment "#707370")
(comment-light "#909590")
(comment-dark "#353535")
(docstring "#698b22")
(grey "#aabaaa")
(dark-blue "#01018a")
(alt-green (if naga-theme-use-legacy-sea-green
"#3cb371"
"#60c410"))
(orange-red "#ff4500")
(red "#ff1500")
(whitespace-fg "#555f55")
(block "#060606")
(block-light "#252525")
(amaranth "#e52b50"))
(apply #'custom-theme-set-faces
(cons 'naga (naga--create-theme-colors))))
(provide-theme 'naga)
;;; naga-theme.el ends here
;; Local Variables:
;; fill-column: 70
;; End: