(deftheme material
"A UI Theme for Emacs based on material design colors")
(display-color-cells (selected-frame))
(let* ((class '((class color) (min-colors 89)))
(256color (eq (display-color-cells (selected-frame)) 256))
(truecolor (eq (display-color-cells (selected-frame)) 16777216))
(background (if (or window-system truecolor) "#263238" "#262626")) (current-line (if (or window-system truecolor) "#37474f" "#3a3a3a")) (far-background (if (or window-system truecolor) "#1c1f26" "#121212")) (diff-nonactive-bg "#2F3D41")
(diff-current-A-bg "#40393D")
(diff-fine-A-bg "#784948")
(diff-current-B-bg "#203B4A")
(diff-fine-B-bg "#155378")
(diff-current-C-bg "#33453A")
(diff-fine-C-bg "#4F6C3F")
(diff-current-ancestor-bg "#203B4A")
(diff-fine-ancestor-bg "#155378")
(inactive-gray (if (or window-system truecolor) "#78909c" "#8a8a8a"))
(header-color (if (or window-system truecolor) "#455A64" "#5f5f5f"))
(subtle "#a7adba") (selection "#555555") (secondary-selection "#bf616a") (foreground "#ffffff")
(comment "#b0bec5") (red "#f36c60") (orange "#ff9800") (yellow "#fff59d") (green "#8bc34a") (aqua "#81d4fa") (blue "#4dd0e1") (purple "#b39ddb"))
(custom-theme-set-faces
'material
`(default ((,class (:foreground ,foreground :background ,background))))
`(bold ((,class (:weight bold))))
`(bold-italic ((,class (:slant italic :weight bold))))
`(underline ((,class (:underline t))))
`(italic ((,class (:slant italic))))
`(font-lock-builtin-face ((,class (:foreground "#ff8A65"))))
`(font-lock-comment-delimiter-face ((,class (:foreground ,comment))))
`(font-lock-comment-face ((,class (:foreground ,comment))))
`(font-lock-constant-face ((,class (:foreground ,green))))
`(font-lock-doc-face ((,class (:foreground "moccasin"))))
`(font-lock-doc-string-face ((,class (:foreground ,yellow))))
`(font-lock-function-name-face ((,class (:foreground ,"#84ffff"))))
`(font-lock-keyword-face ((,class (:foreground ,yellow))))
`(font-lock-negation-char-face ((,class (:foreground ,blue))))
`(font-lock-preprocessor-face ((,class (:foreground "gold"))))
`(font-lock-regexp-grouping-backslash ((,class (:foreground ,yellow))))
`(font-lock-regexp-grouping-construct ((,class (:foreground ,purple))))
`(font-lock-string-face ((,class (:foreground "#9ccc65"))))
`(font-lock-type-face ((,class (:foreground "#84ffff"))))
`(font-lock-variable-name-face ((,class (:foreground ,"#ffcc80"))))
`(font-lock-warning-face ((,class (:weight bold :foreground ,red))))
`(highlight-numbers-number ((,class (:foreground ,"#9ccc65"))))
`(shadow ((,class (:foreground ,comment))))
`(success ((,class (:foreground "SeaGreen2"))))
`(error ((,class (:foreground ,red))))
`(warning ((,class (:foreground ,orange))))
`(aw-leading-char-face ((,class (:foreground ,
foreground
:background ,
"#ef6c00"
:weight
bold))))
`(ace-jump-face-foreground ((,class (:foreground ,foreground
:background ,"#ef6c00"
:weight bold))))
`(ace-jump-face-background ((,class (:foreground ,inactive-gray
:weight normal))))
`(avy-background-face ((,class (:foreground ,inactive-gray
:weight normal))))
`(avy-lead-face-0 ((,class (:foreground ,foreground
:background ,"#ef6c00"
:weight bold))))
`(avy-lead-face ((,class (:foreground ,foreground
:background ,"#ef6c00"
:weight bold))))
`(flycheck-error ((,class (:underline (:style wave :color ,red)))))
`(flycheck-warning ((,class (:underline (:style wave :color ,orange)))))
`(highlight-indentation-face ((,class (:background, current-line))))
`(highlight-indentation-current-column-face ((,class (:background, far-background))))
`(flymake-warnline ((,class (:underline (:style wave :color ,orange) :background ,background))))
`(flymake-errline ((,class (:underline (:style wave :color ,red) :background ,background))))
`(clojure-test-failure-face ((,class (:background nil :inherit flymake-warnline))))
`(clojure-test-error-face ((,class (:background nil :inherit flymake-errline))))
`(clojure-test-success-face ((,class (:background nil :foreground nil :underline ,green))))
`(clojure-keyword-face ((,class (:inherit font-lock-builtin-face))))
`(edts-face-warning-line ((t (:background nil :inherit flymake-warnline))))
`(edts-face-warning-mode-line ((,class (:background nil :foreground ,orange :weight bold))))
`(edts-face-error-line ((t (:background nil :inherit flymake-errline))))
`(edts-face-error-mode-line ((,class (:background nil :foreground ,red :weight bold))))
`(clojure-keyword ((,class (:foreground ,yellow))))
`(clojure-parens ((,class (:foreground ,foreground))))
`(clojure-braces ((,class (:foreground ,green))))
`(clojure-brackets ((,class (:foreground ,yellow))))
`(clojure-double-quote ((,class (:foreground ,aqua :background nil))))
`(clojure-special ((,class (:foreground ,blue))))
`(clojure-java-call ((,class (:foreground ,purple))))
`(rainbow-delimiters-depth-1-face ((,class (:foreground ,"#e91e63"))))
`(rainbow-delimiters-depth-2-face ((,class (:foreground ,"#2196F3"))))
`(rainbow-delimiters-depth-3-face ((,class (:foreground ,"#EF6C00"))))
`(rainbow-delimiters-depth-4-face ((,class (:foreground ,"#B388FF"))))
`(rainbow-delimiters-depth-5-face ((,class (:foreground ,"#76ff03"))))
`(rainbow-delimiters-depth-6-face ((,class (:foreground ,"#26A69A"))))
`(rainbow-delimiters-depth-7-face ((,class (:foreground ,"#FFCDD2"))))
`(rainbow-delimiters-depth-8-face ((,class (:foreground ,"#795548"))))
`(rainbow-delimiters-depth-9-face ((,class (:foreground ,"#DCE775"))))
`(rainbow-delimiters-unmatched-face ((,class (:foreground ,foreground :background ,"#EF6C00"))))
`(mmm-code-submode-face ((,class (:background ,current-line))))
`(mmm-comment-submode-face ((,class (:inherit font-lock-comment-face))))
`(mmm-output-submode-face ((,class (:background ,current-line))))
`(match ((,class (:foreground ,background :background ,green :inverse-video nil))))
`(isearch ((,class (:foreground ,foreground :background ,green))))
`(lazy-highlight ((,class (:foreground ,background :background ,green :inverse-video nil))))
`(isearch-fail ((,class (:background ,background :inherit font-lock-warning-face :inverse-video t))))
`(evil-search-highlight-persist-highlight-face ((,class (:foreground ,background
:background ,green))))
`(iedit-occurrence ((,class (:foreground ,background :background ,green))))
`(ahs-face ((,class (:foreground ,background :background ,green))))
`(ahs-plugin-whole-buffer-face ((,class (:foreground ,foreground :background ,green))))
`(anzu-mode-line ((,class (:foreground ,orange))))
`(anzu-replace-highlight ((,class (:inherit lazy-highlight))))
`(anzu-replace-to ((,class (:inherit isearch))))
`(ido-subdir ((,class (:foreground ,purple))))
`(ido-first-match ((,class (:foreground ,orange))))
`(ido-only-match ((,class (:foreground ,green))))
`(ido-indicator ((,class (:foreground ,red :background ,background))))
`(ido-virtual ((,class (:foreground ,comment))))
`(flx-highlight-face ((,class (:inherit nil :foreground ,yellow :weight bold :underline nil))))
`(which-func ((,class (:foreground ,blue :background nil))))
`(cursor ((,class (:background ,orange))))
`(fringe ((,class (:background ,background))))
`(linum ((,class (:background ,background :foreground ,subtle))))
`(linum-highlight-face ((,class (:background ,current-line :foreground ,foreground))))
`(border ((,class (:background ,current-line))))
`(vertical-border ((,class (:background ,selection
:foreground, selection))))
`(border-glyph ((,class (nil))))
`(highlight ((,class (:inverse-video nil :background ,current-line))))
`(hl-line ((,class (:inverse-video nil :background ,current-line))))
`(gui-element ((,class (:background ,current-line :foreground ,foreground))))
`(mode-line ((,class (:foreground ,foreground :background ,far-background))))
`(mode-line-buffer-id ((,class (:foreground ,foreground :background nil :weight bold))))
`(mode-line-inactive ((,class (:inherit mode-line
:foreground ,subtle
:background ,far-background :weight normal
:box nil))))
`(mode-line-emphasis ((,class (:foreground ,foreground :slant italic))))
`(mode-line-highlight ((,class (:foreground ,purple :box nil))))
`(minibuffer-prompt ((,class (:foreground ,blue))))
`(region ((,class (:background ,selection))))
`(secondary-selection ((,class (:background ,secondary-selection))))
`(header-line ((,class (:inherit mode-line :foreground ,purple :background nil))))
`(trailing-whitespace ((,class (:foreground ,red :inverse-video t :underline nil))))
`(whitespace-trailing ((,class (:foreground ,red :inverse-video t :underline nil))))
`(whitespace-space-after-tab ((,class (:foreground ,red :inverse-video t :underline nil))))
`(whitespace-space-before-tab ((,class (:foreground ,red :inverse-video t :underline nil))))
`(whitespace-empty ((,class (:foreground ,red :inverse-video t :underline nil))))
`(whitespace-line ((,class (:background nil :foreground ,red))))
`(whitespace-indentation ((,class (:background nil :foreground ,aqua))))
`(whitespace-space ((,class (:background nil :foreground ,selection))))
`(whitespace-newline ((,class (:background nil :foreground ,selection))))
`(whitespace-tab ((,class (:background nil :foreground ,selection))))
`(whitespace-hspace ((,class (:background nil :foreground ,selection))))
`(show-paren-match-face ((,class (:background ,aqua :foreground "black"))))
`(show-paren-mismatch-face ((,class (:background "red1" :foreground "white"))))
`(sp-show-pair-match-face ((,class (:foreground "black" :background ,aqua :inherit show-paren-match))))
`(sp-show-pair-mismatch-face ((,class (:foreground nil :background nil :inherit show-paren-mismatch))))
`(paren-face-match ((,class (:foreground nil :background nil :inherit show-paren-match))))
`(paren-face-mismatch ((,class (:foreground nil :background nil :inherit show-paren-mismatch))))
`(paren-face-no-match ((,class (:foreground nil :background nil :inherit show-paren-mismatch))))
`(paren-face ((,class (:foreground ,comment :background nil))))
`(sh-heredoc ((,class (:foreground nil :inherit font-lock-string-face :weight normal))))
`(sh-quoted-exec ((,class (:foreground nil :inherit font-lock-preprocessor-face))))
`(slime-highlight-edits-face ((,class (:weight bold))))
`(slime-repl-input-face ((,class (:weight normal :underline nil))))
`(slime-repl-prompt-face ((,class (:underline nil :weight bold :foreground ,purple))))
`(slime-repl-result-face ((,class (:foreground ,green))))
`(slime-repl-output-face ((,class (:foreground ,blue :background ,background))))
`(csv-separator-face ((,class (:foreground ,orange))))
`(diff-hl-insert ((,class (:background ,green :foreground ,green))))
`(diff-hl-change ((,class (:background ,aqua :foreground ,aqua))))
`(diff-hl-delete ((,class (:background ,orange :foreground ,orange))))
`(diff-added ((,class (:foreground ,green))))
`(diff-changed ((,class (:foreground ,aqua))))
`(diff-removed ((,class (:foreground ,orange))))
`(diff-header ((,class (:foreground ,aqua :background nil))))
`(diff-file-header ((,class (:foreground ,blue :background nil))))
`(diff-hunk-header ((,class (:foreground ,purple))))
`(diff-refine-added ((,class (:inherit diff-added :inverse-video t))))
`(diff-refine-removed ((,class (:inherit diff-removed :inverse-video t))))
`(ediff-even-diff-A ((,class (:background ,diff-nonactive-bg))))
`(ediff-even-diff-B ((,class (:background ,diff-nonactive-bg))))
`(ediff-even-diff-C ((,class (:background ,diff-nonactive-bg))))
`(ediff-even-diff-Ancestor ((,class (:background ,diff-nonactive-bg))))
`(ediff-odd-diff-A ((,class (:background ,diff-nonactive-bg))))
`(ediff-odd-diff-B ((,class (:background ,diff-nonactive-bg))))
`(ediff-odd-diff-C ((,class (:background ,diff-nonactive-bg))))
`(ediff-odd-diff-Ancestor ((,class (:background ,diff-nonactive-bg))))
`(ediff-current-diff-A ((,class (:background ,diff-current-A-bg))))
`(ediff-current-diff-B ((,class (:background ,diff-current-B-bg))))
`(ediff-current-diff-C ((,class (:background ,diff-current-C-bg))))
`(ediff-current-diff-Ancestor ((,class (:background ,diff-current-ancestor-bg))))
`(ediff-fine-diff-A ((,class (:background ,diff-fine-A-bg))))
`(ediff-fine-diff-B ((,class (:background ,diff-fine-B-bg))))
`(ediff-fine-diff-C ((,class (:background ,diff-fine-C-bg))))
`(ediff-fine-diff-Ancestor ((,class (:background ,diff-fine-ancestor-bg))))
`(eldoc-highlight-function-argument ((,class (:foreground ,green :weight bold))))
`(macrostep-expansion-highlight-face ((,class (:inherit highlight :foreground nil))))
`(undo-tree-visualizer-default-face ((,class (:foreground ,foreground))))
`(undo-tree-visualizer-current-face ((,class (:foreground ,green :weight bold))))
`(undo-tree-visualizer-active-branch-face ((,class (:foreground ,red))))
`(undo-tree-visualizer-register-face ((,class (:foreground ,yellow))))
`(diredp-compressed-file-suffix ((,class (:foreground ,blue))))
`(diredp-deletion ((,class (:inherit error :inverse-video t))))
`(diredp-deletion-file-name ((,class (:inherit error))))
`(diredp-dir-heading ((,class (:foreground ,green :weight bold))))
`(diredp-dir-priv ((,class (:foreground ,aqua :background nil))))
`(diredp-exec-priv ((,class (:foreground ,blue :background nil))))
`(diredp-executable-tag ((,class (:foreground ,red :background nil))))
`(diredp-file-name ((,class (:foreground ,yellow))))
`(diredp-file-suffix ((,class (:foreground ,green))))
`(diredp-flag-mark ((,class (:foreground ,green :inverse-video t))))
`(diredp-flag-mark-line ((,class (:background nil :inherit highlight))))
`(diredp-ignored-file-name ((,class (:foreground ,comment))))
`(diredp-link-priv ((,class (:background nil :foreground ,purple))))
`(diredp-mode-line-flagged ((,class (:foreground ,red))))
`(diredp-mode-line-marked ((,class (:foreground ,green))))
`(diredp-no-priv ((,class (:background nil))))
`(diredp-number ((,class (:foreground ,yellow))))
`(diredp-other-priv ((,class (:background nil :foreground ,purple))))
`(diredp-rare-priv ((,class (:foreground ,red :background nil))))
`(diredp-read-priv ((,class (:foreground ,green :background nil))))
`(diredp-symlink ((,class (:foreground ,purple))))
`(diredp-write-priv ((,class (:foreground ,yellow :background nil))))
`(diredfl-compressed-file-suffix ((,class (:foreground ,blue))))
`(diredfl-compressed-file-name ((,class (:foreground ,blue))))
`(diredfl-ignored-file-name ((,class (:foreground ,comment))))
`(diredfl-date-time ((,class (:foreground ,green))))
`(diredfl-file-name ((,class (:foreground ,foreground))))
`(diredfl-read-priv ((,class (:foreground ,green :background nil))))
`(diredfl-write-priv ((,class (:foreground ,yellow :background nil))))
`(diredfl-exec-priv ((,class (:foreground ,red :background nil))))
`(diredfl-rare-priv ((,class (:foreground ,orange :background nil))))
`(diredfl-no-priv ((,class (:background nil))))
`(diredfl-deletion ((,class (:inherit error :inverse-video t))))
`(diredfl-deletion-file-name ((,class (:inherit error))))
`(diredfl-dir-heading ((,class (:foreground ,green :weight bold))))
`(diredfl-symlink ((,class (:foreground ,purple))))
`(diredfl-dir-priv ((,class (:foreground ,blue :background nil))))
`(diredfl-dir-name ((,class (:foreground ,blue :background nil))))
`(diredfl-number ((,class (:foreground ,yellow :background nil))))
`(diredfl-flag-mark ((,class (:foreground ,orange :background nil))))
`(diredfl-flag-mark-line ((,class (:foreground ,nil :background ,selection))))
`(diredfl-file-suffix ((,class (:foreground ,aqua :background nil))))
`(magit-branch ((,class (:foreground ,green))))
`(magit-diff-added ((,class (:inherit diff-added))))
`(magit-diff-added-highlight ((,class (:inherit magit-diff-added
:background ,far-background))))
`(magit-diff-removed ((,class (:inherit diff-removed))))
`(magit-diff-removed-highlight ((,class (:inherit magit-diff-removed
:background ,far-background))))
`(magit-header ((,class (:inherit nil :weight bold))))
`(magit-item-highlight ((,class (:inherit highlight :background nil))))
`(magit-log-author ((,class (:foreground ,aqua))))
`(magit-log-graph ((,class (:foreground ,comment))))
`(magit-log-date ((,class (:foreground ,yellow))))
`(magit-section-title ((,class (:foreground ,blue :weight bold))))
`(magit-section-highlight ((t (:background ,current-line))))
`(magit-section-heading ((t (:foreground ,yellow :weight bold))))
`(magit-diff-file-heading ((t (:weight bold))))
`(magit-diff-file-heading-highlight ((t (:background ,current-line :weight bold))))
`(magit-diff-file-heading-selection ((t (:background ,background
:foreground ,orange :weight bold))))
`(magit-diff-hunk-heading ((t (:background ,header-color))))
`(magit-diff-hunk-heading-highlight ((t (:background ,header-color))))
`(magit-diff-hunk-heading-selection ((t (:background ,background
:foreground ,orange))))
`(magit-diff-lines-heading ((t (:background ,orange
:foreground ,background))))
`(magit-blame-heading ((t (:background ,far-background
:foreground ,aqua))))
`(magit-blame-date ((t (:background ,far-background
:foreground ,"#80cbc4"))))
`(magit-blame-summary ((t (:background ,far-background
:foreground ,green))))
`(magit-diff-context-highlight ((t (:background ,far-background
:foreground "grey70"))))
`(magit-diffstat-added ((t (:foreground ,green))))
`(magit-diffstat-removed ((t (:foreground ,red))))
`(magit-process-ok ((t (:foreground ,green :weight bold))))
`(magit-process-ng ((t (:foreground ,red :weight bold))))
`(magit-branch-local ((t (:foreground ,blue :weight bold))))
`(magit-branch-remote ((t (:foreground ,green :weight bold))))
`(magit-tag ((t (:foreground ,orange :weight bold))))
`(magit-hash ((t (:foreground ,comment))))
`(magit-sequence-stop ((t (:foreground ,green))))
`(magit-sequence-part ((t (:foreground ,yellow))))
`(magit-sequence-head ((t (:foreground ,blue))))
`(magit-sequence-drop ((t (:foreground ,red))))
`(git-gutter:modified ((,class (:foreground ,purple :weight bold))))
`(git-gutter:added ((,class (:foreground ,green :weight bold))))
`(git-gutter:deleted ((,class (:foreground ,red :weight bold))))
`(git-gutter:unchanged ((,class (:background ,yellow))))
`(git-gutter-fr:modified ((,class (:foreground ,purple :weight bold))))
`(git-gutter-fr:added ((,class (:foreground ,green :weight bold))))
`(git-gutter-fr:deleted ((,class (:foreground ,red :weight bold))))
`(link ((,class (:foreground nil :underline t))))
`(widget-button ((,class (:underline t :weight bold))))
`(widget-field ((,class (:background ,current-line :box (:line-width 1 :color ,foreground)))))
`(compilation-column-number ((,class (:foreground ,yellow))))
`(compilation-line-number ((,class (:foreground ,yellow))))
`(compilation-message-face ((,class (:foreground ,blue))))
`(compilation-mode-line-exit ((,class (:foreground ,green))))
`(compilation-mode-line-fail ((,class (:foreground ,red))))
`(compilation-mode-line-run ((,class (:foreground ,blue))))
`(grep-context-face ((,class (:foreground ,comment))))
`(grep-error-face ((,class (:foreground ,red :weight bold :underline t))))
`(grep-hit-face ((,class (:foreground ,blue))))
`(grep-match-face ((,class (:foreground nil :background nil :inherit match))))
`(regex-tool-matched-face ((,class (:foreground nil :background nil :inherit match))))
`(helm-header ((,class (:foreground ,foreground :background ,background))))
`(helm-match ((,class (:foreground ,"gold1"))))
`(helm-selection ((,class (:background ,current-line))))
`(helm-ff-file ((,class (:foreground ,foreground))))
`(helm-ff-directory ((,class (:foreground ,blue))))
`(helm-ff-symlink ((,class (:foreground ,purple))))
`(helm-ff-executable ((,class (:foreground ,green))))
`(helm-buffer-directory ((,class (:foreground ,blue))))
`(helm-buffer-file ((,class (:foreground ,foreground))))
`(helm-grep-file ((,class (:foreground ,aqua :underline t))))
`(helm-buffer-process ((,class (:foreground ,red))))
`(helm-buffer-not-saved ((,class (:foreground ,orange))))
`(helm-candidate-number ((,class (:foreground ,foreground :background ,"#ef6c00"))))
`(helm-source-header ((,class (:background ,header-color :foreground ,"#eceff1" :bold t))))
`(guide-key/key-face ((,class (:foreground ,foreground))))
`(guide-key/highlight-command-face ((,class (:foreground ,yellow))))
`(guide-key/prefix-command-face ((,class (:foreground ,aqua))))
`(which-key-key-face ((,class (:foreground ,foreground :weight bold))))
`(which-key-special-key-face ((,class (:foreground ,orange :weight bold))))
`(which-key-command-description-face ((,class (:foreground ,foreground))))
`(which-key-group-description-face ((,class (:foreground ,aqua))))
`(which-key-separator-face ((,class (:foreground ,comment))))
`(mm/master-face ((,class (:inherit region :foreground nil :background nil))))
`(mm/mirror-face ((,class (:inherit region :foreground nil :background nil))))
`(org-agenda-structure ((,class (:foreground ,aqua :bold t))))
`(org-agenda-date ((,class (:foreground ,blue :underline nil))))
`(org-agenda-done ((,class (:foreground ,green))))
`(org-agenda-dimmed-todo-face ((,class (:foreground ,comment))))
`(org-block ((,class (:foreground ,green :background ,far-background :extend t))))
`(org-block-background ((,t (:background ,far-background :extend t))))
`(org-code ((,class (:foreground ,green :background ,far-background))))
`(org-column ((,class (:background ,current-line))))
`(org-column-title ((,class (:inherit org-column :weight bold :underline t))))
`(org-date ((,class (:foreground ,"#80cbc4" :underline t))))
`(org-document-info ((,class (:foreground ,aqua))))
`(org-document-info-keyword ((,class (:foreground ,green))))
`(org-document-title ((,class (:weight bold :foreground ,foreground))))
`(org-done ((,class (:foreground ,green :bold t :background,"#1b5e20"))))
`(org-ellipsis ((,class (:foreground ,comment))))
`(org-footnote ((,class (:foreground ,aqua))))
`(org-formula ((,class (:foreground ,red))))
`(org-hide ((,class (:foreground ,background :background ,background))))
`(org-link ((,class (:foreground ,blue :underline t))))
`(org-scheduled ((,class (:foreground ,green))))
`(org-scheduled-previously ((,class (:foreground ,orange))))
`(org-scheduled-today ((,class (:foreground ,green))))
`(org-special-keyword ((,class (:foreground ,comment))))
`(org-table ((,class (:foreground ,"#e3f2fd" :background ,far-background))))
`(org-todo ((,class (:foreground ,"#ffab91" :bold t :background ,"#dd2c00"))))
`(org-upcoming-deadline ((,class (:foreground ,orange))))
`(org-warning ((,class (:weight bold :foreground ,red))))
`(org-block-begin-line ((,class (:foreground ,"#b3e5fc" :background "#1e2930"
:box (:style released-button) :extend t))))
`(org-block-end-line ((,class (:foreground ,"#b3e5fc" :background "#1e2930"
:box (:style released-button) :extend t))))
`(org-kbd ((,class (:background ,inactive-gray :foreground ,foreground
:box (:line-width 1 :color nil :style pressed-button)))))
`(org-level-1 ((,class (:inherit outline-1
:background ,header-color
:weight bold
:box (:style released-button)))))
`(org-level-2 ((,class (:inherit outline-2
:background ,"#35575b"
:box (:style released-button)))))
`(org-level-3 ((,class (:inherit outline-3))))
`(org-level-4 ((,class (:inherit outline-4))))
`(org-level-5 ((,class (:inherit outline-5))))
`(org-level-6 ((,class (:inherit outline-6))))
`(org-level-7 ((,class (:inherit outline-7))))
`(org-level-8 ((,class (:inherit outline-8))))
`(org-level-9 ((,class (:inherit outline-9))))
`(markdown-header-face-1 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.3))))
`(markdown-header-face-2 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.2))))
`(markdown-header-face-3 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-face-4 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-face-5 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-face-6 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-face-7 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-face-8 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-face-9 ((,class (:inherit font-lock-function-name-face :weight bold :height 1.1))))
`(markdown-header-delimiter-face ((,class (:inherit font-lock-function-name-face :weight bold
:height 1.2))))
`(markdown-url-face ((,class (:inherit link))))
`(markdown-link-face ((,class (:foreground ,blue :underline t))))
`(highlight-symbol-face ((,class (:background ,selection))))
`(highlight-80+ ((,class (:background ,current-line))))
`(py-builtins-face ((,class (:foreground ,"#ff7043" :weight normal))))
`(ein:cell-input-area ((,class (:background ,"#1e2930"))))
`(ein:cell-input-prompt ((,class (:inherit org-block-begin-line))))
`(ein:cell-output-prompt ((,class (:inherit org-block-end-line))))
`(js2-warning ((,class (:underline ,orange))))
`(js2-error ((,class (:foreground nil :underline ,red))))
`(js2-external-variable ((,class (:foreground ,purple))))
`(js2-function-param ((,class (:foreground ,blue))))
`(js2-instance-member ((,class (:foreground ,blue))))
`(js2-private-function-call ((,class (:foreground ,red))))
`(js3-warning-face ((,class (:underline ,orange))))
`(js3-error-face ((,class (:foreground nil :underline ,red))))
`(js3-external-variable-face ((,class (:foreground ,purple))))
`(js3-function-param-face ((,class (:foreground ,blue))))
`(js3-jsdoc-tag-face ((,class (:foreground ,orange))))
`(js3-jsdoc-type-face ((,class (:foreground ,aqua))))
`(js3-jsdoc-value-face ((,class (:foreground ,yellow))))
`(js3-jsdoc-html-tag-name-face ((,class (:foreground ,blue))))
`(js3-jsdoc-html-tag-delimiter-face ((,class (:foreground ,green))))
`(js3-instance-member-face ((,class (:foreground ,blue))))
`(js3-private-function-call-face ((,class (:foreground ,red))))
`(coffee-mode-class-name ((,class (:foreground ,orange :weight bold))))
`(coffee-mode-function-param ((,class (:foreground ,purple))))
`(elixir-negation-face ((,class (:foreground ,red))))
`(elixir-attribute-face ((,class (:foreground ,purple))))
`(elixir-atom-face ((,class (:foreground ,aqua))))
`(elixir-ignored-var-face ((,class (:foreground ,comment))))
`(nxml-name-face ((,class (:foreground unspecified :inherit font-lock-constant-face))))
`(nxml-attribute-local-name-face ((,class (:foreground unspecified :inherit font-lock-variable-name-face))))
`(nxml-ref-face ((,class (:foreground unspecified :inherit font-lock-preprocessor-face))))
`(nxml-delimiter-face ((,class (:foreground unspecified :inherit font-lock-keyword-face))))
`(nxml-delimited-data-face ((,class (:foreground unspecified :inherit font-lock-string-face))))
`(rng-error-face ((,class (:underline ,red))))
`(erb-delim-face ((,class (:background ,current-line))))
`(erb-exec-face ((,class (:background ,current-line :weight bold))))
`(erb-exec-delim-face ((,class (:background ,current-line))))
`(erb-out-face ((,class (:background ,current-line :weight bold))))
`(erb-out-delim-face ((,class (:background ,current-line))))
`(erb-comment-face ((,class (:background ,current-line :weight bold :slant italic))))
`(erb-comment-delim-face ((,class (:background ,current-line))))
`(message-header-other ((,class (:foreground nil :background nil :weight normal))))
`(message-header-subject ((,class (:inherit message-header-other :weight bold :foreground ,yellow))))
`(message-header-to ((,class (:inherit message-header-other :weight bold :foreground ,orange))))
`(message-header-cc ((,class (:inherit message-header-to :foreground nil))))
`(message-header-name ((,class (:foreground ,blue :background nil))))
`(message-header-newsgroups ((,class (:foreground ,aqua :background nil :slant normal))))
`(message-separator ((,class (:foreground ,purple))))
`(cfw:face-title ((,class (:background ,background :foreground ,"#eceff1" :height 1.3 :weight bold))))
`(cfw:face-today ((,class (:foreground ,foreground))))
`(cfw:face-day-title ((,class (:background ,current-line :foreground ,foreground))))
`(cfw:face-today-title ((,class (:background ,secondary-selection :foreground ,foreground))))
`(cfw:face-header ((,class (:background ,current-line :foreground ,foreground))))
`(cfw:face-sunday ((,class (:background ,current-line :foreground ,aqua :weight bold))))
`(cfw:face-saturday ((,class (:background ,current-line :foreground ,aqua :weight bold))))
`(cfw:face-select ((,class (:background ,selection :foreground ,foreground))))
`(cfw:face-toolbar ((,class (:background ,aqua :foreground ,background :weight bold))))
`(cfw:face-toolbar-button-off ((,class (:background ,aqua :foreground ,background :weight bold))))
`(cfw:face-toolbar-button-on ((,class (:background ,aqua :foreground ,secondary-selection :weight bold))))
`(cfw:face-holiday ((,class (:background ,current-line :foreground ,green :weight bold))))
`(jabber-chat-prompt-local ((,class (:foreground ,yellow))))
`(jabber-chat-prompt-foreign ((,class (:foreground ,orange))))
`(jabber-chat-prompt-system ((,class (:foreground ,yellow :weight bold))))
`(jabber-chat-text-local ((,class (:foreground ,yellow))))
`(jabber-chat-text-foreign ((,class (:foreground ,orange))))
`(jabber-chat-text-error ((,class (:foreground ,red))))
`(jabber-roster-user-online ((,class (:foreground ,green))))
`(jabber-roster-user-xa ((,class :foreground ,comment)))
`(jabber-roster-user-dnd ((,class :foreground ,yellow)))
`(jabber-roster-user-away ((,class (:foreground ,orange))))
`(jabber-roster-user-chatty ((,class (:foreground ,purple))))
`(jabber-roster-user-error ((,class (:foreground ,red))))
`(jabber-roster-user-offline ((,class (:foreground ,comment))))
`(jabber-rare-time-face ((,class (:foreground ,comment))))
`(jabber-activity-face ((,class (:foreground ,purple))))
`(jabber-activity-personal-face ((,class (:foreground ,aqua))))
`(company-preview ((,class (:foreground ,comment :background ,inactive-gray))))
`(company-preview-common ((,class (:foreground ,comment :background ,inactive-gray)))) `(company-scrollbar-bg ((,class (:background "#F0F0F0"))))
`(company-scrollbar-fg ((,class (:background "#C0C0C0"))))
`(company-template-field ((,class (:background ,inactive-gray))))
`(company-tooltip ((,class (:weight bold :foreground, far-background :background ,inactive-gray))))
`(company-tooltip-annotation ((,class (:weight normal :foreground ,comment :background ,inactive-gray))))
`(company-tooltip-annotation-selection ((,class (:weight normal :inherit company-tooltip-selection))))
`(company-tooltip-common ((,class (:weight normal :inherit company-tooltip))))
`(company-tooltip-common-selection ((,class (:weight normal :inherit company-tooltip-selection))))
`(company-tooltip-selection ((,class (:weight bold :foreground ,foreground :background ,current-line))))
`(powerline-active1 ((t (:foreground ,foreground :background ,selection))))
`(powerline-active2 ((t (:foreground ,foreground :background ,inactive-gray))))
`(powerline-inactive1 ((t (:foreground ,comment :background ,selection))))
`(powerline-inactive2 ((t (:foreground ,comment :background ,selection))))
`(spaceline-python-venv ((t (:foreground ,yellow))))
`(spaceline-evil-normal ((t (:foreground ,foreground :background ,orange :inherit mode-line))))
`(spaceline-evil-insert ((t (:foreground ,background :background ,green :inherit mode-line))))
`(spaceline-evil-visual ((t (:foreground ,foreground :background ,selection :inherit mode-line))))
`(spacemacs-normal-face ((t (:inherit spaceline-evil-normal))))
`(spacemacs-insert-face ((t (:inherit spaceline-evil-insert))))
`(spacemacs-visual-face ((t (:inherit spaceline-evil-visual))))
`(outline-1 ((,class (:inherit nil :foreground ,"#eceff1"))))
`(outline-2 ((,class (:inherit nil :foreground ,"#e1f5fe"))))
`(outline-3 ((,class (:inherit nil :foreground ,"#a5d6a7"))))
`(outline-4 ((,class (:inherit nil :foreground ,"#ffcc80"))))
`(outline-5 ((,class (:inherit nil :foreground ,"#b3e5fc"))))
`(outline-6 ((,class (:inherit nil :foreground ,"CadetBlue1"))))
`(outline-7 ((,class (:inherit nil :foreground ,"aquamarine1"))))
`(outline-8 ((,class (:inherit nil :foreground ,purple))))
`(outline-9 ((,class (:inherit nil :foreground ,"LightSteelBlue1"))))
`(ledger-font-comment-face ((,class (:inherit font-lock-comment-face))))
`(ledger-font-occur-narrowed-face ((,class (:inherit font-lock-comment-face :invisible t))))
`(ledger-font-occur-xact-face ((,class (:inherit highlight))))
`(ledger-font-payee-cleared-face ((,class (:foreground ,green))))
`(ledger-font-payee-uncleared-face ((,class (:foreground ,aqua))))
`(ledger-font-posting-account-cleared-face ((,class (:foreground ,blue))))
`(ledger-font-posting-account-face ((,class (:foreground ,purple))))
`(ledger-font-posting-account-pending-face ((,class (:foreground ,yellow))))
`(ledger-font-xact-highlight-face ((,class (:inherit highlight))))
`(ledger-occur-narrowed-face ((,class (:inherit font-lock-comment-face :invisible t))))
`(ledger-occur-xact-face ((,class (:inherit highlight))))
`(font-latex-bold-face ((t (:inherit bold :foreground ,foreground))))
`(font-latex-doctex-documentation-face ((t (:background unspecified))))
`(font-latex-doctex-preprocessor-face ((t (:inherit (font-latex-doctex-documentation-face
font-lock-builtin-face font-lock-preprocessor-face)))))
`(font-latex-italic-face ((t (:inherit italic :foreground ,foreground))))
`(font-latex-math-face ((t (:foreground ,blue))))
`(font-latex-sectioning-0-face ((t (:inherit outline-1 :height 1.4))))
`(font-latex-sectioning-1-face ((t (:inherit outline-2 :height 1.35))))
`(font-latex-sectioning-2-face ((t (:inherit outline-3 :height 1.3))))
`(font-latex-sectioning-3-face ((t (:inherit outline-4 :height 1.25))))
`(font-latex-sectioning-4-face ((t (:inherit outline-5 :height 1.2))))
`(font-latex-sectioning-5-face ((t (:inherit outline-6 :height 1.1))))
`(font-latex-sedate-face ((t (:foreground ,green))))
`(font-latex-slide-title-face ((t (:inherit font-lock-type-face :weight bold :height 1.2))))
`(font-latex-string-face ((t (:inherit font-lock-string-face))))
`(font-latex-subscript-face ((t (:height 0.8))))
`(font-latex-superscript-face ((t (:height 0.8))))
`(font-latex-warning-face ((t (:inherit font-lock-warning-face))))
`(mu4e-header-face ((,class (:foreground ,subtle :inherit nil))))
`(mu4e-header-highlight-face ((,class (:underline nil :inherit region :background ,current-line))))
`(mu4e-header-marks-face ((,class (:underline nil :foreground ,yellow))))
`(mu4e-flagged-face ((,class (:foreground ,orange :inherit nil))))
`(mu4e-forwarded-face ((,class (:foreground ,aqua :inherit nil))))
`(mu4e-replied-face ((,class (:foreground ,green :inherit nil))))
`(mu4e-unread-face ((,class (:foreground ,foreground :inherit nil))))
`(mu4e-cited-1-face ((,class (:inherit outline-1 :slant normal))))
`(mu4e-cited-2-face ((,class (:inherit outline-2 :slant normal))))
`(mu4e-cited-3-face ((,class (:inherit outline-3 :slant normal))))
`(mu4e-cited-4-face ((,class (:inherit outline-4 :slant normal))))
`(mu4e-cited-5-face ((,class (:inherit outline-5 :slant normal))))
`(mu4e-cited-6-face ((,class (:inherit outline-6 :slant normal))))
`(mu4e-cited-7-face ((,class (:inherit outline-7 :slant normal))))
`(mu4e-ok-face ((,class (:foreground ,green))))
`(mu4e-view-contact-face ((,class (:inherit nil :foreground ,yellow))))
`(mu4e-view-link-face ((,class (:inherit link :foreground ,blue))))
`(mu4e-view-url-number-face ((,class (:inherit nil :foreground ,aqua))))
`(mu4e-view-attach-number-face ((,class (:inherit nil :foreground ,orange))))
`(mu4e-highlight-face ((,class (:inherit highlight))))
`(mu4e-title-face ((,class (:inherit nil :foreground ,green))))
`(gnus-cite-1 ((,class (:inherit outline-1 :foreground nil))))
`(gnus-cite-2 ((,class (:inherit outline-2 :foreground nil))))
`(gnus-cite-3 ((,class (:inherit outline-3 :foreground nil))))
`(gnus-cite-4 ((,class (:inherit outline-4 :foreground nil))))
`(gnus-cite-5 ((,class (:inherit outline-5 :foreground nil))))
`(gnus-cite-6 ((,class (:inherit outline-6 :foreground nil))))
`(gnus-cite-7 ((,class (:inherit outline-7 :foreground nil))))
`(gnus-cite-8 ((,class (:inherit outline-8 :foreground nil))))
`(gnus-header-content ((,class (:inherit message-header-other))))
`(gnus-header-subject ((,class (:inherit message-header-subject))))
`(gnus-header-from ((,class (:inherit message-header-other-face :weight bold :foreground ,orange))))
`(gnus-header-name ((,class (:inherit message-header-name))))
`(gnus-button ((,class (:inherit link :foreground nil))))
`(gnus-signature ((,class (:inherit font-lock-comment-face))))
`(gnus-summary-normal-unread ((,class (:foreground ,foreground :weight bold))))
`(gnus-summary-normal-read ((,class (:foreground ,comment :weight normal))))
`(gnus-summary-normal-ancient ((,class (:foreground ,aqua :weight normal))))
`(gnus-summary-normal-ticked ((,class (:foreground ,orange :weight normal))))
`(gnus-summary-low-unread ((,class (:foreground ,comment :weight normal))))
`(gnus-summary-low-read ((,class (:foreground ,comment :weight normal))))
`(gnus-summary-low-ancient ((,class (:foreground ,comment :weight normal))))
`(gnus-summary-high-unread ((,class (:foreground ,yellow :weight normal))))
`(gnus-summary-high-read ((,class (:foreground ,green :weight normal))))
`(gnus-summary-high-ancient ((,class (:foreground ,green :weight normal))))
`(gnus-summary-high-ticked ((,class (:foreground ,orange :weight normal))))
`(gnus-summary-cancelled ((,class (:foreground ,red :background nil :weight normal))))
`(gnus-group-mail-low ((,class (:foreground ,comment))))
`(gnus-group-mail-low-empty ((,class (:foreground ,comment))))
`(gnus-group-mail-1 ((,class (:foreground nil :weight normal :inherit outline-1))))
`(gnus-group-mail-2 ((,class (:foreground nil :weight normal :inherit outline-2))))
`(gnus-group-mail-3 ((,class (:foreground nil :weight normal :inherit outline-3))))
`(gnus-group-mail-4 ((,class (:foreground nil :weight normal :inherit outline-4))))
`(gnus-group-mail-5 ((,class (:foreground nil :weight normal :inherit outline-5))))
`(gnus-group-mail-6 ((,class (:foreground nil :weight normal :inherit outline-6))))
`(gnus-group-mail-1-empty ((,class (:inherit gnus-group-mail-1 :foreground ,comment))))
`(gnus-group-mail-2-empty ((,class (:inherit gnus-group-mail-2 :foreground ,comment))))
`(gnus-group-mail-3-empty ((,class (:inherit gnus-group-mail-3 :foreground ,comment))))
`(gnus-group-mail-4-empty ((,class (:inherit gnus-group-mail-4 :foreground ,comment))))
`(gnus-group-mail-5-empty ((,class (:inherit gnus-group-mail-5 :foreground ,comment))))
`(gnus-group-mail-6-empty ((,class (:inherit gnus-group-mail-6 :foreground ,comment))))
`(gnus-group-news-1 ((,class (:foreground nil :weight normal :inherit outline-5))))
`(gnus-group-news-2 ((,class (:foreground nil :weight normal :inherit outline-6))))
`(gnus-group-news-3 ((,class (:foreground nil :weight normal :inherit outline-7))))
`(gnus-group-news-4 ((,class (:foreground nil :weight normal :inherit outline-8))))
`(gnus-group-news-5 ((,class (:foreground nil :weight normal :inherit outline-1))))
`(gnus-group-news-6 ((,class (:foreground nil :weight normal :inherit outline-2))))
`(gnus-group-news-1-empty ((,class (:inherit gnus-group-news-1 :foreground ,comment))))
`(gnus-group-news-2-empty ((,class (:inherit gnus-group-news-2 :foreground ,comment))))
`(gnus-group-news-3-empty ((,class (:inherit gnus-group-news-3 :foreground ,comment))))
`(gnus-group-news-4-empty ((,class (:inherit gnus-group-news-4 :foreground ,comment))))
`(gnus-group-news-5-empty ((,class (:inherit gnus-group-news-5 :foreground ,comment))))
`(gnus-group-news-6-empty ((,class (:inherit gnus-group-news-6 :foreground ,comment))))
`(emms-playlist-selected-face ((,class (:foreground ,orange))))
`(emms-playlist-track-face ((,class (:foreground ,blue))))
`(emms-browser-track-face ((,class (:foreground ,blue))))
`(emms-browser-artist-face ((,class (:foreground ,red :height 1.3))))
`(emms-browser-composer-face ((,class (:inherit emms-browser-artist-face))))
`(emms-browser-performer-face ((,class (:inherit emms-browser-artist-face))))
`(emms-browser-album-face ((,class (:foreground ,green :height 1.2))))
`(stripe-highlight ((,class (:background ,current-line))))
`(stripe-hl-line ((,class (:background ,selection :foreground ,foreground))))
`(erc-direct-msg-face ((,class (:foreground ,orange))))
`(erc-error-face ((,class (:foreground ,red))))
`(erc-header-face ((,class (:foreground ,foreground :background ,selection))))
`(erc-input-face ((,class (:foreground ,green))))
`(erc-keyword-face ((,class (:foreground ,yellow))))
`(erc-current-nick-face ((,class (:foreground ,green))))
`(erc-my-nick-face ((,class (:foreground ,green))))
`(erc-nick-default-face ((,class (:weight normal :foreground ,purple))))
`(erc-nick-msg-face ((,class (:weight normal :foreground ,yellow))))
`(erc-notice-face ((,class (:foreground ,comment))))
`(erc-pal-face ((,class (:foreground ,orange))))
`(erc-prompt-face ((,class (:foreground ,blue))))
`(erc-timestamp-face ((,class (:foreground ,aqua))))
`(erc-keyword-face ((,class (:foreground ,green))))
`(erc-distinct-1-face ((,class (:foreground ,"#E91E63"))))
`(erc-distinct-2-face ((,class (:foreground ,"#2196F3"))))
`(erc-distinct-3-face ((,class (:foreground ,"#DCE775"))))
`(erc-distinct-4-face ((,class (:foreground ,"#B388FF"))))
`(erc-distinct-5-face ((,class (:foreground ,"#EF6C00"))))
`(erc-distinct-6-face ((,class (:foreground ,"#26A69A"))))
`(erc-distinct-7-face ((,class (:foreground ,"#FFCDD2"))))
`(twittering-username-face ((,class (:inherit erc-pal-face))))
`(twittering-uri-face ((,class (:foreground ,blue :inherit link))))
`(twittering-timeline-header-face ((,class (:foreground ,green :weight bold))))
`(twittering-timeline-footer-face ((,class (:inherit twittering-timeline-header-face))))
`(custom-variable-tag ((,class (:foreground ,blue))))
`(custom-group-tag ((,class (:foreground ,blue))))
`(custom-state ((,class (:foreground ,green))))
`(term ((,class (:foreground nil :background nil :inherit default))))
`(term-color-black ((,class (:foreground ,foreground :background ,foreground))))
`(term-color-red ((,class (:foreground ,red :background ,red))))
`(term-color-green ((,class (:foreground ,green :background ,green))))
`(term-color-yellow ((,class (:foreground ,yellow :background ,yellow))))
`(term-color-blue ((,class (:foreground ,blue :background ,blue))))
`(term-color-magenta ((,class (:foreground ,purple :background ,purple))))
`(term-color-cyan ((,class (:foreground ,aqua :background ,aqua))))
`(term-color-white ((,class (:foreground ,background :background ,background))))
`(elfeed-log-date-face ((,class (:foreground ,aqua))))
`(elfeed-log-error-level-face ((,class (:foreground ,red))))
`(elfeed-log-info-level-face ((,class (:foreground ,blue))))
`(elfeed-log-warn-level-face ((,class (:foreground ,orange))))
`(elfeed-search-date-face ((,class (:foreground ,purple))))
`(elfeed-search-feed-face ((,class (:foreground ,yellow))))
`(elfeed-search-tag-face ((,class (:foreground ,green))))
`(rpm-spec-dir-face ((,class (:foreground ,green))))
`(rpm-spec-doc-face ((,class (:foreground ,green))))
`(rpm-spec-ghost-face ((,class (:foreground ,red))))
`(rpm-spec-macro-face ((,class (:foreground ,yellow))))
`(rpm-spec-obsolete-tag-face ((,class (:foreground ,red))))
`(rpm-spec-package-face ((,class (:foreground ,red))))
`(rpm-spec-section-face ((,class (:foreground ,yellow))))
`(rpm-spec-tag-face ((,class (:foreground ,blue))))
`(rpm-spec-var-face ((,class (:foreground ,red)))))
(custom-theme-set-variables
'material
`(fci-rule-color ,current-line)
`(vc-annotate-color-map
'((20 . ,red)
(40 . ,orange)
(60 . ,yellow)
(80 . ,green)
(100 . ,aqua)
(120 . ,blue)
(140 . ,purple)
(160 . ,red)
(180 . ,orange)
(200 . ,yellow)
(220 . ,green)
(240 . ,aqua)
(260 . ,blue)
(280 . ,purple)
(300 . ,red)
(320 . ,orange)
(340 . ,yellow)
(360 . ,green)))
`(vc-annotate-very-old-color nil)
`(vc-annotate-background nil)
`(hl-sexp-background-color ,far-background)
`(ansi-color-names-vector (vector ,foreground ,red ,green ,yellow ,blue ,purple ,aqua ,background))
'(ansi-color-faces-vector [default bold shadow italic underline bold bold-italic bold])))
(provide-theme 'material)