-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhyperstitional-themes-rebug-lawn-sere-theme.el
More file actions
48 lines (37 loc) · 1.8 KB
/
hyperstitional-themes-rebug-lawn-sere-theme.el
File metadata and controls
48 lines (37 loc) · 1.8 KB
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
;;; hyperstitional-themes-rebug-lawn-sere-theme.el --- Digital Bug -*- lexical-binding: t; -*-
;; Copyright (C) 2025 precompute
;; Author: precompute <git@precompute.net>
;; URL: https://github.com/precompute/hyperstitional-themes
;; Created: June 12, 2024
;; Modified: June 27, 2025
;; Version: 3.0.0
;; 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:
;; Digital Bug
;;; Code:
(require 'hyperstitional-themes)
(deftheme hyperstitional-themes-rebug-lawn-sere
"Digital Bug."
:background-mode 'light
:kind 'color-scheme
:family 'hyperstitional-themes-rebug-lawn)
(let* ((alphalist '(1.0 0.95 0.89 0.77 0.65 0.34 0.18))
(background "#cfcda4")
(r (hyperstitional-themes-generate-color-range "#C4111D" alphalist background))
(g (hyperstitional-themes-generate-color-range "#0064D3" alphalist background))
(b (hyperstitional-themes-generate-color-range "#835883" alphalist background))
(w (hyperstitional-themes-generate-color-range "#000000" alphalist background)))
(hyperstitional-themes-rebug-generate
'hyperstitional-themes-rebug-lawn-sere
r g b w background))
(provide-theme 'hyperstitional-themes-rebug-lawn-sere)
;;; hyperstitional-themes-rebug-lawn-sere-theme.el ends here