-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsculpture-themes.el
59 lines (42 loc) · 1.85 KB
/
sculpture-themes.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
;;; sculpture-themes.el --- Themes with vivid colors -*- lexical-binding: t; -*-
;; Copyright (C) 2024 Precompute
;; Author: Precompute <[email protected]>
;; URL: https://github.com/precompute/sculpture-theme
;; Created: January 06, 2021
;; Modified: April 24, 2024
;; Version: 1.5.1
;; Package-Requires: ((emacs "26.1"))
;; sculpture-theme-dark : A dark theme for emacs with vivid colors, inspired by
;; coloring pigments.
;; Copyright (C) 2024 Precompute
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This theme takes inspiration from the pigments found on
;; now bare Greco-Roman statues.
;; Monospace fonts are boring -- they make my eyes sore.
;;; Code:
(defgroup sculpture-themes-dark ()
"Group for sculpture-theme-dark."
:group 'sculpture-themes-dark-faces)
(defgroup sculpture-themes-pastel ()
"Group for sculpture-theme-pastel."
:group 'sculpture-themes-pastel-faces)
(defgroup sculpture-themes-light ()
"Group for sculpture-theme-light"
:group 'sculpture-themes-light-faces)
;;;###autoload
(add-to-list
;; Register this theme when it's loaded or when the buffer is evaluated:
'custom-theme-load-path
(if load-file-name (file-name-directory load-file-name) default-directory))
(provide 'sculpture-themes)
;;; sculpture-themes.el ends here