(defgroup eziam-theme nil
"Customization options for the Eziam theme family."
:group 'eziam
:group 'faces)
(defcustom eziam-scale-headings t
"Non-nil means eziam-theme is allowed to customize the height of outline headlines."
:type 'boolean
:group 'eziam-theme)
(defcustom eziam-scale-other t
"Non-nil means eziam-theme is allowed to customize the height of non-outline headlines faces."
:type 'boolean
:group 'eziam-theme)
(defcustom eziam-heading-style 'classic
"Default style for headings.
Accepted values are:
- 'classic, the classic Eziam look.
- 'gray-blocks, scaled gray blocks organized by brightness.
Appearance for specific modes are controlled with dedicated variables whose names match `eziam-*-heading-style'.")
(defcustom eziam-latex-heading-style nil
"Style for outline-(minor)-mode headings. See `eziam-heading-style' for legal values.")
(defcustom eziam-markdown-heading-style nil
"Style for markdown-mode headings. See `eziam-heading-style' for legal values.")
(defcustom eziam-org-heading-style nil
"Style for Org-Mode headings. See `eziam-heading-style' for legal values.")
(defcustom eziam-outline-heading-style nil
"Style for outline-(minor)-mode headings. See `eziam-heading-style' for legal values.")
(defcustom eziam-outshine-heading-style nil
"Style for Outshine headings. See `eziam-heading-style' for legal values.")
(defcustom eziam-color-comments nil
"If non-nil, comments will be rendered in a non-neutral color. I like this better.")
(defun eziam--heading-height (height)
"Return HEIGHT if EZIAM-SCALE-HEADINGS is non-nil."
(if eziam-scale-headings
height
1.0))
(defun eziam--other-height (height)
"Return HEIGHT if EZIAM-SCALE-OTHER is non-nil."
(if eziam-scale-other
height
1.0))
(defmacro eziam-with-color-variables (eziam-colors &rest body)
"`let' bind all colors defined in EZIAM-COLORS around BODY.
Also bind `class' to ((class color) (min-colors 89))."
(declare (indent 0))
`(let ((class '((class color) (min-colors 89)))
,@(mapcar (lambda (c)
(list (intern (car c)) (cdr c)))
eziam-colors))
,@body))
(defun eziam-apply-custom-theme (theme-name)
"Apply the Eziam theme faces under the name THEME-NAME.
;;;; Faces
This function should not be called directly, but wrapped in a let
block using `eziam-with-color-variables'."
(let ((class '((class color) (min-colors 256)))
(ol-classic-1 `(:height ,(eziam--heading-height 1.8) :foreground ,ol1-fg :background ,ol1-bg :weight bold :overline t))
(ol-classic-2 `(:height ,(eziam--heading-height 1.5) :foreground ,ol2-fg :background ,ol2-bg :overline t ))
(ol-classic-3 `(:height ,(eziam--heading-height 1.2) :foreground ,ol3-fg :background ,ol3-bg :weight bold :overline t ))
(ol-classic-4 `(:height ,(eziam--heading-height 1.0) :foreground ,ol4-fg :background ,ol4-bg :overline t))
(ol-classic-5 `(:height ,(eziam--heading-height 1.0) :foreground ,ol5-fg :background ,ol5-bg :overline t :weight bold))
(ol-classic-6 `(:height ,(eziam--heading-height 1.0) :foreground ,ol6-fg :background ,ol6-bg :underline t :overline t :weight bold))
(ol-classic-7 `(:height ,(eziam--heading-height 1.0) :foreground ,ol7-fg :background ,ol7-bg :underline t :weight bold :slant italic))
(ol-classic-8 `(:height ,(eziam--heading-height 1.0) :foreground ,ol8-fg :background ,ol8-bg :underline t :slant italic))
(ol-gray-blocks-1 `(:background ,color-6 :height ,(eziam--heading-height 1.6) :foreground ,color-1 :distant-foreground ,color-7 :weight normal :slant normal :overline nil :underline nil :box ,color-4))
(ol-gray-blocks-2 `(:background ,color-5 :height ,(eziam--heading-height 1.4) :foreground ,color-1 :distant-foreground ,color-7 :weight normal :slant normal :overline nil :underline nil :box nil))
(ol-gray-blocks-3 `(:background ,color-4 :height ,(eziam--heading-height 1.2) :foreground ,color-7 :distant-foreground ,color-7 :weight normal :slant normal :overline nil :underline nil :box nil))
(ol-gray-blocks-4 `(:background ,color-3 :height ,(eziam--heading-height 1.0) :foreground ,color-7 :distant-foreground ,color-7 :weight normal :slant italic :overline nil :underline ,color-5 :box nil))
(ol-gray-blocks-5 `(:background ,color-2 :height ,(eziam--heading-height 1.0) :foreground ,color-7 :distant-foreground ,color-7 :weight bold :slant normal :overline nil :underline ,color-5 :box nil))
(ol-gray-blocks-6 `(:background ,color-1 :height ,(eziam--heading-height 1.0) :foreground ,color-7 :distant-foreground ,color-7 :weight normal :slant normal :overline nil :underline ,color-7 :box nil))
(ol-gray-blocks-7 `(:background ,color-1 :height ,(eziam--heading-height 1.0) :foreground ,color-6 :distant-foreground ,color-7 :weight normal :slant italic :overline nil :underline ,color-7 :box nil))
(ol-gray-blocks-8 `(:background ,color-0 :height ,(eziam--heading-height 1.0) :foreground ,color-7 :distant-foreground ,color-7 :weight normal :slant italic :overline nil :underline nil :box nil))
(latex-heading-style (or eziam-latex-heading-style eziam-heading-style))
(markdown-heading-style (or eziam-markdown-heading-style eziam-heading-style))
(outline-heading-style (or eziam-outline-heading-style eziam-heading-style))
(org-heading-style (or eziam-org-heading-style eziam-heading-style))
(outshine-heading-style (or eziam-outshine-heading-style eziam-heading-style))
(transient-highlight `(:background ,transient-highlight :foreground ,transient-highlight-fg))
(info-text `(:underline (:color ,info :style wave)))
(warning-text `(:underline (:color ,warning :style wave)))
(error-text `(:underline (:color ,error :style wave)))
(button-on `(:background ,color-0 :foreground ,color-7 :overline ,color-4 :weight bold))
(button-off `(:background ,color-2 :foreground ,color-7 :overline ,color-4)))
(custom-theme-set-faces
theme-name
`(bold ((t (:weight bold))))
`(default ((t (:foreground ,color-8 :background ,color-1))))
`(button ((t (:underline t))))
`(link ((t (:foreground ,color-8 :underline t :weight bold))))
`(link-visited ((t (:foreground ,color-8 :underline t :weight normal))))
`(hl-paren-face ((t (:foreground ,color-8 :background ,color-1 :weight bold))))
`(cursor ((t (:foreground ,color-8 :background ,color-8))))
`(escape-glyph ((t (:foreground ,color-8 :bold t))))
`(fringe ((t (:foreground ,color-4 :background ,color-2))))
`(header-line ((t (:inherit mode-line))))
`(highlight ((t (:background ,color-3))))
`(region ((t (:background ,color-6 :foreground ,color-1))))
`(shadow ((t (:foreground ,color-3))))
`(success ((t (:foreground ,color-6 :weight bold))))
`(warning ((t (:foreground ,color-8 :weight bold))))
`(compilation-column-face ((t (:foreground ,color-8))))
`(compilation-enter-directory-face ((t (:foreground ,color-6))))
`(compilation-error-face ((t (:foreground ,color-6 :weight bold :underline t))))
`(compilation-face ((t (:foreground ,color-8))))
`(compilation-info-face ((t (:foreground ,color-8))))
`(compilation-info ((t (:foreground ,color-8 :underline t))))
`(compilation-leave-directory-face ((t (:foreground ,color-6))))
`(compilation-line-face ((t (:foreground ,color-8))))
`(compilation-line-number ((t (:foreground ,color-8))))
`(compilation-message-face ((t (:foreground ,color-8))))
`(compilation-warning-face ((t (:foreground ,color-8 :weight bold :underline t))))
`(compilation-mode-line-exit ((t (:foreground ,color-8 :weight bold))))
`(compilation-mode-line-fail ((t (:foreground ,color-7 :weight bold))))
`(compilation-mode-line-run ((t (:foreground ,color-8 :weight bold))))
`(line-number ((t (:background ,color-2 :foreground ,color-4))))
`(line-number-current-line ((t (:background ,color-1 :foreground ,color-6))))
`(line-number-major-tick ((t (:background ,color-2 :foreground ,color-6 :weight bold))))
`(line-number-minor-tick ((t (:background ,color-2 :foreground ,color-5 :weight bold))))
`(linum ((t (:inherit line-number))))
`(linum-relative-current-face ((t (:inherit line-number-current-line))))
`(grep-context-face ((t (:foreground ,color-8))))
`(grep-error-face ((t (:foreground ,color-6 :weight bold :underline t))))
`(grep-hit-face ((t (:foreground ,color-8))))
`(grep-match-face ((t (:foreground ,color-8 :weight bold))))
`(match ((t (:background ,color-1 :foreground ,color-8 :weight bold))))
`(haskell-literate-comment-face ((t :background ,(if eziam-color-comments colored-comments color-0))))
`(haskell-operator-face ((t (:background ,color-0))))
`(ivy-current-match
((t (:background ,color-8 :foreground ,color-0 :weight bold))))
`(makefile-space ((t (:background ,color-1))))
`(makefile-targets ((t (:underline t))))
`(makefile-shell ((t (:slant italic))))
`(isearch ((,class ,transient-highlight)))
`(isearch-fail ((t (:foreground ,color-8 :background ,color-4))))
`(lazy-highlight ((t (:foreground ,color-8 :weight bold :background ,color-2))))
`(menu ((t (:foreground ,color-8 :background ,color-1))))
`(minibuffer-prompt ((t (:foreground ,color-8 :color ,color-1))))
`(mode-line ((t (:foreground ,color-1 :background ,color-6 :box nil ))))
`(mode-line-inactive ((t (:foreground ,color-1 :background ,color-4 :box nil ))))
`(mode-line-buffer-id ((t (:foreground ,color-1 :weight bold))))
`(secondary-selection ((t (:background ,color-1))))
`(cua-rectangle ((t (:background ,color-1))))
`(trailing-whitespace ((t (:background ,color-7))))
`(vertical-border ((t (:foreground ,color-4 :background ,color-1))))
`(font-lock-builtin-face ((t (:foreground ,color-7 :weight bold))))
`(font-lock-comment-face ((t (:foreground ,(if eziam-color-comments colored-comments color-5) :slant italic))))
`(font-lock-delimiter-face ((t (:foreground ,color-5 :slant italic))))
`(font-lock-constant-face ((t (:foreground ,color-5 :weight bold))))
`(font-lock-doc-face ((t (:foreground ,(if eziam-color-comments colored-comments color-5)))))
`(font-lock-function-name-face ((t (:background ,color-0 :overline ,color-2 :underline ,color-2 :slant italic))))
`(font-lock-keyword-face ((t (:foreground ,color-8 :weight bold))))
`(font-lock-negation-char-face ((t (:foreground ,color-8 :weight bold))))
`(font-lock-preprocessor-face ((t (:foreground ,color-8))))
`(font-lock-regexp-grouping-construct ((t (:foreground ,color-8 :weight bold))))
`(font-lock-regexp-grouping-backslash ((t (:foreground ,color-6 :weight bold))))
`(font-lock-string-face ((t (:foreground ,color-6))))
`(font-lock-type-face ((t (:foreground ,color-7 :underline t))))
`(font-lock-variable-name-face ((t (:foreground ,color-7 :slant italic))))
`(font-lock-warning-face ((t (:foreground ,warning :weight bold))))
`(c-annotation-face ((t (:inherit font-lock-constant-face))))
`(newsticker-date-face ((t (:foreground ,color-8))))
`(newsticker-default-face ((t (:foreground ,color-8))))
`(newsticker-enclosure-face ((t (:foreground ,color-8))))
`(newsticker-extra-face ((t (:foreground ,color-4 :height ,(eziam--other-height 0.8))))) `(newsticker-feed-face ((t (:foreground ,color-8))))
`(newsticker-immortal-item-face ((t (:foreground ,color-6))))
`(newsticker-new-item-face ((t (:foreground ,color-8))))
`(newstickerphone-obsolete-item-face ((t (:foreground ,color-7))))
`(newsticker-old-item-face ((t (:foreground ,color-5))))
`(newsticker-statistics-face ((t (:foreground ,color-8))))
`(newsticker-treeview-face ((t (:foreground ,color-8))))
`(newsticker-treeview-immortal-face ((t (:foreground ,color-6))))
`(newsticker-treeview-listwindow-face ((t (:foreground ,color-8))))
`(newsticker-treeview-new-face ((t (:foreground ,color-8 :weight bold))))
`(newsticker-treeview-obsolete-face ((t (:foreground ,color-7))))
`(newsticker-treeview-old-face ((t (:foreground ,color-5))))
`(newsticker-treeview-selection-face ((t (:background ,color-1 :foreground ,color-8))))
`(highlight-symbol-face ((t (:background ,color-1))))
`(ace-jump-face-background ((t (:foreground ,color-3 :background ,color-1 :inverse-video nil))))
`(ace-jump-face-foreground ((t (:foreground ,color-8 :background ,color-1 :inverse-video nil))))
`(anzu-mode-line ((t (:foreground ,color-8 :weight bold))))
`(ack-separator ((t (:foreground ,color-8))))
`(ack-file ((t (:foreground ,color-8))))
`(ack-line ((t (:foreground ,color-8))))
`(ack-match ((t (:foreground ,color-8 :background ,color-1 :weight bold))))
`(font-latex-bold-face ((t (:inherit bold))))
`(font-latex-warning-face ((t (:foreground nil :inherit font-lock-warning-face))))
`(font-latex-sectioning-5-face ((t (:foreground ,color-7 :weight bold ))))
`(font-latex-sedate-face ((t (:foreground ,color-8))))
`(font-latex-italic-face ((t (:foreground ,color-8 :slant italic))))
`(font-latex-string-face ((t (:inherit ,font-lock-string-face))))
`(font-latex-math-face ((t (:foreground ,color-8))))
`(font-latex-sectioning-0-face ((t ,(eval (intern (format "ol-%s-%s" latex-heading-style 1))))))
`(font-latex-sectioning-1-face ((t ,(eval (intern (format "ol-%s-%s" latex-heading-style 2))))))
`(font-latex-sectioning-2-face ((t ,(eval (intern (format "ol-%s-%s" latex-heading-style 3))))))
`(font-latex-sectioning-3-face ((t ,(eval (intern (format "ol-%s-%s" latex-heading-style 4))))))
`(font-latex-sectioning-4-face ((t ,(eval (intern (format "ol-%s-%s" latex-heading-style 5))))))
`(font-latex-sectioning-5-face ((t ,(eval (intern (format "ol-%s-%s" latex-heading-style 6))))))
`(ac-candidate-face ((t (:background ,color-5 :foreground ,color-1 :underline nil))))
`(ac-selection-face ((t (:background ,color-4 :foreground ,color-8 :underline nil))))
`(ac-yasnippet-candidate-face ((t (:background ,color-5 :foreground ,color-1))))
`(ac-yasnippet-selection-face ((t (:background ,color-4 :foreground ,color-8))))
`(ac-slime-menu-face ((t (:background ,color-5 :foreground ,color-1))))
`(ac-slime-selection-face ((t (:background ,color-4 :foreground ,color-8))))
`(ac-gtags-candidate-face ((t (:background ,color-5 :foreground ,color-1))))
`(ac-gtags-selection-face ((t (:background ,color-4 :foreground ,color-8))))
`(ac-emmet-candidate-face ((t (:background ,color-5 :foreground ,color-1))))
`(ac-emmet-selection-face ((t (:background ,color-4 :foreground ,color-8))))
`(auto-dim-other-buffers-face ((t (:background ,color-2))))
`(popup-tip-face ((t (:background ,color-8 :foreground ,color-1))))
`(popup-scroll-bar-foreground-face ((t (:background ,color-3))))
`(popup-scroll-bar-background-face ((t (:background ,color-1))))
`(popup-isearch-match ((t (:background ,color-1 :foreground ,color-8))))
`(android-mode-debug-face ((t (:foreground ,color-7))))
`(android-mode-error-face ((t (:foreground ,color-8 :weight bold))))
`(android-mode-info-face ((t (:foreground ,color-8))))
`(android-mode-verbose-face ((t (:foreground ,color-6))))
`(android-mode-warning-face ((t (:foreground ,color-8))))
`(bm-face ((t (:background ,color-8 :foreground ,color-2))))
`(bm-fringe-face ((t (:background ,color-1 :foreground ,color-1))))
`(bm-fringe-persistent-face ((t (:background ,color-1 :foreground ,color-1))))
`(bm-persistent-face ((t (:background ,color-5 :foreground ,color-2))))
`(clojure-test-failure-face ((t (:foreground ,color-8 :weight bold :underline t))))
`(clojure-test-error-face ((t (:foreground ,color-7 :weight bold :underline t))))
`(clojure-test-success-face ((t (:foreground ,color-7 :weight bold :underline t))))
`(coq-solve-tactics-face ((t (:foreground nil :inherit font-lock-constant-face))))
`(ctbl:face-cell-select ((t (:background ,color-8 :foreground ,color-2))))
`(ctbl:face-continue-bar ((t (:background ,color-1 :foreground ,color-2))))
`(ctbl:face-row-select ((t (:background ,color-8 :foreground ,color-2))))
`(diff-added ((,class (:foreground ,color-8 :background nil)) (t (:foreground ,color-5 :background nil))))
`(diff-changed ((t (:foreground ,color-8))))
`(diff-removed ((,class (:foreground ,color-7 :background nil)) (t (:foreground ,color-5 :background nil))))
`(diff-refine-added ((t :inherit diff-added :weight bold)))
`(diff-refine-change ((t :inherit diff-changed :weight bold)))
`(diff-refine-removed ((t :inherit diff-removed :weight bold)))
`(diff-header ((,class (:background ,color-4)) (t (:background ,color-8 :foreground ,color-2))))
`(diff-file-header ((,class (:background ,color-4 :foreground ,color-8 :bold t)) (t (:background ,color-8 :foreground ,color-2 :bold t))))
`(dired-directory ((t (:foreground ,color-8 :bold t))))
`(diredp-display-msg ((t (:foreground ,color-8))))
`(diredp-compressed-file-suffix ((t (:foreground ,color-8))))
`(diredp-date-time ((t (:foreground ,color-7))))
`(diredp-deletion ((t (:foreground ,color-8))))
`(diredp-deletion-file-name ((t (:foreground ,color-7))))
`(diredp-dir-heading ((t (:foreground ,color-8 :background ,color-1 :bold t))))
`(diredp-dir-priv ((t (:foreground ,color-8 :bold t))))
`(diredp-dir-name ((t (:foreground ,color-8 :bold t))))
`(diredp-exec-priv ((t (:foreground ,color-7))))
`(diredp-executable-tag ((t (:foreground ,color-7))))
`(diredp-file-name ((t (:foreground ,color-8))))
`(diredp-file-suffix ((t (:foreground ,color-8 :bold t))))
`(diredp-flag-mark ((t (:foreground ,color-8))))
`(diredp-flag-mark-line ((t (:foreground ,color-8))))
`(diredp-ignored-file-name ((t (:foreground ,color-3))))
`(diredp-link-priv ((t (:foreground ,color-8))))
`(diredp-mode-line-flagged ((t (:foreground ,color-8))))
`(diredp-mode-line-marked ((t (:foreground ,color-8))))
`(diredp-no-priv ((t (:foreground ,color-8))))
`(diredp-number ((t (:foreground ,color-7))))
`(diredp-other-priv ((t (:foreground ,color-8))))
`(diredp-rare-priv ((t (:foreground ,color-6))))
`(diredp-read-priv ((t (:foreground ,color-5))))
`(diredp-symlink ((t (:foreground ,color-8))))
`(diredp-write-priv ((t (:foreground ,color-7))))
`(ediff-current-diff-A ((t (:foreground ,color-8 :background ,color-4))))
`(ediff-current-diff-Ancestor ((t (:foreground ,color-8 :background ,color-4))))
`(ediff-current-diff-B ((t (:foreground ,color-8 :background ,color-5))))
`(ediff-current-diff-C ((t (:foreground ,color-8 :background ,color-3))))
`(ediff-even-diff-A ((t (:background ,color-3))))
`(ediff-even-diff-Ancestor ((t (:background ,color-3))))
`(ediff-even-diff-B ((t (:background ,color-3))))
`(ediff-even-diff-C ((t (:background ,color-3))))
`(ediff-fine-diff-A ((t (:foreground ,color-8 :background ,color-6 :weight bold))))
`(ediff-fine-diff-Ancestor ((t (:foreground ,color-8 :background ,color-6 :weight bold))))
`(ediff-fine-diff-B ((t (:foreground ,color-8 :background ,color-6 :weight bold))))
`(ediff-fine-diff-C ((t (:foreground ,color-8 :background ,color-5 :weight bold ))))
`(ediff-odd-diff-A ((t (:background ,color-4))))
`(ediff-odd-diff-Ancestor ((t (:background ,color-4))))
`(ediff-odd-diff-B ((t (:background ,color-4))))
`(ediff-odd-diff-C ((t (:background ,color-4))))
`(ert-test-result-expected ((t (:foreground ,color-8 :background ,color-1))))
`(ert-test-result-unexpected ((t (:foreground ,color-7 :background ,color-1))))
`(eshell-prompt ((t (:foreground ,color-8 :weight bold))))
`(eshell-ls-archive ((t (:foreground ,color-6 :weight bold))))
`(eshell-ls-backup ((t (:inherit font-lock-comment-face))))
`(eshell-ls-clutter ((t (:inherit font-lock-comment-face))))
`(eshell-ls-directory ((t (:foreground ,color-8 :weight bold))))
`(eshell-ls-executable ((t (:foreground ,color-8 :weight bold))))
`(eshell-ls-unreadable ((t (:foreground ,color-8))))
`(eshell-ls-missing ((t (:inherit font-lock-warning-face))))
`(eshell-ls-product ((t (:inherit font-lock-doc-face))))
`(eshell-ls-special ((t (:foreground ,color-8 :weight bold))))
`(eshell-ls-symlink ((t (:foreground ,color-8 :weight bold))))
`(flx-highlight-face ((t (:foreground ,color-8 :weight bold))))
`(flycheck-error ((,class ,error-text)))
`(flycheck-warning ((,class ,warning-text)))
`(flycheck-info ((,class ,info-text)))
`(flycheck-info ((t (:underline (:color ,info)))))
`(flycheck-fringe-error ((t (:foreground ,error))))
`(flycheck-error-list-error ((t (:foreground ,error))))
`(flycheck-fringe-warning ((t (:foreground ,warning))))
`(flycheck-error-list-warning ((t (:foreground ,warning))))
`(flycheck-fringe-info ((t (:foreground ,info))))
`(flycheck-error-list-info ((t (:foreground ,info))))
`(flymake-error ((,class ,error-text)))
`(flymake-warning ((,class ,warning-text)))
`(flymake-note ((,class ,info-text)))
`(flyspell-duplicate ((,class ,warning-text)))
`(flyspell-incorrect ((,class ,error-text)))
`(erc-action-face ((t (:inherit erc-default-face))))
`(erc-bold-face ((t (:weight bold))))
`(erc-current-nick-face ((t (:inverse-video t :weight bold))))
`(erc-dangerous-host-face ((t (:inherit font-lock-warning-face))))
`(erc-default-face ((t (:foreground ,color-8))))
`(erc-direct-msg-face ((t (:inherit erc-default))))
`(erc-error-face ((t (:inherit font-lock-warning-face))))
`(erc-fool-face ((t (:inherit erc-default))))
`(erc-highlight-face ((t (:inherit hover-highlight))))
`(erc-input-face ((t (:foreground ,color-8))))
`(erc-keyword-face ((t (:foreground ,color-8 :weight bold))))
`(erc-nick-default-face ((t (:foreground ,color-8 :weight bold))))
`(erc-my-nick-face ((t (:foreground ,color-7 :weight bold))))
`(erc-nick-msg-face ((t (:inherit erc-default))))
`(erc-notice-face ((t (:foreground ,color-6))))
`(erc-pal-face ((t (:foreground ,color-8 :weight bold))))
`(erc-prompt-face ((t (:foreground ,color-8 :background ,color-1 :weight bold))))
`(erc-timestamp-face ((t (:foreground ,color-8))))
`(erc-underline-face ((t (:underline t))))
`(git-gutter:added ((t (:background ,color-1 :foreground ,color-1 :weight bold ))))
`(git-gutter:deleted ((t (:background ,color-1 :foreground ,color-1 :weight bold ))))
`(git-gutter:modified ((t (:background ,color-1 :foreground ,color-1 :weight bold ))))
`(git-gutter:unchanged ((t (:background ,color-1 :foreground ,color-1 :weight bold ))))
`(git-gutter-fr:added ((t (:foreground ,color-1 :weight bold))))
`(git-gutter-fr:deleted ((t (:foreground ,color-1 :weight bold))))
`(git-gutter-fr:modified ((t (:foreground ,color-1 :weight bold))))
`(gnus-group-mail-1 ((t (:bold t :inherit gnus-group-mail-1-empty))))
`(gnus-group-mail-1-empty ((t (:inherit gnus-group-news-1-empty))))
`(gnus-group-mail-2 ((t (:bold t :inherit gnus-group-mail-2-empty))))
`(gnus-group-mail-2-empty ((t (:inherit gnus-group-news-2-empty))))
`(gnus-group-mail-3 ((t (:bold t :inherit gnus-group-mail-3-empty))))
`(gnus-group-mail-3-empty ((t (:inherit gnus-group-news-3-empty))))
`(gnus-group-mail-4 ((t (:bold t :inherit gnus-group-mail-4-empty))))
`(gnus-group-mail-4-empty ((t (:inherit gnus-group-news-4-empty))))
`(gnus-group-mail-5 ((t (:bold t :inherit gnus-group-mail-5-empty))))
`(gnus-group-mail-5-empty ((t (:inherit gnus-group-news-5-empty))))
`(gnus-group-mail-6 ((t (:bold t :inherit gnus-group-mail-6-empty))))
`(gnus-group-mail-6-empty ((t (:inherit gnus-group-news-6-empty))))
`(gnus-group-mail-low ((t (:bold t :inherit gnus-group-mail-low-empty))))
`(gnus-group-mail-low-empty ((t (:inherit gnus-group-news-low-empty))))
`(gnus-group-news-1 ((t (:bold t :inherit gnus-group-news-1-empty))))
`(gnus-group-news-2 ((t (:bold t :inherit gnus-group-news-2-empty))))
`(gnus-group-news-3 ((t (:bold t :inherit gnus-group-news-3-empty))))
`(gnus-group-news-4 ((t (:bold t :inherit gnus-group-news-4-empty))))
`(gnus-group-news-5 ((t (:bold t :inherit gnus-group-news-5-empty))))
`(gnus-group-news-6 ((t (:bold t :inherit gnus-group-news-6-empty))))
`(gnus-group-news-low ((t (:bold t :inherit gnus-group-news-low-empty))))
`(gnus-header-content ((t (:inherit message-header-other))))
`(gnus-header-from ((t (:inherit message-header-from))))
`(gnus-header-name ((t (:inherit message-header-name))))
`(gnus-header-newsgroups ((t (:inherit message-header-other))))
`(gnus-header-subject ((t (:inherit message-header-subject))))
`(gnus-summary-cancelled ((t (:foreground ,color-8))))
`(gnus-summary-high-ancient ((t (:foreground ,color-8))))
`(gnus-summary-high-read ((t (:foreground ,color-6 :weight bold))))
`(gnus-summary-high-ticked ((t (:foreground ,color-8 :weight bold))))
`(gnus-summary-high-unread ((t (:foreground ,color-8 :weight bold))))
`(gnus-summary-low-ancient ((t (:foreground ,color-8))))
`(gnus-summary-low-read ((t (:foreground ,color-6))))
`(gnus-summary-low-ticked ((t (:foreground ,color-8 :weight bold))))
`(gnus-summary-low-unread ((t (:foreground ,color-8))))
`(gnus-summary-normal-ancient ((t (:foreground ,color-8))))
`(gnus-summary-normal-read ((t (:foreground ,color-6))))
`(gnus-summary-normal-ticked ((t (:foreground ,color-8 :weight bold))))
`(gnus-summary-normal-unread ((t (:foreground ,color-8))))
`(gnus-summary-selected ((t (:foreground ,color-8 :weight bold))))
`(gnus-cite-1 ((t (:foreground ,color-8))))
`(gnus-cite-10 ((t (:foreground ,color-8))))
`(gnus-cite-11 ((t (:foreground ,color-8))))
`(gnus-cite-2 ((t (:foreground ,color-7))))
`(gnus-cite-3 ((t (:foreground ,color-6))))
`(gnus-cite-4 ((t (:foreground ,color-8))))
`(gnus-cite-5 ((t (:foreground ,color-7))))
`(gnus-cite-6 ((t (:foreground ,color-6))))
`(gnus-cite-7 ((t (:foreground ,color-7))))
`(gnus-cite-8 ((t (:foreground ,color-6))))
`(gnus-cite-9 ((t (:foreground ,color-6))))
`(gnus-group-news-1-empty ((t (:foreground ,color-8))))
`(gnus-group-news-2-empty ((t (:foreground ,color-8))))
`(gnus-group-news-3-empty ((t (:foreground ,color-7))))
`(gnus-group-news-4-empty ((t (:foreground ,color-6))))
`(gnus-group-news-5-empty ((t (:foreground ,color-5))))
`(gnus-group-news-6-empty ((t (:foreground ,color-4))))
`(gnus-group-news-low-empty ((t (:foreground ,color-4))))
`(gnus-signature ((t (:foreground ,color-8))))
`(gnus-x ((t (:background ,color-8 :foreground ,color-2))))
`(guide-key/highlight-command-face ((t (:foreground ,color-8))))
`(guide-key/key-face ((t (:foreground ,color-6))))
`(guide-key/prefix-command-face ((t (:foreground ,color-7))))
`(helm-header ((t (:foreground ,color-6 :background ,color-1 :underline nil :box nil))))
`(helm-source-header ((t (:foreground ,color-8 :background ,color-1 :underline nil :weight bold :box (:line-width -1 :style released-button)))))
`(helm-selection ((t (:background ,color-3 :underline nil))))
`(helm-selection-line ((t (:background ,color-3))))
`(helm-visible-mark ((t (:foreground ,color-2 :background ,color-8))))
`(helm-candidate-number ((t (:foreground ,color-8 :background ,color-1))))
`(helm-separator ((t (:foreground ,color-7 :background ,color-1))))
`(helm-time-zone-current ((t (:foreground ,color-8 :background ,color-1))))
`(helm-time-zone-home ((t (:foreground ,color-7 :background ,color-1))))
`(helm-bookmark-addressbook ((t (:foreground ,color-8 :background ,color-1))))
`(helm-bookmark-directory ((t (:foreground nil :background nil :inherit helm-ff-directory))))
`(helm-bookmark-file ((t (:foreground nil :background nil :inherit helm-ff-file))))
`(helm-bookmark-gnus ((t (:foreground ,color-7 :background ,color-1))))
`(helm-bookmark-info ((t (:foreground ,color-8 :background ,color-1))))
`(helm-bookmark-man ((t (:foreground ,color-8 :background ,color-1))))
`(helm-bookmark-w3m ((t (:foreground ,color-7 :background ,color-1))))
`(helm-buffer-not-saved ((t (:foreground ,color-7 :background ,color-1))))
`(helm-buffer-process ((t (:foreground ,color-8 :background ,color-1))))
`(helm-buffer-saved-out ((t (:foreground ,color-8 :background ,color-1))))
`(helm-buffer-size ((t (:foreground ,color-4 :background ,color-1))))
`(helm-buffer-directory ((t (:foreground ,color-7 :background ,color-1))))
`(helm-lisp-completion-info ((t (:foreground ,color-7 :background ,color-1))))
`(helm-lisp-show-completion ((t (:foreground ,color-8 :background ,color-3))))
`(helm-locate-finish ((t (:foreground ,color-5 :background ,color-1))))
`(helm-dotted-symlink-directory ((t (:foreground ,color-4 :background ,color-2))))
`(helm-ff-dotted-symlink-directory ((t (:foreground ,color-4 :background ,color-2))))
`(helm-ff-directory ((t (:foreground ,color-8 :background ,color-1 :weight bold))))
`(helm-ff-file ((t (:foreground ,color-8 :background ,color-1 :weight normal))))
`(helm-ff-executable ((t (:foreground ,color-8 :background ,color-1 :weight normal))))
`(helm-ff-invalid-symlink ((t (:foreground ,color-7 :background ,color-1 :weight bold))))
`(helm-ff-symlink ((t (:foreground ,color-8 :background ,color-1 :weight bold))))
`(helm-ff-prefix ((t (:foreground ,color-2 :background ,color-8 :weight normal))))
`(helm-grep-cmd-line ((t (:foreground ,color-8 :background ,color-1))))
`(helm-grep-file ((t (:foreground ,color-8 :background ,color-1))))
`(helm-grep-finish ((t (:foreground ,color-8 :background ,color-1))))
`(helm-grep-lineno ((t (:foreground ,color-4 :background ,color-1))))
`(helm-match ((t (:foreground ,color-8 :background ,color-2))))
`(helm-grep-match ((t ( :inherit helm-match))))
`(helm-grep-running ((t (:foreground ,color-7 :background ,color-1))))
`(helm-moccur-buffer ((t (:foreground ,color-8 :background ,color-1))))
`(helm-mu-contacts-address-face ((t (:foreground ,color-4 :background ,color-1))))
`(helm-mu-contacts-name-face ((t (:foreground ,color-8 :background ,color-1))))
`(helm-M-x-key ((t (:foreground ,color-8 :background ,color-1 :weight bold))))
`(hl-line ((t (:background ,color-2))))
`(hl-line-face ((t (:background ,color-2))))
`(hl-sexp-face ((,class (:background ,color-3)) (t :weight bold)))
`(ido-first-match ((t (:foreground ,color-8 :weight bold))))
`(ido-only-match ((t (:foreground ,color-8 :weight bold))))
`(ido-subdir ((t (:foreground ,color-8))))
`(ido-indicator ((t (:foreground ,color-8 :background ,color-4))))
`(iedit-occurrence ((t (:background ,color-4 :weight bold))))
`(js2-warning ((t (:underline ,color-1))))
`(js2-error ((t (:foreground ,color-7 :weight bold))))
`(js2-jsdoc-tag ((t (:foreground ,color-5))))
`(js2-jsdoc-type ((t (:foreground ,color-8))))
`(js2-jsdoc-value ((t (:foreground ,color-8))))
`(js2-jsdoc-html-tag-name ((t (:foreground ,color-8))))
`(js2-jsdoc-html-tag-delimiter ((t (:foreground ,color-8))))
`(js2-function-param ((t (:foreground ,color-8))))
`(js2-function-call ((t (:foreground ,color-8 :underline t))))
`(js2-object-property ((t (:foreground ,color-8 :slant italic))))
`(js2-external-variable ((t (:foreground ,color-4))))
`(jabber-roster-user-away ((t (:foreground ,color-8))))
`(jabber-roster-user-online ((t (:foreground ,color-7))))
`(jabber-roster-user-dnd ((t (:foreground ,color-8))))
`(jabber-rare-time-face ((t (:foreground ,color-7))))
`(jabber-chat-prompt-local ((t (:foreground ,color-7))))
`(jabber-chat-prompt-foreign ((t (:foreground ,color-8))))
`(jabber-activity-face ((t (:foreground ,color-8))))
`(jabber-activity-personal-face ((t (:foreground ,color-8))))
`(jabber-title-small ((t (:height ,(eziam--other-height 1.1) :weight bold))))
`(jabber-title-medium ((t (:height ,(eziam--other-height 1.2) :weight bold))))
`(jabber-title-medium ((t (:height ,(eziam--other-height 1.3) :weight bold))))
`(ledger-font-payee-uncleared-face ((t (:foreground ,color-6 :weight bold))))
`(ledger-font-payee-cleared-face ((t (:foreground ,color-8 :weight normal))))
`(ledger-font-xact-highlight-face ((t (:background ,color-3))))
`(ledger-font-pending-face ((t (:foreground ,color-8 :weight normal))))
`(ledger-font-other-face ((t (:foreground ,color-8))))
`(ledger-font-posting-account-face ((t (:foreground ,color-7))))
`(ledger-font-posting-account-cleared-face ((t (:foreground ,color-8))))
`(ledger-font-posting-account-pending-face ((t (:foreground ,color-8))))
`(ledger-font-posting-amount-face ((t (:foreground ,color-8))))
`(ledger-font-posting-account-pending-face ((t (:foreground ,color-8))))
`(ledger-occur-narrowed-face ((t (:foreground ,color-4 :invisible t))))
`(ledger-occur-xact-face ((t (:background ,color-3))))
`(ledger-font-comment-face ((t (:foreground ,color-6))))
`(ledger-font-reconciler-uncleared-face ((t (:foreground ,color-6 :weight bold))))
`(ledger-font-reconciler-cleared-face ((t (:foreground ,color-8 :weight normal))))
`(ledger-font-reconciler-pending-face ((t (:foreground ,color-8 :weight normal))))
`(ledger-font-report-clickable-face ((t (:foreground ,color-8 :weight normal))))
`(macrostep-gensym-1 ((t (:foreground ,color-8 :background ,color-1))))
`(macrostep-gensym-2 ((t (:foreground ,color-8 :background ,color-1))))
`(macrostep-gensym-3 ((t (:foreground ,color-8 :background ,color-1))))
`(macrostep-gensym-4 ((t (:foreground ,color-7 :background ,color-1))))
`(macrostep-gensym-5 ((t (:foreground ,color-8 :background ,color-1))))
`(macrostep-expansion-highlight-face ((t (:inherit highlight))))
`(macrostep-macro-face ((t (:underline t))))
`(magit-section-highlight ((t (:inherit highlight :extend t))))
`(magit-section-title ((t (:foreground ,color-8 :weight bold))))
`(magit-branch ((t (:foreground ,color-8 :weight bold))))
`(magit-item-highlight ((t (:inverse-video t))))
`(egg-text-base ((t (:foreground ,color-8))))
`(egg-help-header-1 ((t (:foreground ,color-8))))
`(egg-help-header-2 ((t (:foreground ,color-8))))
`(egg-branch ((t (:foreground ,color-8))))
`(egg-branch-mono ((t (:foreground ,color-8))))
`(egg-term ((t (:foreground ,color-8))))
`(egg-diff-add ((t (:foreground ,color-8))))
`(egg-diff-del ((t (:foreground ,color-8))))
`(egg-diff-file-header ((t (:foreground ,color-8))))
`(egg-section-title ((t (:foreground ,color-8))))
`(egg-stash-mono ((t (:foreground ,color-8))))
`(message-cited-text ((t (:inherit font-lock-comment-face))))
`(message-header-name ((t (:foreground ,color-7))))
`(message-header-other ((t (:foreground ,color-6))))
`(message-header-to ((t (:foreground ,color-8 :weight bold))))
`(message-header-from ((t (:foreground ,color-8 :weight bold))))
`(message-header-cc ((t (:foreground ,color-8 :weight bold))))
`(message-header-newsgroups ((t (:foreground ,color-8 :weight bold))))
`(message-header-subject ((t (:foreground ,color-8 :weight bold))))
`(message-header-xheader ((t (:foreground ,color-6))))
`(message-mml ((t (:foreground ,color-8 :weight bold))))
`(message-separator ((t (:inherit font-lock-comment-face))))
`(mew-face-header-subject ((t (:foreground ,color-8))))
`(mew-face-header-from ((t (:foreground ,color-8))))
`(mew-face-header-date ((t (:foreground ,color-6))))
`(mew-face-header-to ((t (:foreground ,color-7))))
`(mew-face-header-key ((t (:foreground ,color-6))))
`(mew-face-header-private ((t (:foreground ,color-6))))
`(mew-face-header-important ((t (:foreground ,color-8))))
`(mew-face-header-marginal ((t (:foreground ,color-8 :weight bold))))
`(mew-face-header-warning ((t (:foreground ,color-7))))
`(mew-face-header-xmew ((t (:foreground ,color-6))))
`(mew-face-header-xmew-bad ((t (:foreground ,color-7))))
`(mew-face-body-url ((t (:foreground ,color-8))))
`(mew-face-body-comment ((t (:foreground ,color-8 :slant italic))))
`(mew-face-body-cite1 ((t (:foreground ,color-6))))
`(mew-face-body-cite2 ((t (:foreground ,color-8))))
`(mew-face-body-cite3 ((t (:foreground ,color-8))))
`(mew-face-body-cite4 ((t (:foreground ,color-8))))
`(mew-face-body-cite5 ((t (:foreground ,color-7))))
`(mew-face-mark-review ((t (:foreground ,color-8))))
`(mew-face-mark-escape ((t (:foreground ,color-6))))
`(mew-face-mark-delete ((t (:foreground ,color-7))))
`(mew-face-mark-unlink ((t (:foreground ,color-8))))
`(mew-face-mark-refile ((t (:foreground ,color-6))))
`(mew-face-mark-unread ((t (:foreground ,color-6))))
`(mew-face-eof-message ((t (:foreground ,color-6))))
`(mew-face-eof-part ((t (:foreground ,color-8))))
`(paren-face-match ((t (:foreground ,color-8 :background ,color-1))))
`(paren-face-mismatch ((t (:foreground ,color-1 :background ,color-1))))
`(paren-face-no-match ((t (:foreground ,color-3 :background ,color-1))))
`(mingus-directory-face ((t (:foreground ,color-8))))
`(mingus-pausing-face ((t (:foreground ,color-7))))
`(mingus-playing-face ((t (:foreground ,color-8))))
`(mingus-playlist-face ((t (:foreground ,color-8 ))))
`(mingus-song-file-face ((t (:foreground ,color-8))))
`(mingus-stopped-face ((t (:foreground ,color-7))))
`(nav-face-heading ((t (:foreground ,color-8))))
`(nav-face-button-num ((t (:foreground ,color-8))))
`(nav-face-dir ((t (:foreground ,color-6))))
`(nav-face-hdir ((t (:foreground ,color-7))))
`(nav-face-file ((t (:foreground ,color-8))))
`(nav-face-hfile ((t (:foreground ,color-4))))
`(mu4e-title-face ((t (:foreground ,color-8 :weight bold))))
`(mu4e-header-highlight-face ((t (:inherit highlight :extend t))))
`(mu4e-cited-1-face ((t (:foreground ,color-8 :slant italic))))
`(mu4e-cited-2-face ((t (:foreground ,color-8 :slant italic))))
`(mu4e-cited-3-face ((t (:foreground ,color-6 :slant italic))))
`(mu4e-cited-4-face ((t (:foreground ,color-6 :slant italic))))
`(mu4e-cited-5-face ((t (:foreground ,color-4 :slant italic))))
`(mu4e-cited-6-face ((t (:foreground ,color-5 :slant italic))))
`(mu4e-cited-7-face ((t (:foreground ,color-8 :slant italic))))
`(mu4e-unread-face ((t (:background ,color-0 :weight bold :extend t))))
`(mu4e-replied-face ((t (:foreground ,color-6 :slant italic))))
`(mu4e-trashed-face ((t (:foreground ,color-5 :strike-through t))))
`(mu4e-flagged-face ((t (:foreground ,info))))
`(mu4e-ok-face ((t (:foreground ,ok :weight bold))))
`(mu4e-warning-face ((t (:foreground ,warning :weight bold))))
`(mumamo-background-chunk-major ((t (:background nil))))
`(mumamo-background-chunk-submode1 ((t (:background ,color-1))))
`(mumamo-background-chunk-submode2 ((t (:background ,color-4))))
`(mumamo-background-chunk-submode3 ((t (:background ,color-5))))
`(mumamo-background-chunk-submode4 ((t (:background ,color-3))))
`(org-agenda-date-today ((t (:foreground ,color-8 :slant italic :weight bold))) t)
`(org-agenda-structure ((t (:inherit font-lock-comment-face))))
`(org-archived ((t (:foreground ,color-8 :weight bold))))
`(org-checkbox ((t (:background ,color-4 :foreground ,color-8 :box (:line-width 1 :style released-button)))))
`(org-code ((t (:background ,color-2 :box ,color-3))))
`(org-verbatim ((t (:background ,color-2 :box ,color-3))))
`(org-date ((t (:foreground ,color-8 :underline t))))
`(org-deadline-announce ((t (:foreground ,color-6))))
`(org-formula ((t (:foreground ,color-5))))
`(org-headline-done ((t (:foreground ,color-8))))
`(org-hide ((t (:foreground ,color-1))))
`(org-document-title ((t (:foreground ,color-8 :height ,(eziam--other-height 1.9) :bold t))))
`(org-document-info ((t (:inherit default))))
`(org-document-info-keyword ((t (:foreground ,color-6 :weight bold :underline t))))
`(org-level-1 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 1))))))
`(org-level-2 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 2))))))
`(org-level-3 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 3))))))
`(org-level-4 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 4))))))
`(org-level-5 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 5))))))
`(org-level-6 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 6))))))
`(org-level-7 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 7))))))
`(org-level-8 ((t ,(eval (intern (format "ol-%s-%s" org-heading-style 8))))))
`(org-link ((t (:foreground ,color-8 :underline t))))
`(org-list-dt ((t (:weight bold))))
`(org-property-value ((t (:foreground ,color-5 :slant italic))))
`(org-priority ((t (:background ,color-2))))
`(org-scheduled ((t (:foreground ,color-8))))
`(org-scheduled-previously ((t (:foreground ,color-7))))
`(org-scheduled-today ((t (:foreground ,color-8 :inherit highlight))))
`(org-sexp-date ((t (:foreground ,color-8 :underline t))))
`(org-special-keyword ((t (:foreground ,color-5))))
`(org-table ((t (:foreground ,color-8))))
`(org-tag ((t (:foreground ,color-4 :distant-foreground ,color-0))))
`(org-target ((t (:foreground ,color-4))))
`(org-time-grid ((t (:foreground ,color-8))))
`(org-done ((t (:bold t :background ,color-4 :foreground ,color-8 :weight bold))))
`(org-todo ((t (:bold t :inverse-video t))))
`(org-upcoming-deadline ((t (:slant italic))))
`(org-warning ((t (:foreground ,color-7 :underline t))))
`(org-column ((t (:background ,color-1))))
`(org-column-title ((t (:background ,color-1 :underline t :weight bold))))
`(org-mode-line-clock ((t (:foreground ,color-8 :background ,color-1))))
`(org-mode-line-clock-overrun ((t (:foreground ,color-2 :background ,color-6))))
`(org-ellipsis ((t (:foreground ,color-1 :distant-foreground ,color-7 :underline nil :box nil))))
`(org-footnote ((t (:foreground ,color-8 :underline t))))
`(org-meta-line ((t (:foreground ,color-5))))
`(org-block-background ((t (:background ,color-0))))
`(org-block ((t (:background ,color-0 :extend t))))
`(org-block-begin-line ((t (:foreground ,color-6 :background ,color-3 :extend t))))
`(org-block-end-line ((t (:foreground ,color-6 :background ,color-3 :extend t))))
`(outline-1 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 1))))))
`(outline-2 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 2))))))
`(outline-3 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 3))))))
`(outline-4 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 4))))))
`(outline-5 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 5))))))
`(outline-6 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 6))))))
`(outline-7 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 7))))))
`(outline-8 ((t ,(eval (intern (format "ol-%s-%s" outline-heading-style 8))))))
`(outshine-1 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 1))))))
`(outshine-2 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 2))))))
`(outshine-3 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 3))))))
`(outshine-4 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 4))))))
`(outshine-5 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 5))))))
`(outshine-6 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 6))))))
`(outshine-7 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 7))))))
`(outshine-8 ((t ,(eval (intern (format "ol-%s-%s" outshine-heading-style 8))))))
`(p4-depot-added-face ((t :inherit diff-added)))
`(p4-depot-branch-op-face ((t :inherit diff-changed)))
`(p4-depot-deleted-face ((t :inherit diff-removed)))
`(p4-depot-unmapped-face ((t :inherit diff-changed)))
`(p4-diff-change-face ((t :inherit diff-changed)))
`(p4-diff-del-face ((t :inherit diff-removed)))
`(p4-diff-file-face ((t :inherit diff-file-header)))
`(p4-diff-head-face ((t :inherit diff-header)))
`(p4-diff-ins-face ((t :inherit diff-added)))
`(persp-selected-face ((t (:foreground ,color-8 :inherit mode-line))))
`(powerline-active1 ((t (:background ,color-3 :foreground ,color-8 :box nil :inherit mode-line ))))
`(powerline-active2 ((t (:background ,color-1 :foreground ,color-5 :box nil :inherit mode-line ))))
`(powerline-inactive1 ((t (:background ,color-1 :foreground ,color-3 :inherit mode-line-inactive))))
`(powerline-inactive2 ((t (:background ,color-1 :foreground ,color-4 :inherit mode-line-inactive))))
`(proof-active-area-face ((t (:underline t))))
`(proof-boring-face ((t (:foreground ,color-8 :background ,color-4))))
`(proof-command-mouse-highlight-face ((t (:inherit proof-mouse-highlight-face))))
`(proof-debug-message-face ((t (:inherit proof-boring-face))))
`(proof-declaration-name-face ((t (:inherit font-lock-keyword-face :foreground nil))))
`(proof-eager-annotation-face ((t (:foreground ,color-2 :background ,color-8))))
`(proof-error-face ((t (:foreground ,color-8 :background ,color-4))))
`(proof-highlight-dependency-face ((t (:foreground ,color-2 :background ,color-8))))
`(proof-highlight-dependent-face ((t (:foreground ,color-2 :background ,color-8))))
`(proof-locked-face ((t (:background ,color-3))))
`(proof-mouse-highlight-face ((t (:foreground ,color-2 :background ,color-8))))
`(proof-queue-face ((t (:background ,color-4))))
`(proof-region-mouse-highlight-face ((t (:inherit proof-mouse-highlight-face))))
`(proof-script-highlight-error-face ((t (:background ,color-6))))
`(proof-tacticals-name-face ((t (:inherit font-lock-constant-face :foreground nil :background ,color-1))))
`(proof-tactics-name-face ((t (:inherit font-lock-constant-face :foreground nil :background ,color-1))))
`(proof-warning-face ((t (:foreground ,color-2 :background ,color-8))))
`(rainbow-delimiters-depth-1-face ((t (:foreground ,rainbow-1 :bold t))))
`(rainbow-delimiters-depth-2-face ((t (:foreground ,rainbow-4 :bold t))))
`(rainbow-delimiters-depth-3-face ((t (:foreground ,rainbow-2 :bold t))))
`(rainbow-delimiters-depth-4-face ((t (:foreground ,rainbow-5 :bold t))))
`(rainbow-delimiters-depth-5-face ((t (:foreground ,rainbow-3 :bold t))))
`(rainbow-delimiters-depth-6-face ((t (:foreground ,rainbow-6 :bold t))))
`(rainbow-delimiters-depth-7-face ((t (:foreground ,rainbow-1 :bold t))))
`(rainbow-delimiters-depth-8-face ((t (:foreground ,rainbow-4 :bold t))))
`(rainbow-delimiters-depth-9-face ((t (:foreground ,rainbow-2 :bold t))))
`(rainbow-delimiters-depth-10-face ((t (:foreground ,rainbow-5 :bold t))))
`(rainbow-delimiters-depth-11-face ((t (:foreground ,rainbow-3 :bold t))))
`(rainbow-delimiters-depth-12-face ((t (:foreground ,rainbow-6 :bold t))))
`(rcirc-my-nick ((t (:foreground ,color-8))))
`(rcirc-other-nick ((t (:foreground ,color-8))))
`(rcirc-bright-nick ((t (:foreground ,color-8))))
`(rcirc-dim-nick ((t (:foreground ,color-6))))
`(rcirc-server ((t (:foreground ,color-6))))
`(rcirc-server-prefix ((t (:foreground ,color-7))))
`(rcirc-timestamp ((t (:foreground ,color-8))))
`(rcirc-nick-in-message ((t (:foreground ,color-8))))
`(rcirc-nick-in-message-full-line ((t (:bold t))))
`(rcirc-prompt ((t (:foreground ,color-8 :bold t))))
`(rcirc-track-nick ((t (:inverse-video t))))
`(rcirc-track-keyword ((t (:bold t))))
`(rcirc-url ((t (:bold t))))
`(rcirc-keyword ((t (:foreground ,color-8 :bold t))))
`(rpm-spec-dir-face ((t (:foreground ,color-6))))
`(rpm-spec-doc-face ((t (:foreground ,color-6))))
`(rpm-spec-ghost-face ((t (:foreground ,color-7))))
`(rpm-spec-macro-face ((t (:foreground ,color-8))))
`(rpm-spec-obsolete-tag-face ((t (:foreground ,color-7))))
`(rpm-spec-package-face ((t (:foreground ,color-7))))
`(rpm-spec-section-face ((t (:foreground ,color-8))))
`(rpm-spec-tag-face ((t (:foreground ,color-8))))
`(rpm-spec-var-face ((t (:foreground ,color-7))))
`(rst-level-1-face ((t (:foreground ,color-8))))
`(rst-level-2-face ((t (:foreground ,color-7))))
`(rst-level-3-face ((t (:foreground ,color-7))))
`(rst-level-4-face ((t (:foreground ,color-8))))
`(rst-level-5-face ((t (:foreground ,color-8))))
`(rst-level-6-face ((t (:foreground ,color-5))))
`(sh-heredoc ((t (:foreground ,color-8 :bold t))))
`(sh-quoted-exec ((t (:foreground ,color-7))))
`(show-paren-mismatch ((t (:foreground ,color-1 :background ,color-4 :weight bold))))
`(sp-show-pair-mismatch-face ((t (:foreground ,error :background ,color-1))))
`(sp-show-pair-match-face ((t (:foreground ,info :background ,color-0))))
`(show-paren-match ((t (:inherit sp-show-pair-match-face))))
`(show-paren-mismatch ((t (:inherit sp-show-pair-mismatch-face))))
`(sml-modeline-end-face ((t :inherit default :width condensed)))
`(slime-repl-output-face ((t (:foreground ,color-7))))
`(slime-repl-inputed-output-face ((t (:foreground ,color-6))))
`(slime-error-face ((((supports :underline (:style wave))) (:underline (:style wave :color ,color-7))) (t (:underline ,color-7))))
`(slime-warning-face ((((supports :underline (:style wave))) (:underline (:style wave :color ,color-8))) (t (:underline ,color-8))))
`(slime-style-warning-face ((((supports :underline (:style wave))) (:underline (:style wave :color ,color-8))) (t (:underline ,color-8))))
`(slime-note-face ((((supports :underline (:style wave))) (:underline (:style wave :color ,color-6))) (t (:underline ,color-6))))
`(slime-highlight-face ((t (:inherit highlight))))
`(speedbar-button-face ((t (:foreground ,color-8))))
`(speedbar-directory-face ((t (:foreground ,color-8))))
`(speedbar-file-face ((t (:foreground ,color-8))))
`(speedbar-highlight-face ((t (:foreground ,color-2 :background ,color-8))))
`(speedbar-selected-face ((t (:foreground ,color-7))))
`(speedbar-separator-face ((t (:foreground ,color-2 :background ,color-7))))
`(speedbar-tag-face ((t (:foreground ,color-8))))
`(tabbar-button ((t (:foreground ,color-8 :background ,color-1))))
`(tabbar-selected ((t (:foreground ,color-8 :background ,color-1 :box (:line-width -1 :style pressed-button)))))
`(tabbar-unselected ((t (:foreground ,color-8 :background ,color-3 :box (:line-width -1 :style released-button)))))
`(term-color-black ((t (:foreground ,color-2 :background ,color-1))))
`(term-color-red ((t (:foreground ,color-6 :background ,color-4))))
`(term-color-green ((t (:foreground ,color-6 :background ,color-8))))
`(term-color-yellow ((t (:foreground ,color-8 :background ,color-8))))
`(term-color-blue ((t (:foreground ,color-7 :background ,color-4))))
`(term-color-magenta ((t (:foreground ,color-7 :background ,color-7))))
`(term-color-cyan ((t (:foreground ,color-8 :background ,color-8))))
`(term-color-white ((t (:foreground ,color-8 :background ,color-4))))
'(term-default-fg-color ((t (:inherit term-color-white))))
'(term-default-bg-color ((t (:inherit term-color-black))))
`(undo-tree-visualizer-active-branch-face ((t (:foreground ,color-8 :weight bold))))
`(undo-tree-visualizer-current-face ((t (:foreground ,color-6 :weight bold))))
`(undo-tree-visualizer-default-face ((t (:foreground ,color-8))))
`(undo-tree-visualizer-register-face ((t (:foreground ,color-8))))
`(undo-tree-visualizer-unmodified-face ((t (:foreground ,color-8))))
`(vhl/default-face ((t (:background ,color-1))))
`(w3m-anchor ((t (:foreground ,color-8 :background ,color-1 :underline t :weight normal))))
`(w3m-current-anchor ((t (:foreground ,color-8 :background ,color-1 :underline nil :weight bold))))
`(w3m-arrived-anchor-face ((t (:foreground ,color-4 :background ,color-2 :underline t :weight normal))))
`(w3m-image-anchor-face ((t (:foreground ,color-7 :background ,color-2 :underline t :weight normal))))
`(w3m-image-face ((t (:foreground ,color-8 :background ,color-2 :underline t :weight normal))))
`(w3m-image-anchor ((t (:foreground ,color-8 :background ,color-2 :underline t :weight normal))))
`(w3m-form ((t (:foreground ,color-6 :underline t))))
`(w3m-header-line-location-title ((t (:foreground ,color-4 :background ,color-2 :underline nil :weight normal))))
`(w3m-header-line-location-content ((t (:foreground ,color-8 :background ,color-2 :underline nil :weight normal))))
`(w3m-history-current-url ((t (:inherit match))))
`(w3m-tab-background ((t (:foreground ,color-1 :background ,color-6 :underline nil :weight normal))) )
`(w3m-tab-unselected-retrieving ((t (:foreground ,color-1 :background ,color-6 :underline nil :weight normal))) )
`(w3m-tab-selected-background-face ((t (:foreground ,color-1 :background ,color-8 :underline nil :weight bold))) )
`(w3m-tab-selected-retrieving ((t (:foreground ,color-1 :background ,color-8 :underline nil :weight bold))) )
`(w3m-lnum ((t (:foreground ,color-8 :background ,color-1))))
`(w3m-lnum-match ((t (:background ,color-1 :foreground ,color-8 :weight bold))))
`(w3m-lnum-minibuffer-prompt ((t (:foreground ,color-8))))
`(web-mode-builtin-face ((t (:inherit ,font-lock-builtin-face))))
`(web-mode-comment-face ((t (:inherit ,font-lock-comment-face))))
`(web-mode-constant-face ((t (:inherit ,font-lock-constant-face))))
`(web-mode-css-at-rule-face ((t (:foreground ,color-8 ))))
`(web-mode-css-prop-face ((t (:foreground ,color-8))))
`(web-mode-css-pseudo-class-face ((t (:foreground ,color-8 :weight bold))))
`(web-mode-css-rule-face ((t (:foreground ,color-8))))
`(web-mode-doctype-face ((t (:inherit ,font-lock-comment-face))))
`(web-mode-folded-face ((t (:underline t))))
`(web-mode-function-name-face ((t (:foreground ,color-8))))
`(web-mode-html-attr-name-face ((t (:foreground ,color-8))))
`(web-mode-html-attr-value-face ((t (:inherit ,font-lock-string-face))))
`(web-mode-html-tag-face ((t (:foreground ,color-8))))
`(web-mode-keyword-face ((t (:inherit ,font-lock-keyword-face))))
`(web-mode-preprocessor-face ((t (:inherit ,font-lock-preprocessor-face))))
`(web-mode-string-face ((t (:inherit ,font-lock-string-face))))
`(web-mode-type-face ((t (:inherit ,font-lock-type-face))))
`(web-mode-variable-name-face ((t (:inherit ,font-lock-variable-name-face))))
`(web-mode-server-background-face ((t (:background ,color-1))))
`(web-mode-server-comment-face ((t (:inherit web-mode-comment-face))))
`(web-mode-server-string-face ((t (:inherit web-mode-string-face))))
`(web-mode-symbol-face ((t (:inherit font-lock-constant-face))))
`(web-mode-warning-face ((t (:inherit font-lock-warning-face))))
`(web-mode-whitespaces-face ((t (:background ,color-7))))
`(whitespace-space ((t (:background ,color-3 :foreground ,color-3))))
`(whitespace-hspace ((t (:background ,color-3 :foreground ,color-3))))
`(whitespace-tab ((t (:background ,color-6))))
`(whitespace-newline ((t (:foreground ,color-3))))
`(whitespace-trailing ((t (:background ,color-7))))
`(whitespace-line ((t (:background ,color-1 :foreground ,color-7))))
`(whitespace-space-before-tab ((t (:background ,color-8 :foreground ,color-8))))
`(whitespace-indentation ((t (:background ,color-8 :foreground ,color-7))))
`(whitespace-empty ((t (:background ,color-8))))
`(whitespace-space-after-tab ((t (:background ,color-8 :foreground ,color-7))))
`(wl-highlight-folder-few-face ((t (:foreground ,color-6))))
`(wl-highlight-folder-many-face ((t (:foreground ,color-6))))
`(wl-highlight-folder-path-face ((t (:foreground ,color-8))))
`(wl-highlight-folder-unread-face ((t (:foreground ,color-8))))
`(wl-highlight-folder-zero-face ((t (:foreground ,color-8))))
`(wl-highlight-folder-unknown-face ((t (:foreground ,color-8))))
`(wl-highlight-message-citation-header ((t (:foreground ,color-6))))
`(wl-highlight-message-cited-text-1 ((t (:foreground ,color-7))))
`(wl-highlight-message-cited-text-2 ((t (:foreground ,color-8))))
`(wl-highlight-message-cited-text-3 ((t (:foreground ,color-8))))
`(wl-highlight-message-cited-text-4 ((t (:foreground ,color-8))))
`(wl-highlight-message-header-contents-face ((t (:foreground ,color-6))))
`(wl-highlight-message-headers-face ((t (:foreground ,color-8))))
`(wl-highlight-message-important-header-contents ((t (:foreground ,color-8))))
`(wl-highlight-message-header-contents ((t (:foreground ,color-7))))
`(wl-highlight-message-important-header-contents2 ((t (:foreground ,color-8))))
`(wl-highlight-message-signature ((t (:foreground ,color-6))))
`(wl-highlight-message-unimportant-header-contents ((t (:foreground ,color-8))))
`(wl-highlight-summary-answered-face ((t (:foreground ,color-8))))
`(wl-highlight-summary-disposed-face ((t (:foreground ,color-8 :slant italic))))
`(wl-highlight-summary-new-face ((t (:foreground ,color-8))))
`(wl-highlight-summary-normal-face ((t (:foreground ,color-8))))
`(wl-highlight-summary-thread-top-face ((t (:foreground ,color-8))))
`(wl-highlight-thread-indent-face ((t (:foreground ,color-7))))
`(wl-highlight-summary-refiled-face ((t (:foreground ,color-8))))
`(wl-highlight-summary-displaying-face ((t (:underline t :weight bold))))
`(which-func ((t (:foreground ,color-8))))
`(yascroll:thumb-text-area ((t (:background ,color-1))))
`(yascroll:thumb-fringe ((t (:background ,color-1 :foreground ,color-1))))
`(minimap-active-region-background ((t (:background ,color-3 :foreground ,color-4))))
`(html-fold-unfolded-face ((t (:background ,color-1))))
`(html-fold-folded-face ((t (:foreground ,color-8 :bold t))))
`(markdown-header-delimiter-face ((t (:weight normal :foreground ,color-3))))
`(markdown-header-face-1 ((t ,(eval (intern (format "ol-%s-%s" markdown-heading-style 1))))))
`(markdown-header-face-2 ((t ,(eval (intern (format "ol-%s-%s" markdown-heading-style 2))))))
`(markdown-header-face-3 ((t ,(eval (intern (format "ol-%s-%s" markdown-heading-style 3))))))
`(markdown-header-face-4 ((t ,(eval (intern (format "ol-%s-%s" markdown-heading-style 4))))))
`(markdown-header-face-5 ((t ,(eval (intern (format "ol-%s-%s" markdown-heading-style 5))))))
`(markdown-header-face-6 ((t ,(eval (intern (format "ol-%s-%s" markdown-heading-style 6))))))
`(markdown-link-face ((t (:underline t :foreground ,color-8))))
`(markdown-url-face ((t (:underline t :foreground ,color-8))))
`(markdown-pre-face ((t (:foreground ,color-8))))
`(markdown-bold-face ((t (:foreground ,color-5 :bold t ))))
`(markdown-italic-face ((t (:foreground ,color-5 :italic t ))))
`(markdown-list-face ((t (:foreground ,color-8))))
`(markdown-markup-face ((t (:foreground ,color-3 ))))
`(swoop-face-line-buffer-name ((t (:background ,color-6 :foreground ,color-1))))
`(swoop-face-target-line ((t (:background ,color-4 :foreground ,color-8))))
`(swoop-face-line-number ((t (:background ,color-1 :foreground ,color-3))))
`(swoop-face-header-format-line ((t (:background ,color-3 :foreground ,color-1))))
`(swoop-face-target-words ((t (:background ,color-3 :foreground ,color-8))))
`(highlight-indentation-face ((t (:background ,color-2))))
`(highlight-indentation-current-column-face ((t (:background ,color-1))))
`(company-echo-common ((t (:foreground ,color-8))))
`(company-preview ((t (:background ,color-3 :foreground ,color-8))))
`(company-preview-common ((t (:inherit company-preview :foreground ,color-8 :weight bold))))
`(company-scrollbar-fg ((t (:background ,color-4))))
`(company-tooltip ((t (:background ,color-3 :foreground ,color-8))))
`(company-tooltip-annotation ((t (:inherit company-tooltip :foreground ,color-1))))
`(company-tooltip-common ((t (:inherit company-tooltip :foreground ,color-8))))
`(company-tooltip-common-selection ((t (:inherit company-tooltip-selection :foreground ,color-8))))
`(company-tooltip-selection ((t (:inherit company-tooltip :background ,color-5 :foreground ,color-1))))
`(company-scrollbar-bg ((t (:inherit company-tooltip))))
`(eval-sexp-fu-flash ((t (:background ,color-2))))
`(eval-sexp-fu-flash-error ((t (:background ,color-8 :foreground ,color-1))))
`(neo-dir-link-face ((t (:inherit diredp-dir-priv))))
`(neo-expand-btn-face ((t (:foreground ,color-8 :bold t))))
`(neo-file-link-face ((t (:foreground ,color-6))))
`(neo-root-dir-face ((t (:foreground ,color-5 :background ,color-1))))
`(geiser-font-lock-doc-link ((t (:foreground ,color-8 :underline t))))
`(geiser-font-lock-error-link ((t (:foreground ,color-8 :underline t))))
`(geiser-font-lock-autodoc-identifier ((t (:foreground ,color-5 :bold t))))
`(compilation-error ((t (:foreground ,color-8 :underline t :bold t))))
`(elixir-atom-face ((t (:foreground ,color-8 :bold t))))
`(tuareg-font-lock-operator-face ((t (:inherit ,font-lock-variable-name-face))))
`(tuareg-font-lock-governing-face ((t (:inherit ,font-lock-keyword-face))))
`(avy-lead-face ((t (:background ,color-5 :foreground ,color-1 :bold t))))
`(avy-lead-face-0 ((t (:background ,color-6 :foreground ,color-1 :bold t))))
`(avy-lead-face-1 ((t (:background ,color-7 :foreground ,color-1 :bold t))))
`(avy-lead-face-2 ((t (:background ,color-8 :foreground ,color-1 :bold t))))
`(avy-background-face ((t (:background ,color-1 :foreground ,color-4 :bold t))))
`(cfw:face-title ((t (:height ,(eziam--heading-height 2.5) :foreground ,color-5 :weight bold))))
`(cfw:face-grid ((t (:foreground ,color-5))))
`(cfw:face-day-title ((t (:foreground ,color-5))))
`(cfw:face-header ((t (:foreground ,color-6 :background ,color-2 :weight bold))))
`(cfw:face-saturday ((t (:inherit 'cfw:face-header))))
`(cfw:face-sunday ((t (:inherit 'cfw:face-header))))
`(cfw:face-holiday ((t (:foreground ,color-5 :slant italic))))
`(cfw:face-today ((t (:background ,color-0))))
`(cfw:face-today-title ((t (:background ,color-0 :foreground ,color-8))))
`(cfw:face-select ((t :inherit highlight)))
`(cfw:face-toolbar ((t (:background ,color-1))))
`(cfw:face-toolbar-button-on ((,class ,button-on)))
`(cfw:face-toolbar-button-off ((,class ,button-off)))
)
(custom-theme-set-variables
theme-name
`(pdf-view-midnight-colors ,(if (string-lessp color-8 color-1)
`(quote (,color-0 . ,color-8))
`(quote (,color-8 . ,color-0))))
`(ansi-color-names-vector [,color-2
,color-7
,color-6
,color-8
,color-8
,color-7
,color-8
,color-8])
`(fci-rule-color ,color-1
`(vc-annotate-color-map
'(( 20. . ,color-4)
( 40. . ,color-5)
( 60. . ,color-5)
( 80. . ,color-6)
(100. . ,color-6)
(120. . ,color-7)
(140. . ,color-7)
(160. . ,color-8)
(180. . ,color-8)
(200. . ,color-8)
(220. . ,color-8)
(240. . ,color-8)
(260. . ,color-8)
(280. . ,color-8)
(300. . ,color-8)
(320. . ,color-8)
(340. . ,color-8)
(360. . ,color-8))))
`(vc-annotate-background ,color-1))
))
(provide 'eziam-common)