blob: e6fc9f06bac0e576cc45623ab95180c1a30f6ba6 (
plain)
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
|
;;; ef-autumn-theme.el --- Legible dark theme -*- lexical-binding:t -*-
;; Copyright (C) 2022 Free Software Foundation, Inc.
;; Author: Protesilaos Stavrou <info@protesilaos.com>
;; Maintainer: Ef-Themes Development <~protesilaos/ef-themes@lists.sr.ht>
;; URL: https://git.sr.ht/~protesilaos/ef-themes
;; Mailing-List: https://lists.sr.ht/~protesilaos/ef-themes
;; Version: 0.0.1
;; Package-Requires: ((emacs "28.1"))
;; Keywords: faces, theme, accessibility
;; 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/>.
;;; Commentary:
;;
;; The `ef-themes' are a collection of light and dark themes for GNU
;; Emacs whose goal is to provide colorful ("pretty") yet legible
;; options for users who want something with a bit more flair than the
;; `modus-themes' (also designed by me).
;;; Code:
(eval-and-compile
(require 'ef-themes)
(deftheme ef-autumn "Legible dark theme.")
(defconst ef-autumn-palette
'(;; Basic tones
(bg-main "#0f0e06")
(fg-main "#cfbcba")
(bg-dim "#1f1b19")
(fg-dim "#887c8a")
(bg-alt "#36322f")
(fg-alt "#70a89f")
;; Basic hues for foreground values
(red "#ef656a")
(red-warmer "#f26f25")
(red-cooler "#f07f7f")
(red-faint "#d08f72")
(green "#2fa526")
(green-warmer "#64aa0f")
(green-cooler "#00b672")
(green-faint "#61ab78")
(yellow "#c48502")
(yellow-warmer "#e0832f")
(yellow-cooler "#df8f6f")
(yellow-faint "#cf9f7f")
(blue "#379cf6")
(blue-warmer "#6a88ff")
(blue-cooler "#029fff")
(blue-faint "#7a94df")
(magenta "#d570af")
(magenta-warmer "#e580ea")
(magenta-cooler "#af8aff")
(magenta-faint "#c590af")
(cyan "#4fb0cf")
(cyan-warmer "#6fafff")
(cyan-cooler "#3dbbb0")
(cyan-faint "#92b4df")
;; Basic hues for background values
(bg-red "#cd2f30")
(bg-green "#20a020")
(bg-yellow "#9a4f20")
(bg-blue "#3f43af")
(bg-magenta "#c040cf")
(bg-cyan "#027080")
;; Diffs
(bg-added "#20360f")
(bg-added-faint "#102300")
(bg-added-refine "#304b1f")
(bg-changed "#424200")
(bg-changed-faint "#2a2000")
(bg-changed-refine "#585800")
(bg-removed "#501a0a")
(bg-removed-faint "#3a1200")
(bg-removed-refine "#721a16")
;; Special hues
(bg-mode-line "#692a12") (fg-mode-line "#feeeca")
(bg-accent "#ffa200") (fg-accent "#000000")
(bg-completion "#36213a")
(bg-hover "#265f4a")
(bg-hover-alt "#6f345a")
(bg-hl-line "#302a3a")
(bg-region "#3f1020")
(bg-active "#46423f")
(bg-paren "#7f2d40")
(bg-err "#361400") ; check with err
(bg-info "#152500") ; check with info
(border "#54444a")
(cursor "#ffaa33")
(fg-intense "#ffffff")
;; Mappings
(err red-warmer)
(warning yellow-warmer)
(info green-cooler)
(link yellow)
(link-alt red-cooler)
(date yellow-cooler)
(name green-warmer)
(keybind red)
(builtin red-cooler)
(comment yellow-faint)
(constant green-warmer)
(fnname cyan-cooler)
(keyword yellow)
(preprocessor magenta)
(docstring green-faint)
(string red-warmer)
(type green)
(variable cyan-warmer)
(accent-0 green-cooler)
(accent-1 yellow-warmer)
(accent-2 cyan-cooler)
(accent-3 magenta-cooler)
(mail-0 green-warmer)
(mail-1 red)
(mail-2 green-cooler)
(mail-3 yellow-warmer)
(mail-4 red-cooler)
(rainbow-0 yellow-warmer)
(rainbow-1 green-warmer)
(rainbow-2 magenta)
(rainbow-3 blue-warmer)
(rainbow-4 red)
(rainbow-5 green-cooler)
(rainbow-6 magenta-warmer)
(rainbow-7 cyan)
(rainbow-8 yellow))
"The `ef-autumn' palette.")
(ef-themes-theme ef-autumn ef-autumn-palette)
(provide-theme 'ef-autumn))
;;; ef-autumn-theme.el ends here
|