forked from doomemacs/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoom-ayu-light-theme.el
232 lines (201 loc) · 8.45 KB
/
doom-ayu-light-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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
;;; doom-ayu-light-theme.el --- inspired by Atom One Dark -*- no-byte-compile: t; -*-
(require 'doom-themes)
;;
(defgroup doom-ayu-light-theme nil
"Options for doom-themes"
:group 'doom-themes)
(defcustom doom-ayu-light-brighter-modeline nil
"If non-nil, more vivid colors will be used to style the mode-line."
:group 'doom-ayu-light-theme
:type 'boolean)
(defcustom doom-ayu-light-brighter-comments nil
"If non-nil, comments will be highlighted in more vivid colors."
:group 'doom-ayu-light-theme
:type 'boolean)
(defcustom doom-ayu-light-comment-bg doom-ayu-light-brighter-comments
"If non-nil, comments will have a subtle, darker background. Enhancing their
legibility."
:group 'doom-ayu-light-theme
:type 'boolean)
(defcustom doom-ayu-light-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-ayu-light-theme
:type '(choice integer boolean))
;;
(def-doom-theme doom-ayu-light
"A light theme inspired by Ayu Light"
;; name default 256 16
(
;; common
(common-accent '("#ff9940" "orange" "orange" ))
(common-bg '("#fafafa" "black" "black" ))
(common-fg '("#575f66" "grey" "grey" ))
(common-ui '("#ba9199" "grey" "grey" ))
(test '("#2ea8e6" "grey" "grey" ))
;; syntax
(syntax-tag '("#55b4d4" "cyan" "blue" ))
(syntax-func '("#f2ae49" "yellow" "yellow" ))
(syntax-entity '("#399ee6" "blue" "blue" ))
(syntax-string '("#86b300" "green" "green" ))
(syntax-regexp '("#4cbf99" "teal" "green" ))
(syntax-markup '("#f07171" "red" "red" ))
(syntax-keyword '("#fa8d3e" "orange" "orange" ))
(syntax-special '("#e6ba7e" "yellow" "yellow" ))
(syntax-comment '("#abb0b6" "grey" "grey" ))
(syntax-constant '("#a37acc" "magenta" "purple" ))
(syntax-operator '("#ed9366" "orange" "orange" ))
(syntax-error '("#f51818" "red" "red" ))
;; ui
(ui-line (doom-darken common-bg 0.07))
(ui-panel-shadow (doom-lighten common-bg 0.35))
(ui-panel-border (doom-lighten common-bg 0.45))
(ui-gutter-normal (doom-lighten common-ui 0.45))
(ui-gutter-active common-ui)
(ui-selection-bg (doom-blend common-bg test 0.7))
(ui-selection-inactive (doom-lighten test 0.93))
(ui-selection-border (doom-lighten test 0.93))
(ui-guide-active (doom-lighten common-ui 0.75))
(ui-guide-normal (doom-lighten common-ui 0.35))
;; vcs
(vcs-added '("#99bf4d" "green" "green" ))
(vcs-modified '("#709ecc" "blue" "blue" ))
(vcs-removed '("#f27983" "red" "red" ))
(bg common-bg)
(bg-alt common-bg)
(base0 ui-gutter-normal)
(base1 ui-gutter-active)
(base2 ui-selection-bg)
(base3 ui-selection-inactive)
(base4 ui-selection-border)
(base5 ui-guide-active)
(base6 ui-guide-normal)
(base7 ui-panel-shadow)
(base8 ui-panel-border)
(fg common-fg)
(fg-alt common-ui)
(grey syntax-comment)
(red syntax-markup)
(orange syntax-keyword)
(green syntax-string)
(teal syntax-regexp)
(yellow syntax-func)
(blue syntax-entity)
(dark-blue (doom-darken syntax-entity 0.2))
(magenta syntax-constant)
(violet (doom-lighten syntax-constant 0.2))
(cyan syntax-tag)
(dark-cyan (doom-darken syntax-tag 0.2))
;; face categories -- required for all themes
(highlight common-accent)
(vertical-bar ui-panel-border)
(selection ui-selection-inactive)
(builtin syntax-func)
(comments (if doom-ayu-light-brighter-comments syntax-comment syntax-comment))
(doc-comments (if doom-ayu-light-brighter-comments syntax-comment syntax-comment))
(constants syntax-constant)
(functions syntax-func)
(keywords syntax-keyword)
(methods syntax-func)
(operators syntax-operator)
(type syntax-special)
(strings syntax-string)
(variables common-fg)
(numbers syntax-func)
(region ui-selection-bg)
(error syntax-error)
(warning yellow)
(success green)
(vc-modified vcs-modified)
(vc-added vcs-added)
(vc-deleted vcs-removed)
;; custom categories
(hidden (car bg))
(-modeline-bright doom-ayu-light-brighter-modeline)
(-modeline-pad
(when doom-ayu-light-padded-modeline
(if (integerp doom-ayu-light-padded-modeline) doom-ayu-light-padded-modeline 4)))
(modeline-fg common-ui)
(modeline-fg-alt base5)
(modeline-bg
(if -modeline-bright
(doom-lighten blue 0.475)
`(,(doom-lighten (car bg) 0.15) ,@(cdr base0))))
(modeline-bg-l
(if -modeline-bright
(doom-lighten blue 0.45)
`(,(doom-lighten (car bg-alt) 0.1) ,@(cdr base0))))
(modeline-bg-inactive `(,(doom-lighten (car bg) 0.1) ,@(cdr bg)))
(modeline-bg-inactive-l `(,(car bg) ,@(cdr base1))))
;; --- extra faces ------------------------
((elscreen-tab-other-screen-face :background "#353a42" :foreground "#1e2022")
(evil-goggles-default-face :inherit 'region :background (doom-blend region bg 0.5))
((line-number &override) :foreground base4)
((line-number-current-line &override) :foreground fg)
(font-lock-comment-face
:foreground comments
:background (if doom-ayu-light-comment-bg (doom-lighten bg 0.05)))
(font-lock-doc-face
:inherit 'font-lock-comment-face
:foreground doc-comments)
(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
: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 modeline
(doom-modeline-bar :background (if -modeline-bright modeline-bg highlight) :weight 'normal)
(doom-modeline-buffer-file :inherit 'mode-line-buffer-id :weight 'normal)
(doom-modeline-buffer-path :inherit 'mode-line-emphasis :weight 'normal)
(doom-modeline-buffer-project-root :foreground green :weight 'normal)
;; ivy-mode
(ivy-current-match :background ui-line)
(ivy-minibuffer-match-face-1 :foreground common-accent :weight 'bold)
(ivy-minibuffer-match-face-2 :foreground common-accent :weight 'bold)
(ivy-minibuffer-match-face-3 :foreground common-accent :weight 'bold)
(ivy-minibuffer-match-face-4 :foreground common-accent :weight 'bold)
;; --- major-mode faces -------------------
;; css-mode / scss-mode
(css-proprietary-property :foreground orange)
(css-property :foreground green)
(css-selector :foreground blue)
;; LaTeX-mode
(font-latex-math-face :foreground green)
;; markdown-mode
(markdown-markup-face :foreground base5)
(markdown-header-face :inherit 'bold :foreground red)
((markdown-code-face &override) :background (doom-lighten common-bg 0.05))
;; org-mode
(org-hide :foreground hidden)
(solaire-org-hide-face :foreground hidden)
(org-headline-done :foreground syntax-comment)
(js2-object-property :foreground common-fg)
(rjsx-tag :foreground cyan)
(rjsx-tag-bracket-face :foreground (doom-lighten cyan 0.5))
(rjsx-attr :foreground syntax-func)
(web-mode-html-tag-face :foreground cyan)
(web-mode-html-tag-bracket-face :foreground (doom-lighten cyan 0.5))
(web-mode-html-attr-name-face :foreground syntax-func)
(company-tooltip :foreground common-fg :background common-bg)
(company-tooltip-annotation :foreground common-fg)
(company-tooltip-selection :background ui-line)
(company-tooltip-search :foreground common-accent :weight 'bold)
(company-scrollbar-bg :background common-bg)
(company-scrollbar-fg :background syntax-comment)
(highlight-numbers-number :foreground syntax-func :weight 'normal)
;; diff-mode
(diff-removed :foreground vcs-removed)
)
)
;;; doom-ayu-light-theme.el ends here