Create thankful-eyes-theme.el

This commit is contained in:
Andros Fenollosa 2025-02-28 11:00:56 +01:00 committed by GitHub
parent 197e9e645b
commit 8836bd0e14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

30
thankful-eyes-theme.el Normal file
View File

@ -0,0 +1,30 @@
(deftheme thankful-eyes "Thankful Eyes theme for Emacs")
(custom-theme-set-faces
'thankful-eyes
'(default ((t (:foreground "#faf6e4" :background "#122b3b"))))
'(cursor ((t (:background "#faf6e4"))))
'(fringe ((t (:background "#122b3b"))))
'(region ((t (:background "#4e5d62"))))
'(highlight ((t (:background "#4e5d62"))))
'(hl-line ((t (:background "#1c2f3b"))))
'(mode-line ((t (:foreground "#a8e1fe" :background "#1c2f3b"))))
'(mode-line-inactive ((t (:foreground "#6c8b9f" :background "#1c2f3b"))))
'(font-lock-comment-face ((t (:foreground "#6c8b9f" :slant italic))))
'(font-lock-comment-delimiter-face ((t (:foreground "#6c8b9f" :slant italic))))
'(font-lock-keyword-face ((t (:foreground "#f6dd62" :weight bold))))
'(font-lock-function-name-face ((t (:foreground "#a8e1fe" :weight bold))))
'(font-lock-variable-name-face ((t (:foreground "#faf6e4" :weight bold))))
'(font-lock-string-face ((t (:foreground "#fff0a6" :weight bold))))
'(font-lock-constant-face ((t (:foreground "#b2fd6d" :weight bold))))
'(font-lock-type-face ((t (:foreground "#b2fd6d" :weight bold))))
'(font-lock-builtin-face ((t (:foreground "#b2fd6d" :weight bold))))
'(font-lock-warning-face ((t (:foreground "#fefeec" :background "#cc0000" :weight bold))))
'(font-lock-preprocessor-face ((t (:foreground "#ffb000" :weight bold))))
'(link ((t (:foreground "#a8e1fe" :underline t))))
'(link-visited ((t (:foreground "#f696db" :underline t))))
'(isearch ((t (:foreground "#122b3b" :background "#f6dd62"))))
'(lazy-highlight ((t (:foreground "#122b3b" :background "#fff0a6"))))
'(error ((t (:foreground "#cc0000" :weight bold)))))
(provide-theme 'thankful-eyes)