summaryrefslogtreecommitdiff
path: root/etc/themes/wombat-theme.el
diff options
context:
space:
mode:
authorJim Porter <jporterbugs@gmail.com>2021-10-19 16:01:15 -0700
committerLars Ingebrigtsen <larsi@gnus.org>2021-10-20 10:28:19 +0200
commit1bb14f93f128b0e70e84b142d1b9a8ae1532a3ed (patch)
tree8a309f5a2572a4c7055395892ca22071b4d75191 /etc/themes/wombat-theme.el
parent8e7cd29712996a97a698ac666bdcf2aa8474e464 (diff)
downloademacs-1bb14f93f128b0e70e84b142d1b9a8ae1532a3ed.tar.gz
Convert ANSI color definitions in themes to use faces (e.g. 'ansi-color-red')
* etc/themes/dichromacy-theme.el: * etc/themes/leuven-theme.el: * etc/themes/misterioso-theme.el: * etc/themes/tango-theme.el: * etc/themes/tango-dark-theme.el: * etc/themes/wombat-theme.el: Convert ANSI color definitions to use faces.
Diffstat (limited to 'etc/themes/wombat-theme.el')
-rw-r--r--etc/themes/wombat-theme.el24
1 files changed, 18 insertions, 6 deletions
diff --git a/etc/themes/wombat-theme.el b/etc/themes/wombat-theme.el
index 922114fb64a..d769c337214 100644
--- a/etc/themes/wombat-theme.el
+++ b/etc/themes/wombat-theme.el
@@ -95,12 +95,24 @@ are included.")
`(message-header-subject ((,class (:foreground "#cae682"))))
`(message-header-to ((,class (:foreground "#cae682"))))
`(message-cited-text ((,class (:foreground "#99968b"))))
- `(message-separator ((,class (:foreground "#e5786d" :weight bold))))))
-
-(custom-theme-set-variables
- 'wombat
- '(ansi-color-names-vector ["#242424" "#e5786d" "#95e454" "#cae682"
- "#8ac6f2" "#333366" "#ccaa8f" "#f6f3e8"]))
+ `(message-separator ((,class (:foreground "#e5786d" :weight bold))))
+ ;; ANSI colors
+ `(ansi-color-black ((,class (:background "#242424" :foreground "#242424"))))
+ `(ansi-color-red ((,class (:background "#b85149" :foreground "#b85149"))))
+ `(ansi-color-green ((,class (:background "#92a65e" :foreground "#92a65e"))))
+ `(ansi-color-yellow ((,class (:background "#ccaa8f" :foreground "#ccaa8f"))))
+ `(ansi-color-blue ((,class (:background "#5b98c2" :foreground "#5b98c2"))))
+ `(ansi-color-magenta ((,class (:background "#64619a" :foreground "#64619a"))))
+ `(ansi-color-cyan ((,class (:background "#3f9f9e" :foreground "#3f9f9e"))))
+ `(ansi-color-white ((,class (:background "#f6f3e8" :foreground "#f6f3e8"))))
+ `(ansi-color-bright-black ((,class (:background "#444444" :foreground "#444444"))))
+ `(ansi-color-bright-red ((,class (:background "#e5786d" :foreground "#e5786d"))))
+ `(ansi-color-bright-green ((,class (:background "#95e454" :foreground "#95e454"))))
+ `(ansi-color-bright-yellow ((,class (:background "#edc4a3" :foreground "#edc4a3"))))
+ `(ansi-color-bright-blue ((,class (:background "#8ac6f2" :foreground "#8ac6f2"))))
+ `(ansi-color-bright-magenta ((,class (:background "#a6a1de" :foreground "#a6a1de"))))
+ `(ansi-color-bright-cyan ((,class (:background "#70cecc" :foreground "#70cecc"))))
+ `(ansi-color-bright-white ((,class (:background "#ffffff" :foreground "#ffffff"))))))
(provide-theme 'wombat)