forked from doomemacs/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoom-plain-theme.el
170 lines (145 loc) · 4.51 KB
/
doom-plain-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
167
168
169
170
;;; doom-plain-theme.el --- inspired by gko's plain theme for VSCode
(require 'doom-themes)
(defgroup doom-plain-theme nil
"Options for doom-themes"
:group 'doom-themes)
(defcustom doom-plain-brighter-modeline nil
"If non-nil, more vivid colors will be used to style the mode-line."
:group 'doom-plain-theme
:type 'boolean)
(defcustom doom-plain-padded-modeline doom-themes-padded-modeline
"If non-nil, adds a 4px padding to the mode-line. Can be an integer to
determine the exact padding."
:group 'doom-plain-theme
:type '(or integer boolean))
(def-doom-theme doom-plain
"Theme inspired by gko's plain."
;; name default 256 16
((bg '("#ffffff" nil nil ))
(bg-alt '("#f3f3f3" nil nil ))
(base0 '("#969896" nil nil ))
(base1 '("#f1f3f5" nil nil ))
(base2 '("#444444" nil nil ))
(base3 '("#cccccc" nil nil ))
(base4 '("#e7e7e7" nil nil ))
(base5 '("#c5c8c6" nil nil ))
(base6 '("#fafafa" nil nil ))
(base7 '("#dfdfdf" nil nil ))
(base8 '("#fafafa" nil nil ))
(fg '("#282a2e" nil nil ))
(fg-alt (doom-lighten fg 0.15))
(grey fg)
(red fg)
(blue fg)
(dark-blue fg)
(orange fg)
(green fg)
(teal fg)
(yellow fg)
(magenta fg)
(violet fg)
(cyan fg)
(dark-cyan fg)
;; face categories -- required for all themes
(highlight base2)
(vertical-bar (doom-lighten fg 0.3))
(selection base1)
(builtin base0)
(comments base5)
(doc-comments base5)
(constants base0)
(functions fg)
(keywords fg)
(methods fg)
(operators fg)
(type fg)
(strings base0)
(variables base0)
(numbers base0)
(region base4)
(error red)
(warning yellow)
(success green)
(vc-modified orange)
(vc-added green)
(vc-deleted red)
;; custom categories
(hidden `(,(car bg) "black" "black"))
(-modeline-bright doom-plain-brighter-modeline)
(-modeline-pad
(when doom-plain-padded-modeline
(if (integerp doom-plain-padded-modeline) doom-plain-padded-modeline 4)))
(modeline-fg nil)
(modeline-fg-alt base5)
(modeline-bg
(if -modeline-bright
(doom-darken blue 0.475)
`(,(doom-darken (car bg-alt) 0.15) ,@(cdr base0))))
(modeline-bg-l
(if -modeline-bright
(doom-darken blue 0.45)
`(,(doom-darken (car bg-alt) 0.1) ,@(cdr base0))))
(modeline-bg-inactive (doom-darken bg-alt 0.1))
(modeline-bg-inactive-l `(,(car bg-alt) ,@(cdr base1))))
;; --- extra faces ------------------------
(
((line-number &override) :foreground base3)
((line-number-current-line &override) :foreground base2)
(hl-line
:background base8)
(org-block-begin-line
:foreground base2
:background base3)
(org-block-end-line
:foreground base2
:background base3)
(org-level-1
:slant 'italic
:foreground fg-alt
:background nil)
(org-level-2
:slant 'italic
:foreground base2
:background nil)
(org-level-3
:slant 'italic
:foreground base2
:background nil)
(org-level-3
:slant 'italic
:foreground base2
:background nil)
;; Font lock
(font-lock-comment-face
:foreground comments
:slant 'italic)
(font-lock-type-face
:foreground type
:slant 'italic)
(font-lock-function-name-face
:foreground functions
:slant 'italic)
(font-lock-doc-face
:foreground doc-comments
:slant 'italic)
(font-lock-constant-face
:foreground constants
:slant 'italic)
(doom-modeline-bar :background (if -modeline-bright modeline-bg highlight))
(mode-line
:background modeline-bg :foreground modeline-fg
:box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg)))
(mode-line-inactive
:background modeline-bg-inactive :foreground modeline-fg-alt
:box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-inactive)))
(mode-line-emphasis
:foreground (if -modeline-bright base8 highlight))
(solaire-mode-line-face
:inherit 'mode-line
:background modeline-bg-l
:box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-l)))
(solaire-mode-line-inactive-face
:inherit 'mode-line-inactive
:background modeline-bg-inactive-l
:box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-inactive-l)))))
;;; doom-plain-theme.el ends here