-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheziam-dusk-theme.el
102 lines (87 loc) · 3.33 KB
/
eziam-dusk-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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
;;; eziam-dusk-theme.el --- Dusk version of the Eziam theme
;; Copyright (c) 2016-2017 Thibault Polge <thibault@thb.lt>
;; Eziam is based on Tao theme, copyright (C) 2014 Peter <11111000000
;; at email.com> with contributions by Jasonm23 <jasonm23@gmail.com>.
;; Tao also credits: "Original faces taken from Zenburn theme port (c)
;; by Bozhidar Batsov"
;; Author: Thibault Polge <thibault@thb.lt>
;; Maintainer: Thibault Polge <thibault@thb.lt>
;;
;; Keywords: faces
;; Homepage: https://github.com/thblt/eziam-theme-emacs
;; Version: 5.1
;; 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:
;; This package provides a dusk version of the Eziam theme for Emacs.
;;; Code:
(require 'eziam-themes)
(deftheme eziam-dusk "The dusk Eziam color theme")
(eziam-with-color-variables
(
;; Base palette
("color-0" . "#222222")
("color-1" . "#444444")
("color-2" . "#666666")
("color-3" . "#888888")
("color-4" . "#AAAAAA")
("color-5" . "#CCCCCC")
("color-6" . "#EEEEEE")
("color-7" . "#FFFFFF")
("color-8" . "#ffffff")
;; Headings
("ol1-fg" . nil)
("ol1-bg" . "#000000")
("ol2-fg" . nil)
("ol2-bg" . "#063545")
("ol3-fg" . nil)
("ol3-bg" . "#186b8c")
("ol4-fg" . "#222222")
("ol4-bg" . "#1e85ae")
("ol5-fg" . "#222222")
("ol5-bg" . "#96a4ab")
("ol6-fg" . nil)
("ol6-bg" . nil)
("ol7-fg" . nil)
("ol7-bg" . nil)
("ol8-fg" . nil)
("ol8-bg" . nil)
;; Misc
("colored-comments" . "#ccffcc")
("transient-highlight" . "yellow")
("transient-highlight-fg" . "#000000")
("warning" . "gold")
("error" . "#ff0000")
("info" . "DeepSkyBlue")
("ok" . "green")
("rainbow-1" . "#ff0000")
("rainbow-2" . "#ff7700")
("rainbow-3" . "#ffff00")
("rainbow-4" . "#00ff00")
("rainbow-5" . "#0000ff")
("rainbow-6" . "#8f00ff")
)
(eziam-apply-custom-theme 'eziam-dusk))
;;;###autoload
(and load-file-name
(boundp 'custom-theme-load-path)
(add-to-list 'custom-theme-load-path
(file-name-as-directory
(file-name-directory load-file-name))))
(provide-theme 'eziam-dusk)
;; Local Variables:
;; mode: emacs-lisp;
;; no-byte-compile: t
;; indent-tabs-mode: nil
;; End:
;;; eziam-dusk-theme.el ends here