forked from Ergus/mini_dotemacs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-16-theme.el
166 lines (129 loc) · 7.37 KB
/
simple-16-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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
;;; simple-16-theme.el --- Custom theme for faces -*- lexical-binding:t -*-
;; Copyright (C) 2020 Free Software Foundation, Inc.
;; Author: Jimmy Aguilar Mena <[email protected]>
;; This file is part of GNU Emacs.
;; GNU Emacs 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.
;; GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Code:
(deftheme simple-16
"Dark theme with a set of simple 16 colors only.")
(defmacro simple-16-theme-color (colorname)
"Get color by name COLORNAME from `simple-16-color-theme-alist'."
(alist-get colorname '((black . "#000000")
(red . "#cd0000")
(green . "#00cd00")
(yellow . "#cdcd00")
(blue . "#0000ee")
(magenta . "#cd00cd")
(cyan . "#00cdcd")
(white . "#e5e5e5")
(brightblack . "#444444") ;;
(brightred . "#ff0000")
(brightgreen . "#00ff00")
(brightyellow . "#ffff00")
(brightblue . "#5c5cff")
(brightmagenta . "#ff00ff")
(brightcyan . "#00ffff")
(brightwhite . "#ffffff"))))
(custom-theme-set-faces
'simple-16
`(default ((t :background ,(simple-16-theme-color black)
:foreground ,(simple-16-theme-color white))))
`(font-lock-builtin-face ((t :foreground ,(simple-16-theme-color green))))
`(font-lock-comment-face ((t :foreground ,(simple-16-theme-color blue))))
`(font-lock-constant-face ((t :foreground ,(simple-16-theme-color magenta))))
`(font-lock-doc-face ((t :foreground ,(simple-16-theme-color cyan))))
`(font-lock-function-name-face ((t :foreground ,(simple-16-theme-color white))))
`(font-lock-keyword-face ((t :foreground ,(simple-16-theme-color yellow))))
`(font-lock-preprocessor-face ((t :foreground ,(simple-16-theme-color magenta))))
`(font-lock-string-face ((t :foreground ,(simple-16-theme-color red))))
`(font-lock-type-face ((t :foreground ,(simple-16-theme-color green))))
`(font-lock-variable-name-face ((t :foreground ,(simple-16-theme-color white))))
`(highlight ((default :background ,(simple-16-theme-color blue) :foreground nil)
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
`(secondary-selection ((t :background ,(simple-16-theme-color blue) :foreground nil)
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
`(isearch ((t :background ,(simple-16-theme-color blue)
:foreground nil
:weight ultrabold)))
`(lazy-highlight ((default :background ,(simple-16-theme-color cyan))
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
`(region ((default :background ,(simple-16-theme-color blue)
:foreground ,(simple-16-theme-color white))
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblue) :foreground nil)))
`(trailing-whitespace ((default :background ,(simple-16-theme-color cyan))
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
;; Modeline
`(mode-line ((t :background ,(simple-16-theme-color blue)
:foreground ,(simple-16-theme-color white)
:weight bold)))
`(mode-line-inactive ((default :background ,(simple-16-theme-color black)
:foreground ,(simple-16-theme-color white)
:weight normal)
(((class color) (min-colors 16))
:background ,(simple-16-theme-color brightblack)
:foreground ,(simple-16-theme-color brightwhite))))
;; line numbers
`(line-number ((default :foreground ,(simple-16-theme-color white))
(((class color) (min-colors 16)) :foreground ,(simple-16-theme-color brightblack))))
`(line-number-current-line ((t :foreground ,(simple-16-theme-color green))))
;; column indicator
`(fill-column-indicator ((default :foreground ,(simple-16-theme-color white))
(((class color) (min-colors 16)) :foreground ,(simple-16-theme-color brightblack))))
`(show-paren-match ((default :background ,(simple-16-theme-color blue))
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
;; tab-bar
`(tab-bar ((t :inherit default :weight light)))
`(tab-bar-tab ((t :inherit tab-bar :background ,(simple-16-theme-color blue) :weight ultra-bold)))
`(tab-bar-tab-inactive ((t :inherit tab-bar :foreground ,(simple-16-theme-color white))))
;; tab-line
`(tab-line ((t :inherit default :weight light)))
`(tab-line-tab ((t :inherit tab-line)))
`(tab-line-tab-current ((t :inherit tab-line :background ,(simple-16-theme-color blue) :weight ultra-bold)))
`(tab-line-tab-inactive ((t :inherit tab-line :foreground ,(simple-16-theme-color white))))
;; Some others
`(Man-overstrike ((t :inherit font-lock-type-face :bold t)))
`(Man-underline ((t :inherit font-lock-keyword-face :underline t)))
`(which-func ((t :background nil :foreground ,(simple-16-theme-color white))))
`(dired-directory ((t :foreground ,(simple-16-theme-color cyan))))
;; External packages
;; Company
`(company-tooltip ((default :background ,(simple-16-theme-color blue)
:foreground ,(simple-16-theme-color white))
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
`(company-tooltip-common ((t :inherit company-tooltip
:foreground ,(simple-16-theme-color green))))
`(company-tooltip-selection ((t :background ,(simple-16-theme-color blue)
:weight ultra-bold)))
`(company-tooltip-scrollbar-track ((default :background ,(simple-16-theme-color blue))
(((class color) (min-colors 16)) :background ,(simple-16-theme-color brightblack))))
`(company-tooltip-scrollbar-thumb ((t :background ,(simple-16-theme-color blue))))
;; Avy
`(avy-lead-face ((t :background ,(simple-16-theme-color blue)
:foreground ,(simple-16-theme-color brightwhite))))
;; Flycheck
`(flycheck-error ((t :inherit nil :background nil :foreground nil :underline t)))
;; Flymake
`(flymake-error ((t :inherit nil :background nil :foreground nil :underline t)))
;; highlight-escape-sequences
`(hes-escape-backslash-face ((t :inherit font-lock-regexp-grouping-backslash
:foreground ,(simple-16-theme-color magenta))))
`(hes-escape-sequence-face ((t :inherit font-lock-regexp-grouping-construct
:foreground ,(simple-16-theme-color magenta))))
;; mu4e
`(mu4e-unread-face ((t :inherit nil :foreground ,(simple-16-theme-color blue) :weight bold)))
`(mu4e-system-face ((t :inherit nil :foreground ,(simple-16-theme-color green))))
`(mu4e-trashed-face ((t :inherit nil :foreground ,(simple-16-theme-color red))))
;;`(mu4e-replied-face ((t (:inherit nil :foreground ,(simple-16-theme-color blue)))))
`(mu4e-header-highlight-face ((t :inherit hl-line :weight bold :underline nil)))
)
(provide-theme 'simple-16)
;;; simple-16-theme.el ends here