mirror of
https://git.sr.ht/~ryuslash/yoshi-theme
synced 2025-01-31 11:25:51 +01:00
I just don't know what to say anymore
This commit is contained in:
parent
f53c549008
commit
e0eadf70f7
1 changed files with 62 additions and 64 deletions
118
yoshi-theme.el
118
yoshi-theme.el
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
;; Author: Tom Willemsen <tom@ryuslash.org>
|
;; Author: Tom Willemsen <tom@ryuslash.org>
|
||||||
;; Keywords: faces
|
;; Keywords: faces
|
||||||
;; Version: 5.5.1
|
;; Version: 5.6.0
|
||||||
|
|
||||||
;; This program is free software; you can redistribute it and/or modify
|
;; 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
|
;; it under the terms of the GNU General Public License as published by
|
||||||
|
@ -29,8 +29,8 @@
|
||||||
(deftheme yoshi
|
(deftheme yoshi
|
||||||
"Created 2012-09-24")
|
"Created 2012-09-24")
|
||||||
|
|
||||||
(let ((lblack "#ededed") (dblack "#111111")
|
(let ((lblack "#ededed") (mblack "#666666") (dblack "#111111")
|
||||||
(lwhite "#bfbfbf") (dwhite "#404040")
|
(lwhite "#bfbfbf") (mwhite "#999999") (dwhite "#404040")
|
||||||
(lred "#bf7d7d") (dred "#402929")
|
(lred "#bf7d7d") (dred "#402929")
|
||||||
(lorange "#bfa47d") (dorange "#403729")
|
(lorange "#bfa47d") (dorange "#403729")
|
||||||
(lyellow "#b2bf7d") (dyellow "#3b4029")
|
(lyellow "#b2bf7d") (dyellow "#3b4029")
|
||||||
|
@ -45,17 +45,17 @@
|
||||||
'yoshi
|
'yoshi
|
||||||
|
|
||||||
`(compilation-info ((t (:foreground ,lblue :inherit unspecified))))
|
`(compilation-info ((t (:foreground ,lblue :inherit unspecified))))
|
||||||
`(cursor ((t (:background ,lwhite))))
|
`(cursor ((t (:background ,mwhite))))
|
||||||
`(default ((t (:background ,dblack :foreground ,lwhite))))
|
`(default ((t (:background ,dblack :foreground ,lwhite))))
|
||||||
`(diff-added ((t (:background ,dgreen :inherit unspecified))))
|
`(diff-added ((t (:background ,dgreen :inherit unspecified))))
|
||||||
`(diff-changed ((t (:background ,dyellow))))
|
`(diff-changed ((t (:background ,dorange))))
|
||||||
`(diff-file-header ((t (:foreground ,lblue :background unspecified :weight bold))))
|
`(diff-file-header ((t (:foreground ,lblack :background unspecified))))
|
||||||
`(diff-function ((t (:slant italic :inherit unspecified :foreground ,lpurple))))
|
`(diff-function ((t (:inherit unspecified :foreground ,lorange))))
|
||||||
`(diff-header ((t (:background unspecified :foreground ,lcyan))))
|
`(diff-header ((t (:background ,dwhite))))
|
||||||
`(diff-hl-change ((t (:foreground ,lyellow :background unspecified :inherit diff-changed))))
|
`(diff-hl-change ((t (:foreground ,lyellow :background unspecified :inherit diff-changed))))
|
||||||
`(diff-hl-delete ((t (:foreground ,lred :inherit diff-removed))))
|
`(diff-hl-delete ((t (:foreground ,lred :inherit diff-removed))))
|
||||||
`(diff-hl-insert ((t (:foreground ,lgreen :inherit diff-added))))
|
`(diff-hl-insert ((t (:foreground ,lgreen :inherit diff-added))))
|
||||||
`(diff-hunk-header ((t (:foreground ,lturquoise :inherit unspecified :weight bold))))
|
`(diff-hunk-header ((t (:inherit unspecified :weight bold))))
|
||||||
`(diff-indicator-added ((t (:foreground ,lgreen :weight bold :inherit unspecified))))
|
`(diff-indicator-added ((t (:foreground ,lgreen :weight bold :inherit unspecified))))
|
||||||
`(diff-indicator-changed ((t (:foreground ,lyellow :weight bold :inherit unspecified ))))
|
`(diff-indicator-changed ((t (:foreground ,lyellow :weight bold :inherit unspecified ))))
|
||||||
`(diff-indicator-removed ((t (:foreground ,lred :weight bold :inherit unspecified))))
|
`(diff-indicator-removed ((t (:foreground ,lred :weight bold :inherit unspecified))))
|
||||||
|
@ -63,6 +63,12 @@
|
||||||
`(diff-refine-change ((t (:foreground ,lyellow :background unspecified))))
|
`(diff-refine-change ((t (:foreground ,lyellow :background unspecified))))
|
||||||
`(diff-refine-removed ((t (:foreground ,lred :background unspecified :inherit unspecified))))
|
`(diff-refine-removed ((t (:foreground ,lred :background unspecified :inherit unspecified))))
|
||||||
`(diff-removed ((t (:background ,dred :inherit unspecified))))
|
`(diff-removed ((t (:background ,dred :inherit unspecified))))
|
||||||
|
`(erc-current-nick-face ((t (:foreground ,lred :weight bold))))
|
||||||
|
`(erc-input-face ((t (:inherit shadow))))
|
||||||
|
`(erc-my-nick-face ((t (:inherit erc-current-nick-face))))
|
||||||
|
`(erc-notice-face ((t (:foreground ,lblue :weight normal))))
|
||||||
|
`(erc-prompt-face ((t (:foreground ,lblack :weight bold))))
|
||||||
|
`(erc-timestamp-face ((t (:foreground ,mwhite :weight normal))))
|
||||||
`(error ((t (:foreground ,lred :weight unspecified))))
|
`(error ((t (:foreground ,lred :weight unspecified))))
|
||||||
`(flycheck-error-face ((t (:inherit unspecified :underline (:color ,lred :style wave)))))
|
`(flycheck-error-face ((t (:inherit unspecified :underline (:color ,lred :style wave)))))
|
||||||
`(flycheck-warning-face ((t (:inherit unspecified :underline (:color ,lorange :style wave)))))
|
`(flycheck-warning-face ((t (:inherit unspecified :underline (:color ,lorange :style wave)))))
|
||||||
|
@ -72,10 +78,10 @@
|
||||||
`(flyspell-duplicate ((t (:inherit unspecified :underline (:color ,lorange :style wave)))))
|
`(flyspell-duplicate ((t (:inherit unspecified :underline (:color ,lorange :style wave)))))
|
||||||
`(flyspell-incorrect ((t (:inherit unspecified :underline (:color ,lred :style wave)))))
|
`(flyspell-incorrect ((t (:inherit unspecified :underline (:color ,lred :style wave)))))
|
||||||
`(font-lock-builtin-face ((t (:foreground ,lcyan))))
|
`(font-lock-builtin-face ((t (:foreground ,lcyan))))
|
||||||
`(font-lock-comment-delimiter-face ((t (:foreground ,lmagenta :weight bold :inherit unspecified))))
|
`(font-lock-comment-delimiter-face ((t (:foreground ,mwhite :weight bold :inherit unspecified))))
|
||||||
`(font-lock-comment-face ((t (:foreground ,lmagenta :slant italic))))
|
`(font-lock-comment-face ((t (:foreground ,mwhite :slant italic))))
|
||||||
`(font-lock-constant-face ((t (:foreground ,lred))))
|
`(font-lock-constant-face ((t (:foreground ,lred))))
|
||||||
`(font-lock-doc-face ((t (:foreground ,lgreen :inherit unspecified))))
|
`(font-lock-doc-face ((t (:foreground ,mwhite :inherit unspecified))))
|
||||||
`(font-lock-function-name-face ((t (:foreground ,lpurple))))
|
`(font-lock-function-name-face ((t (:foreground ,lpurple))))
|
||||||
`(font-lock-keyword-face ((t (:foreground ,lyellow))))
|
`(font-lock-keyword-face ((t (:foreground ,lyellow))))
|
||||||
`(font-lock-negation-char-face ((t (:foreground ,lred))))
|
`(font-lock-negation-char-face ((t (:foreground ,lred))))
|
||||||
|
@ -86,7 +92,7 @@
|
||||||
`(font-lock-variable-name-face ((t (:foreground ,lblue))))
|
`(font-lock-variable-name-face ((t (:foreground ,lblue))))
|
||||||
`(font-lock-warning-face ((t (:underline (:color ,lorange) :inherit unspecified))))
|
`(font-lock-warning-face ((t (:underline (:color ,lorange) :inherit unspecified))))
|
||||||
`(fringe ((t (:background unspecified :inherit default))))
|
`(fringe ((t (:background unspecified :inherit default))))
|
||||||
`(gnus-button ((t (:foreground ,lwhite :background ,dblue :box (:line-width 2 :color ,dblue :style released-button)))))
|
`(gnus-button ((t (:weight bold))))
|
||||||
`(gnus-cite-1 ((t (:foreground ,lred))))
|
`(gnus-cite-1 ((t (:foreground ,lred))))
|
||||||
`(gnus-cite-10 ((t (:foreground ,lpink))))
|
`(gnus-cite-10 ((t (:foreground ,lpink))))
|
||||||
`(gnus-cite-11 ((t (:foreground ,lblack))))
|
`(gnus-cite-11 ((t (:foreground ,lblack))))
|
||||||
|
@ -98,49 +104,25 @@
|
||||||
`(gnus-cite-7 ((t (:foreground ,lblue))))
|
`(gnus-cite-7 ((t (:foreground ,lblue))))
|
||||||
`(gnus-cite-8 ((t (:foreground ,lpurple))))
|
`(gnus-cite-8 ((t (:foreground ,lpurple))))
|
||||||
`(gnus-cite-9 ((t (:foreground ,lmagenta))))
|
`(gnus-cite-9 ((t (:foreground ,lmagenta))))
|
||||||
`(gnus-emphasis-highlight-words ((t (:foreground ,lblack :background ,dyellow))))
|
`(gnus-header-content ((t (:foreground ,mwhite :slant italic))))
|
||||||
`(gnus-group-mail-1 ((t (:foreground ,lblack :weight bold))))
|
`(gnus-header-from ((t (:weight bold))))
|
||||||
`(gnus-group-mail-1-empty ((t (:foreground ,lblack))))
|
`(gnus-header-name ((t (:foreground ,lblue :weight bold))))
|
||||||
`(gnus-group-mail-2 ((t (:foreground ,lblack :weight bold))))
|
`(gnus-header-newsgroups ((t (:foreground ,lblack :weight bold))))
|
||||||
`(gnus-group-mail-2-empty ((t (:foreground ,lblack))))
|
`(gnus-header-subject ((t (:foreground ,lyellow))))
|
||||||
`(gnus-group-mail-3 ((t (:foreground ,lblack :weight bold))))
|
`(gnus-signature ((t (:foreground ,mblack :slant italic))))
|
||||||
`(gnus-group-mail-3-empty ((t (:foreground ,lblack))))
|
|
||||||
`(gnus-group-mail-low ((t (:foreground ,lblack :weight bold))))
|
|
||||||
`(gnus-group-mail-low-empty ((t (:foreground ,lblack))))
|
|
||||||
`(gnus-group-news-1 ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-1-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-group-news-2 ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-2-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-group-news-3 ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-3-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-group-news-4 ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-4-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-group-news-5 ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-5-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-group-news-6 ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-6-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-group-news-low ((t (:foreground ,lwhite :weight bold))))
|
|
||||||
`(gnus-group-news-low-empty ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-header-content ((t (:foreground ,lblack :slant italic))))
|
|
||||||
`(gnus-header-name ((t (:foreground ,lpurple))))
|
|
||||||
`(gnus-header-subject ((t (:foreground ,lred))))
|
|
||||||
`(gnus-signature ((t (:foreground ,lblack :slant normal))))
|
|
||||||
`(gnus-splash ((t (:foreground ,lwhite))))
|
`(gnus-splash ((t (:foreground ,lwhite))))
|
||||||
`(gnus-summary-cancelled ((t (:foreground ,lblack :background unspecified :strike-through ,lblack))))
|
`(gnus-summary-cancelled ((t (:foreground ,lyellow :background ,dwhite))))
|
||||||
`(gnus-summary-high-ancient ((t (:foreground ,lyellow :weight bold))))
|
`(gnus-summary-high-ancient ((t (:inherit gnus-summary-normal-ancient :weight bold))))
|
||||||
`(gnus-summary-high-read ((t (:foreground ,lwhite :weight bold))))
|
`(gnus-summary-high-read ((t (:inherit gnus-summary-normal-read :weight bold))))
|
||||||
`(gnus-summary-high-ticked ((t (:foreground ,lblue :weight bold))))
|
`(gnus-summary-high-ticked ((t (:inherit gnus-summary-normal-ticked :weight bold))))
|
||||||
`(gnus-summary-high-undownloaded ((t (:foreground ,lred :weight bold))))
|
`(gnus-summary-high-unread ((t (:inherit gnus-summary-normal-unread :weight bold))))
|
||||||
`(gnus-summary-high-unread ((t (:foreground ,lblack :weight bold))))
|
`(gnus-summary-low-ancient ((t (:inherit gnus-summary-normal-ancient :slant italic))))
|
||||||
`(gnus-summary-low-ancient ((t (:foreground ,lyellow :slant italic))))
|
`(gnus-summary-low-read ((t (:inherit gnus-summary-normal-read :slant italic))))
|
||||||
`(gnus-summary-low-read ((t (:foreground ,lwhite :slant italic))))
|
`(gnus-summary-low-ticked ((t (:inherit gnus-summary-normal-ticked :slant italic))))
|
||||||
`(gnus-summary-low-ticked ((t (:foreground ,lblue :slant italic))))
|
`(gnus-summary-low-unread ((t (:inherit gnus-summary-normal-unread :slant italic))))
|
||||||
`(gnus-summary-low-undownloaded ((t (:foreground ,lred :slant italic))))
|
`(gnus-summary-normal-ancient ((t (:foreground ,lcyan))))
|
||||||
`(gnus-summary-low-unread ((t (:foreground ,lblack :slant italic))))
|
`(gnus-summary-normal-read ((t (:foreground ,lgreen))))
|
||||||
`(gnus-summary-normal-ancient ((t (:foreground ,lyellow))))
|
`(gnus-summary-normal-ticked ((t (:foreground ,lred))))
|
||||||
`(gnus-summary-normal-read ((t (:foreground ,lwhite))))
|
|
||||||
`(gnus-summary-normal-ticked ((t (:foreground ,lblue))))
|
|
||||||
`(gnus-summary-normal-undownloaded ((t (:foreground ,lred))))
|
|
||||||
`(gnus-summary-normal-unread ((t (:foreground ,lblack))))
|
`(gnus-summary-normal-unread ((t (:foreground ,lblack))))
|
||||||
`(gnus-summary-selected ((t (:background ,dblue :weight bold))))
|
`(gnus-summary-selected ((t (:background ,dblue :weight bold))))
|
||||||
`(highlight ((t (:background ,dwhite ))))
|
`(highlight ((t (:background ,dwhite ))))
|
||||||
|
@ -150,15 +132,22 @@
|
||||||
`(identica-username-face ((t (:foreground ,lblue :weight bold :underline unspecified))))
|
`(identica-username-face ((t (:foreground ,lblue :weight bold :underline unspecified))))
|
||||||
`(ido-subdir ((t (:foreground ,lred))))
|
`(ido-subdir ((t (:foreground ,lred))))
|
||||||
`(italic ((t (:slant italic))))
|
`(italic ((t (:slant italic))))
|
||||||
|
`(jabber-activity-face ((t (:foreground ,lred :weight unspecified))))
|
||||||
|
`(jabber-activity-personal-face ((t (:foreground ,lblue :weight unspecified))))
|
||||||
|
`(jabber-chat-error ((t (:foreground ,lred :weight bold))))
|
||||||
`(jabber-chat-prompt-foreign ((t (:foreground ,lred :slant italic))))
|
`(jabber-chat-prompt-foreign ((t (:foreground ,lred :slant italic))))
|
||||||
`(jabber-chat-prompt-local ((t (:foreground ,lblue :slant italic))))
|
`(jabber-chat-prompt-local ((t (:foreground ,lblue :slant italic))))
|
||||||
`(jabber-chat-prompt-system ((t (:foreground ,lgreen :slant italic))))
|
`(jabber-chat-prompt-system ((t (:foreground ,lgreen :slant italic))))
|
||||||
`(jabber-rare-time-face ((t (:foreground ,lwhite :underline t))))
|
`(jabber-rare-time-face ((t (:foreground ,lwhite :underline t))))
|
||||||
`(jabber-roster-user-away ((t (:foreground ,lgreen :slant italic))))
|
`(jabber-roster-user-away ((t (:foreground ,lgreen :slant italic))))
|
||||||
`(jabber-roster-user-chatty ((t (:foreground ,lpink))))
|
`(jabber-roster-user-chatty ((t (:foreground ,lpink))))
|
||||||
`(jabber-roster-user-error ((t (:foreground ,lred :slant italic))))
|
`(jabber-roster-user-dnd ((t (:foreground ,lred :weight unspecified :slant unspecified))))
|
||||||
`(jabber-roster-user-offline ((t (:foreground ,lblack :slant italic))))
|
`(jabber-roster-user-error ((t (:foreground ,lred :slant unspecified :weight bold))))
|
||||||
|
`(jabber-roster-user-offline ((t (:foreground ,mwhite :slant italic))))
|
||||||
`(jabber-roster-user-online ((t (:foreground ,lblue))))
|
`(jabber-roster-user-online ((t (:foreground ,lblue))))
|
||||||
|
`(jabber-roster-user-xa ((t (:foreground ,lmagenta))))
|
||||||
|
`(isearch ((t (:background ,dyellow :foreground unspecified))))
|
||||||
|
`(isearch-fail ((t (:background ,dred))))
|
||||||
`(js2-external-variable ((t (:foreground ,lmagenta))))
|
`(js2-external-variable ((t (:foreground ,lmagenta))))
|
||||||
`(link ((t (:foreground ,lorange :underline t))))
|
`(link ((t (:foreground ,lorange :underline t))))
|
||||||
`(link-visited ((t (:foreground ,lmagenta :underline t))))
|
`(link-visited ((t (:foreground ,lmagenta :underline t))))
|
||||||
|
@ -172,6 +161,15 @@
|
||||||
`(markdown-header-face-4 ((t (:inherit org-level-4))))
|
`(markdown-header-face-4 ((t (:inherit org-level-4))))
|
||||||
`(markdown-header-face-5 ((t (:inherit org-level-5))))
|
`(markdown-header-face-5 ((t (:inherit org-level-5))))
|
||||||
`(markdown-header-face-6 ((t (:inherit org-level-6))))
|
`(markdown-header-face-6 ((t (:inherit org-level-6))))
|
||||||
|
`(message-header-cc ((t (:foreground ,mwhite))))
|
||||||
|
`(message-header-name ((t (:inherit gnus-header-name))))
|
||||||
|
`(message-header-newsgroups ((t (:foreground ,mwhite :weight bold))))
|
||||||
|
`(message-header-other ((t (:inherit gnus-header-content))))
|
||||||
|
`(message-header-subject ((t (:inherit gnus-header-subject))))
|
||||||
|
`(message-header-to ((t (:foreground ,mwhite :weight bold))))
|
||||||
|
`(message-header-xheader ((t (:foreground ,mblack))))
|
||||||
|
`(message-mml ((t (:foreground ,lgreen))))
|
||||||
|
`(message-separator ((t (:foreground ,lblue))))
|
||||||
`(minibuffer-prompt ((t (:foreground ,lblue))))
|
`(minibuffer-prompt ((t (:foreground ,lblue))))
|
||||||
`(mode-line ((t (:background ,dblue :foreground ,lblack :box (:color ,dwhite :line-width 1 :style nil)))))
|
`(mode-line ((t (:background ,dblue :foreground ,lblack :box (:color ,dwhite :line-width 1 :style nil)))))
|
||||||
`(mode-line-buffer-id ((t (:foreground ,lpurple :weight bold))))
|
`(mode-line-buffer-id ((t (:foreground ,lpurple :weight bold))))
|
||||||
|
@ -228,7 +226,7 @@
|
||||||
`(rst-level-5 ((t (:background unspecified))))
|
`(rst-level-5 ((t (:background unspecified))))
|
||||||
`(rst-level-6 ((t (:background unspecified))))
|
`(rst-level-6 ((t (:background unspecified))))
|
||||||
`(sh-heredoc ((t (:foreground ,lorange))))
|
`(sh-heredoc ((t (:foreground ,lorange))))
|
||||||
`(shadow ((t (:foreground ,dwhite))))
|
`(shadow ((t (:foreground ,mwhite))))
|
||||||
`(show-paren-match ((t (:background ,dwhite :weight bold))))
|
`(show-paren-match ((t (:background ,dwhite :weight bold))))
|
||||||
`(show-paren-mismatch ((t (:background unspecified :foreground ,lred))))
|
`(show-paren-mismatch ((t (:background unspecified :foreground ,lred))))
|
||||||
`(slime-repl-input-face ((t (:foreground ,lblack))))
|
`(slime-repl-input-face ((t (:foreground ,lblack))))
|
||||||
|
@ -252,14 +250,14 @@
|
||||||
(custom-theme-set-variables
|
(custom-theme-set-variables
|
||||||
'yoshi
|
'yoshi
|
||||||
'(rainbow-delimiters-max-face-count 10)
|
'(rainbow-delimiters-max-face-count 10)
|
||||||
`(fci-rule-color ,dred)))
|
`(fci-rule-color ,dred))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(and load-file-name
|
(and load-file-name
|
||||||
(boundp 'custom-theme-load-path)
|
(boundp 'custom-theme-load-path)
|
||||||
(add-to-list 'custom-theme-load-path
|
(add-to-list 'custom-theme-load-path
|
||||||
(file-name-as-directory
|
(file-name-as-directory
|
||||||
(file-name-directory load-file-name))))
|
(file-name-directory load-file-name)))))
|
||||||
|
|
||||||
(provide-theme 'yoshi)
|
(provide-theme 'yoshi)
|
||||||
;;; yoshi-theme.el ends here
|
;;; yoshi-theme.el ends here
|
||||||
|
|
Loading…
Reference in a new issue