From b5ad877177f4beb8dc533c799c069535773c3b8b Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Mon, 14 Oct 2024 22:30:10 +0700 Subject: [PATCH] First commit --- init.el | 74 + themes/dracula-theme.el | 1039 ++++++ themes/monokai-theme.el | 6585 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 7698 insertions(+) create mode 100644 init.el create mode 100644 themes/dracula-theme.el create mode 100644 themes/monokai-theme.el diff --git a/init.el b/init.el new file mode 100644 index 0000000..b6bc875 --- /dev/null +++ b/init.el @@ -0,0 +1,74 @@ +(require 'package) +(package-initialize) +(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) +(unless (package-installed-p 'use-package) + (package-install 'use-package)) +(require 'use-package) + +(use-package rainbow-mode :ensure t) +(use-package treemacs + :ensure t + :config + (treemacs-follow-mode t) ;; Enable follow mode + (setq treemacs-show-hidden-files t) ;; Show hidden files (optional) + (treemacs-fringe-indicator-mode t) ;; Show fringe indicators + (treemacs-git-mode 'deferred) ;; Enable Git integration + (global-set-key (kbd "C-\\") 'treemacs-select-window) + (global-set-key (kbd "M-`") 'treemacs-edit-workspaces) + (global-set-key (kbd "M-0") 'treemacs-switch-workspace) + ) ;; Keybinding to open Treemacs + +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ;; '(custom-enabled-themes '(tango-dark)) ;; Use a themes that available by emacs + '(package-selected-packages nil) ) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) + +; Custom themes that I download from internet +(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") +(load-theme 'dracula t) +(add-to-list 'default-frame-alist '(background-color . "unspecified-bg")) + +; make backup to a designated dir, mirroring the full path +(defun xah-backup-nested-dir-file-path (Fpath) + "Return a new file path and create dirs. +If the new path's directories does not exist, create them. +version 2022-06-09" + (let* ($backupRoot $backupFilePath) + (setq $backupRoot "~/.emacs.d/backup/") + ;; remove Windows driver letter in path, e.g. C: + (setq $backupFilePath + (format "%s%s~" $backupRoot (replace-regexp-in-string "^[A-Za-z]:/" "" Fpath))) + (make-directory + (file-name-directory $backupFilePath) + (file-name-directory $backupFilePath)) + $backupFilePath + )) +(setq make-backup-file-name-function 'xah-backup-nested-dir-file-path) + +; disable backup +; (setq backup-inhibited t) + +; disable auto save +(setq auto-save-default nil) + +;; For example, set the default tab width to 4 spaces +(setq-default tab-width 4) +;; For Python mode, set the indentation style +(add-hook 'python-mode-hook + (lambda () + (setq indent-tabs-mode nil) ; Use spaces instead of tabs + (setq python-indent-offset 4) )) ; Set the indentation offset +;; For JavaScript mode, set the indentation style +(add-hook 'js-mode-hook + (lambda () + (setq indent-tabs-mode nil) ; Use spaces instead of tabs + (setq js-indent-level 4))) ; Set the indentation offset diff --git a/themes/dracula-theme.el b/themes/dracula-theme.el new file mode 100644 index 0000000..096626b --- /dev/null +++ b/themes/dracula-theme.el @@ -0,0 +1,1039 @@ +;;; dracula-theme.el --- Dracula Theme + +;; Copyright 2015-present, All rights reserved +;; +;; Code licensed under the MIT license + +;; Maintainer: Étienne Deparis +;; Author: film42 +;; Version: 1.8.2 +;; Package-Requires: ((emacs "24.3")) +;; URL: https://github.com/dracula/emacs + +;;; Commentary: + +;; A dark color theme available for a number of editors. +;; This theme tries as much as possible to follow the consensual +;; specification (see URL `https://spec.draculatheme.com/'). + +;;; News: + +;;;; Version 1.8.3 + +;; Add missing comma in front of lsp-ui-sideline-current-symbol color +;; Change default region face + +;;;; Version 1.8.2 + +;; Fix ansi-color definition +;; Support solaire-mode + +;;;; Version 1.8.1 + +;; Fix missing 1.8.0 docstring... + +;;;; Version 1.8.0 + +;; New package support: +;; +;; - Add support for ansi-color-names-vector +;; - Add support for bookmark-face +;; - Add support for (e)diff-mode. Add dark-red and dark-green new colors +;; - Add support for eldoc-box +;; - Add support for elfeed +;; - Add support for gemini-mode and elpher +;; - Add support for go-test +;; - Add support for header-line +;; - Add support for ivy +;; - Add support for lsp-ui +;; - Add support for neotree +;; - Add support for perspective and mini-modeline +;; - Add support for reStructuredText +;; - Add support for selectrum-mode +;; - Add support for shadow-face +;; - Add support for speedbar +;; - Add support for telephone-line +;; - Add support for tooltip-face +;; - Add support for tree-sitter and add missing font-lock faces +;; - Add support for web-mode-css-property-name-face +;; - Add support for which-key-mode +;; +;; - Fix ‘message-cited-text-*’ colors +;; - Use same color for gnus than message mode and old mu4e-view mode +;; - Follow dracula color specs for Markdown and Org mode +;; - Improve readability of company colors +;; - Improve default mode-line colors +;; - Set powerline active and inactive dracula colors +;; - Improve completions (from minibuffer.el) colors +;; +;; Terminal related things: +;; +;; - Try a new 256 colors palette +;; - Add a setting to force 24bit colors on 256 colors terms +;; - Do not advertize dracula-use-24-bit-colors-on-256-colors-terms in README +;; - Avoid black and black text for TUI applications +;; - Use a dark menubar on terminals +;; +;; Tests related things: +;; +;; - Improve a little test script +;; - Avoid auto-save-default folder creation in test profile +;; - Remove test profile from melpa package content +;; +;; README related things: +;; +;; - Remove outdated homebrew instructions +;; - Update screenshot +;; - Update install instruction to advertize NonGNU Elpa +;; - Update README configure section with correct names. +;; - 📃 Standardize docs with other dracula repositories +;; +;; Others: +;; +;; - Fix comment before color listing +;; - Use unspecified-bg/-fg instead of nil color spec +;; - Use inherit highlight for two matching company faces +;; - Remove useless , in front of inherited faces +;; - Remove cl-lib dependency +;; - Reduce eval call scope +;; - Little change to file metadata +;; - Remove some unspecified color specifications +;; - Alphabetically sort basic faces settings +;; - Move mode-line faces in basic faces section +;; - Little adjustments for eglot package +;; - Remove bg3 as it was very similar to dracula-current +;; - Rename other-blue to dark-blue +;; - Colorize shr title as in the other markup modes +;; - Improve magit faces +;; + +;;; Code: +(deftheme dracula) + + +;;;; Configuration options: + +(defgroup dracula nil + "Dracula theme options. + +The theme has to be reloaded after changing anything in this group." + :group 'faces) + +(defcustom dracula-enlarge-headings t + "Use different font sizes for some headings and titles." + :type 'boolean + :group 'dracula) + +(defcustom dracula-height-title-1 1.3 + "Font size 100%." + :type 'number + :group 'dracula) + +(defcustom dracula-height-title-2 1.1 + "Font size 110%." + :type 'number + :group 'dracula) + +(defcustom dracula-height-title-3 1.0 + "Font size 130%." + :type 'number + :group 'dracula) + +(defcustom dracula-height-doc-title 1.44 + "Font size 144%." + :type 'number + :group 'dracula) + +(defcustom dracula-alternate-mode-line-and-minibuffer nil + "Use less bold and pink in the minibuffer." + :type 'boolean + :group 'dracula) + +(defvar dracula-use-24-bit-colors-on-256-colors-terms nil + "Use true colors even on terminals announcing less capabilities. + +Beware the use of this variable. Using it may lead to unwanted +behavior, the most common one being an ugly blue background on +terminals, which don't understand 24 bit colors. To avoid this +blue background, when using this variable, one can try to add the +following lines in their config file after having load the +Dracula theme: + + (unless (display-graphic-p) + (set-face-background \\='default \"black\" nil)) + +There is a lot of discussion behind the 256 colors theme (see URL +`https://github.com/dracula/emacs/pull/57'). Please take time to +read it before opening a new issue about your will.") + + +;;;; Theme definition: + +;; Assigment form: VARIABLE COLOR [256-COLOR [TTY-COLOR]] +(let ((colors '(;; Upstream theme color + (dracula-bg "#282a36" "unspecified-bg" "unspecified-bg") ; official background + (dracula-fg "#f8f8f2" "#ffffff" "brightwhite") ; official foreground + (dracula-current "#44475a" "#303030" "brightblack") ; official current-line/selection + (dracula-comment "#6272a4" "#5f5faf" "blue") ; official comment + (dracula-cyan "#8be9fd" "#87d7ff" "brightcyan") ; official cyan + (dracula-green "#50fa7b" "#5fff87" "green") ; official green + (dracula-orange "#ffb86c" "#ffaf5f" "brightred") ; official orange + (dracula-pink "#ff79c6" "#ff87d7" "magenta") ; official pink + (dracula-purple "#bd93f9" "#af87ff" "brightmagenta") ; official purple + (dracula-red "#ff5555" "#ff8787" "red") ; official red + (dracula-yellow "#f1fa8c" "#ffff87" "yellow") ; official yellow + ;; Other colors + (bg2 "#373844" "#121212" "brightblack") + (bg3 "#565761" "#444444" "brightblack") + (fg2 "#e2e2dc" "#e4e4e4" "brightwhite") + (fg3 "#ccccc7" "#c6c6c6" "white") + (fg4 "#b6b6b2" "#b2b2b2" "white") + (dark-red "#880000" "#870000" "red") ; 40% darker + (dark-green "#037a22" "#00af00" "green") ; 40% darker + (dark-blue "#0189cc" "#0087ff" "brightblue"))) + (faces '(;; default / basic faces + (cursor :background ,fg3) + (default :background ,dracula-bg :foreground ,dracula-fg) + (default-italic :slant italic) + (error :foreground ,dracula-red) + (ffap :foreground ,fg4) + (fringe :background ,dracula-bg :foreground ,fg4) + (header-line :inherit 'mode-line) + (highlight :foreground ,fg3 :background ,dracula-current) + (hl-line :background ,bg2 :extend t) + (info-quoted-name :foreground ,dracula-orange) + (info-string :foreground ,dracula-yellow) + (lazy-highlight :foreground ,fg2 :background ,bg2) + (link :foreground ,dracula-cyan :underline t) + (linum :slant italic :foreground ,bg3 :background ,dracula-bg) + (line-number :slant italic :foreground ,bg3 :background ,dracula-bg) + (match :background ,dracula-yellow :foreground ,dracula-bg) + (menu :background ,dracula-current :inverse-video nil + ,@(if dracula-alternate-mode-line-and-minibuffer + (list :foreground fg3) + (list :foreground dracula-fg))) + (minibuffer-prompt + ,@(if dracula-alternate-mode-line-and-minibuffer + (list :weight 'normal :foreground dracula-fg) + (list :weight 'bold :foreground dracula-pink))) + (mode-line :background ,dracula-current + :box ,dracula-current :inverse-video nil + ,@(if dracula-alternate-mode-line-and-minibuffer + (list :foreground fg3) + (list :foreground dracula-fg))) + (mode-line-inactive + :background ,dracula-bg :inverse-video nil + ,@(if dracula-alternate-mode-line-and-minibuffer + (list :foreground dracula-comment :box dracula-bg) + (list :foreground fg4 :box bg2))) + (read-multiple-choice-face :inherit completions-first-difference) + (region :background ,dracula-current :extend nil) + (shadow :foreground ,dracula-comment) + (success :foreground ,dracula-green) + (tooltip :foreground ,dracula-fg :background ,dracula-current) + (trailing-whitespace :background ,dracula-orange) + (vertical-border :foreground ,bg2) + (warning :foreground ,dracula-orange) + ;; syntax / font-lock + (font-lock-builtin-face :foreground ,dracula-cyan :slant italic) + (font-lock-comment-face :inherit shadow) + (font-lock-comment-delimiter-face :inherit shadow) + (font-lock-constant-face :foreground ,dracula-purple) + (font-lock-doc-face :foreground ,dracula-comment) + (font-lock-function-name-face :foreground ,dracula-green :weight bold) + (font-lock-keyword-face :foreground ,dracula-pink :weight bold) + (font-lock-negation-char-face :foreground ,dracula-cyan) + (font-lock-number-face :foreground ,dracula-purple) + (font-lock-operator-face :foreground ,dracula-pink) + (font-lock-preprocessor-face :foreground ,dracula-orange) + (font-lock-reference-face :inherit font-lock-constant-face) ;; obsolete + (font-lock-regexp-grouping-backslash :foreground ,dracula-cyan) + (font-lock-regexp-grouping-construct :foreground ,dracula-purple) + (font-lock-string-face :foreground ,dracula-yellow) + (font-lock-type-face :inherit font-lock-builtin-face) + (font-lock-variable-name-face :foreground ,dracula-fg :weight bold) + (font-lock-warning-face :inherit warning :background ,bg2) + ;; auto-complete + (ac-completion-face :underline t :foreground ,dracula-pink) + ;; ansi-color + (ansi-color-black :foreground ,dracula-bg :background ,dracula-bg) + (ansi-color-bright-black :foreground "black" :background "black") + (ansi-color-blue :foreground ,dracula-purple :background ,dracula-purple) + (ansi-color-bright-blue :foreground ,dracula-purple + :background ,dracula-purple + :weight bold) + (ansi-color-cyan :foreground ,dracula-cyan :background ,dracula-cyan) + (ansi-color-bright-cyan :foreground ,dracula-cyan + :background ,dracula-cyan + :weight bold) + (ansi-color-green :foreground ,dracula-green :background ,dracula-green) + (ansi-color-bright-green :foreground ,dracula-green + :background ,dracula-green + :weight bold) + (ansi-color-magenta :foreground ,dracula-pink :background ,dracula-pink) + (ansi-color-bright-magenta :foreground ,dracula-pink + :background ,dracula-pink + :weight bold) + (ansi-color-red :foreground ,dracula-red :background ,dracula-red) + (ansi-color-bright-red :foreground ,dracula-red + :background ,dracula-red + :weight bold) + (ansi-color-white :foreground ,dracula-fg :background ,dracula-fg) + (ansi-color-bright-white :foreground "white" :background "white") + (ansi-color-yellow :foreground ,dracula-yellow :background ,dracula-yellow) + (ansi-color-bright-yellow :foreground ,dracula-yellow + :background ,dracula-yellow + :weight bold) + ;; bookmarks + (bookmark-face :foreground ,dracula-pink) + ;; company + (company-echo-common :foreground ,dracula-bg :background ,dracula-fg) + (company-preview :background ,dracula-current :foreground ,dark-blue) + (company-preview-common :inherit company-preview + :foreground ,dracula-pink) + (company-preview-search :inherit company-preview + :foreground ,dracula-green) + (company-scrollbar-bg :background ,dracula-comment) + (company-scrollbar-fg :foreground ,dark-blue) + (company-tooltip :inherit tooltip) + (company-tooltip-search :foreground ,dracula-green + :underline t) + (company-tooltip-search-selection :background ,dracula-green + :foreground ,dracula-bg) + (company-tooltip-selection :inherit match) + (company-tooltip-mouse :background ,dracula-bg) + (company-tooltip-common :foreground ,dracula-pink :weight bold) + ;;(company-tooltip-common-selection :inherit company-tooltip-common) + (company-tooltip-annotation :foreground ,dracula-cyan) + ;;(company-tooltip-annotation-selection :inherit company-tooltip-annotation) + ;; completions (minibuffer.el) + (completions-annotations :inherit font-lock-comment-face) + (completions-common-part :foreground ,dracula-green) + (completions-first-difference :foreground ,dracula-pink :weight bold) + ;; diff + (diff-added :background ,dark-green :foreground ,dracula-fg :extend t) + (diff-removed :background ,dark-red :foreground ,dracula-fg :extend t) + (diff-refine-added :background ,dracula-green + :foreground ,dracula-bg) + (diff-refine-removed :background ,dracula-red + :foreground ,dracula-fg) + (diff-indicator-added :foreground ,dracula-green) + (diff-indicator-removed :foreground ,dracula-red) + (diff-indicator-changed :foreground ,dracula-orange) + (diff-error :foreground ,dracula-red, :background ,dracula-bg + :weight bold) + ;; diff-hl + (diff-hl-change :foreground ,dracula-orange :background ,dracula-orange) + (diff-hl-delete :foreground ,dracula-red :background ,dracula-red) + (diff-hl-insert :foreground ,dracula-green :background ,dracula-green) + ;; dired + (dired-directory :foreground ,dracula-green :weight normal) + (dired-flagged :foreground ,dracula-pink) + (dired-header :foreground ,fg3 :background ,dracula-bg) + (dired-ignored :inherit shadow) + (dired-mark :foreground ,dracula-fg :weight bold) + (dired-marked :foreground ,dracula-orange :weight bold) + (dired-perm-write :foreground ,fg3 :underline t) + (dired-symlink :foreground ,dracula-yellow :weight normal :slant italic) + (dired-warning :foreground ,dracula-orange :underline t) + (diredp-compressed-file-name :foreground ,fg3) + (diredp-compressed-file-suffix :foreground ,fg4) + (diredp-date-time :foreground ,dracula-fg) + (diredp-deletion-file-name :foreground ,dracula-pink :background ,dracula-current) + (diredp-deletion :foreground ,dracula-pink :weight bold) + (diredp-dir-heading :foreground ,fg2 :background ,bg3) + (diredp-dir-name :inherit dired-directory) + (diredp-dir-priv :inherit dired-directory) + (diredp-executable-tag :foreground ,dracula-orange) + (diredp-file-name :foreground ,dracula-fg) + (diredp-file-suffix :foreground ,fg4) + (diredp-flag-mark-line :foreground ,fg2 :slant italic :background ,dracula-current) + (diredp-flag-mark :foreground ,fg2 :weight bold :background ,dracula-current) + (diredp-ignored-file-name :foreground ,dracula-fg) + (diredp-mode-line-flagged :foreground ,dracula-orange) + (diredp-mode-line-marked :foreground ,dracula-orange) + (diredp-no-priv :foreground ,dracula-fg) + (diredp-number :foreground ,dracula-cyan) + (diredp-other-priv :foreground ,dracula-orange) + (diredp-rare-priv :foreground ,dracula-orange) + (diredp-read-priv :foreground ,dracula-purple) + (diredp-write-priv :foreground ,dracula-pink) + (diredp-exec-priv :foreground ,dracula-yellow) + (diredp-symlink :foreground ,dracula-orange) + (diredp-link-priv :foreground ,dracula-orange) + (diredp-autofile-name :foreground ,dracula-yellow) + (diredp-tagged-autofile-name :foreground ,dracula-yellow) + ;; ediff + (ediff-current-diff-A :background ,dark-red) + (ediff-fine-diff-A :background ,dracula-red :foreground ,dracula-fg) + (ediff-current-diff-B :background ,dark-green) + (ediff-fine-diff-B :background ,dracula-green :foreground ,dracula-bg) + (ediff-current-diff-C :background ,dark-blue) + (ediff-fine-diff-C :background ,dracula-cyan :foreground ,dracula-bg) + ;; eglot + (eglot-diagnostic-tag-unnecessary-face :inherit warning) + (eglot-diagnostic-tag-deprecated-face :inherit warning :strike-through t) + ;; eldoc-box + (eldoc-box-border :background ,dracula-current) + (eldoc-box-body :background ,dracula-current) + ;; elfeed + (elfeed-search-date-face :foreground ,dracula-comment) + (elfeed-search-title-face :foreground ,dracula-fg) + (elfeed-search-unread-title-face :foreground ,dracula-pink :weight bold) + (elfeed-search-feed-face :foreground ,dracula-fg :weight bold) + (elfeed-search-tag-face :foreground ,dracula-green) + (elfeed-search-last-update-face :weight bold) + (elfeed-search-unread-count-face :foreground ,dracula-pink) + (elfeed-search-filter-face :foreground ,dracula-green :weight bold) + ;;(elfeed-log-date-face :inherit font-lock-type-face) + (elfeed-log-error-level-face :foreground ,dracula-red) + (elfeed-log-warn-level-face :foreground ,dracula-orange) + (elfeed-log-info-level-face :foreground ,dracula-cyan) + (elfeed-log-debug-level-face :foreground ,dracula-comment) + ;; elpher + (elpher-gemini-heading1 :inherit bold :foreground ,dracula-pink + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-1))) + (elpher-gemini-heading2 :inherit bold :foreground ,dracula-purple + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-2))) + (elpher-gemini-heading3 :weight normal :foreground ,dracula-green + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-3))) + (elpher-gemini-preformatted :inherit fixed-pitch + :foreground ,dracula-orange) + ;; enh-ruby + (enh-ruby-heredoc-delimiter-face :foreground ,dracula-yellow) + (enh-ruby-op-face :foreground ,dracula-pink) + (enh-ruby-regexp-delimiter-face :foreground ,dracula-yellow) + (enh-ruby-string-delimiter-face :foreground ,dracula-yellow) + ;; flyspell + (flyspell-duplicate :underline (:style wave :color ,dracula-orange)) + (flyspell-incorrect :underline (:style wave :color ,dracula-red)) + ;; font-latex + (font-latex-bold-face :foreground ,dracula-purple) + (font-latex-italic-face :foreground ,dracula-pink :slant italic) + (font-latex-match-reference-keywords :foreground ,dracula-cyan) + (font-latex-match-variable-keywords :foreground ,dracula-fg) + (font-latex-string-face :foreground ,dracula-yellow) + ;; gemini + (gemini-heading-face-1 :inherit bold :foreground ,dracula-pink + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-1))) + (gemini-heading-face-2 :inherit bold :foreground ,dracula-purple + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-2))) + (gemini-heading-face-3 :weight normal :foreground ,dracula-green + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-3))) + (gemini-heading-face-rest :weight normal :foreground ,dracula-yellow) + (gemini-quote-face :foreground ,dracula-purple) + ;; go-test + (go-test--ok-face :inherit success) + (go-test--error-face :inherit error) + (go-test--warning-face :inherit warning) + (go-test--pointer-face :foreground ,dracula-pink) + (go-test--standard-face :foreground ,dracula-cyan) + ;; gnus-group + (gnus-group-mail-1 :foreground ,dracula-pink :weight bold) + (gnus-group-mail-1-empty :inherit gnus-group-mail-1 :weight normal) + (gnus-group-mail-2 :foreground ,dracula-cyan :weight bold) + (gnus-group-mail-2-empty :inherit gnus-group-mail-2 :weight normal) + (gnus-group-mail-3 :foreground ,dracula-comment :weight bold) + (gnus-group-mail-3-empty :inherit gnus-group-mail-3 :weight normal) + (gnus-group-mail-low :foreground ,dracula-current :weight bold) + (gnus-group-mail-low-empty :inherit gnus-group-mail-low :weight normal) + (gnus-group-news-1 :foreground ,dracula-pink :weight bold) + (gnus-group-news-1-empty :inherit gnus-group-news-1 :weight normal) + (gnus-group-news-2 :foreground ,dracula-cyan :weight bold) + (gnus-group-news-2-empty :inherit gnus-group-news-2 :weight normal) + (gnus-group-news-3 :foreground ,dracula-comment :weight bold) + (gnus-group-news-3-empty :inherit gnus-group-news-3 :weight normal) + (gnus-group-news-4 :inherit gnus-group-news-low) + (gnus-group-news-4-empty :inherit gnus-group-news-low-empty) + (gnus-group-news-5 :inherit gnus-group-news-low) + (gnus-group-news-5-empty :inherit gnus-group-news-low-empty) + (gnus-group-news-6 :inherit gnus-group-news-low) + (gnus-group-news-6-empty :inherit gnus-group-news-low-empty) + (gnus-group-news-low :foreground ,dracula-current :weight bold) + (gnus-group-news-low-empty :inherit gnus-group-news-low :weight normal) + (gnus-header-content :foreground ,dracula-purple) + (gnus-header-from :foreground ,dracula-fg) + (gnus-header-name :foreground ,dracula-green) + (gnus-header-subject :foreground ,dracula-pink :weight bold) + (gnus-summary-markup-face :foreground ,dracula-cyan) + (gnus-summary-high-unread :foreground ,dracula-pink :weight bold) + (gnus-summary-high-read :inherit gnus-summary-high-unread :weight normal) + (gnus-summary-high-ancient :inherit gnus-summary-high-read) + (gnus-summary-high-ticked :inherit gnus-summary-high-read :underline t) + (gnus-summary-normal-unread :foreground ,dark-blue :weight bold) + (gnus-summary-normal-read :foreground ,dracula-comment :weight normal) + (gnus-summary-normal-ancient :inherit gnus-summary-normal-read :weight light) + (gnus-summary-normal-ticked :foreground ,dracula-pink :weight bold) + (gnus-summary-low-unread :foreground ,dracula-comment :weight bold) + (gnus-summary-low-read :inherit gnus-summary-low-unread :weight normal) + (gnus-summary-low-ancient :inherit gnus-summary-low-read) + (gnus-summary-low-ticked :inherit gnus-summary-low-read :underline t) + (gnus-summary-selected :inverse-video t) + ;; haskell-mode + (haskell-operator-face :foreground ,dracula-pink) + (haskell-constructor-face :foreground ,dracula-purple) + ;; helm + (helm-bookmark-w3m :foreground ,dracula-purple) + (helm-buffer-not-saved :foreground ,dracula-purple :background ,dracula-bg) + (helm-buffer-process :foreground ,dracula-orange :background ,dracula-bg) + (helm-buffer-saved-out :foreground ,dracula-fg :background ,dracula-bg) + (helm-buffer-size :foreground ,dracula-fg :background ,dracula-bg) + (helm-candidate-number :foreground ,dracula-bg :background ,dracula-fg) + (helm-ff-directory :foreground ,dracula-green :background ,dracula-bg :weight bold) + (helm-ff-dotted-directory :foreground ,dracula-green :background ,dracula-bg :weight normal) + (helm-ff-executable :foreground ,dark-blue :background ,dracula-bg :weight normal) + (helm-ff-file :foreground ,dracula-fg :background ,dracula-bg :weight normal) + (helm-ff-invalid-symlink :foreground ,dracula-pink :background ,dracula-bg :weight bold) + (helm-ff-prefix :foreground ,dracula-bg :background ,dracula-pink :weight normal) + (helm-ff-symlink :foreground ,dracula-pink :background ,dracula-bg :weight bold) + (helm-grep-cmd-line :foreground ,dracula-fg :background ,dracula-bg) + (helm-grep-file :foreground ,dracula-fg :background ,dracula-bg) + (helm-grep-finish :foreground ,fg2 :background ,dracula-bg) + (helm-grep-lineno :foreground ,dracula-fg :background ,dracula-bg) + (helm-grep-match :inherit match) + (helm-grep-running :foreground ,dracula-green :background ,dracula-bg) + (helm-header :foreground ,fg2 :background ,dracula-bg :underline nil :box nil) + (helm-moccur-buffer :foreground ,dracula-green :background ,dracula-bg) + (helm-selection :background ,bg2 :underline nil) + (helm-selection-line :background ,bg2) + (helm-separator :foreground ,dracula-purple :background ,dracula-bg) + (helm-source-go-package-godoc-description :foreground ,dracula-yellow) + (helm-source-header :foreground ,dracula-pink :background ,dracula-bg :underline nil :weight bold) + (helm-time-zone-current :foreground ,dracula-orange :background ,dracula-bg) + (helm-time-zone-home :foreground ,dracula-purple :background ,dracula-bg) + (helm-visible-mark :foreground ,dracula-bg :background ,dracula-current) + ;; highlight-indentation minor mode + (highlight-indentation-face :background ,bg2) + ;; icicle + (icicle-whitespace-highlight :background ,dracula-fg) + (icicle-special-candidate :foreground ,fg2) + (icicle-extra-candidate :foreground ,fg2) + (icicle-search-main-regexp-others :foreground ,dracula-fg) + (icicle-search-current-input :foreground ,dracula-pink) + (icicle-search-context-level-8 :foreground ,dracula-orange) + (icicle-search-context-level-7 :foreground ,dracula-orange) + (icicle-search-context-level-6 :foreground ,dracula-orange) + (icicle-search-context-level-5 :foreground ,dracula-orange) + (icicle-search-context-level-4 :foreground ,dracula-orange) + (icicle-search-context-level-3 :foreground ,dracula-orange) + (icicle-search-context-level-2 :foreground ,dracula-orange) + (icicle-search-context-level-1 :foreground ,dracula-orange) + (icicle-search-main-regexp-current :foreground ,dracula-fg) + (icicle-saved-candidate :foreground ,dracula-fg) + (icicle-proxy-candidate :foreground ,dracula-fg) + (icicle-mustmatch-completion :foreground ,dracula-purple) + (icicle-multi-command-completion :foreground ,fg2 :background ,bg2) + (icicle-msg-emphasis :foreground ,dracula-green) + (icicle-mode-line-help :foreground ,fg4) + (icicle-match-highlight-minibuffer :foreground ,dracula-orange) + (icicle-match-highlight-Completions :foreground ,dracula-green) + (icicle-key-complete-menu-local :foreground ,dracula-fg) + (icicle-key-complete-menu :foreground ,dracula-fg) + (icicle-input-completion-fail-lax :foreground ,dracula-pink) + (icicle-input-completion-fail :foreground ,dracula-pink) + (icicle-historical-candidate-other :foreground ,dracula-fg) + (icicle-historical-candidate :foreground ,dracula-fg) + (icicle-current-candidate-highlight :foreground ,dracula-orange :background ,dracula-current) + (icicle-Completions-instruction-2 :foreground ,fg4) + (icicle-Completions-instruction-1 :foreground ,fg4) + (icicle-completion :foreground ,dracula-fg) + (icicle-complete-input :foreground ,dracula-orange) + (icicle-common-match-highlight-Completions :foreground ,dracula-purple) + (icicle-candidate-part :foreground ,dracula-fg) + (icicle-annotation :foreground ,fg4) + ;; icomplete + (icompletep-determined :foreground ,dracula-orange) + ;; ido + (ido-first-match + ,@(if dracula-alternate-mode-line-and-minibuffer + (list :weight 'normal :foreground dracula-green) + (list :weight 'bold :foreground dracula-pink))) + (ido-only-match :foreground ,dracula-orange) + (ido-subdir :foreground ,dracula-yellow) + (ido-virtual :foreground ,dracula-cyan) + (ido-incomplete-regexp :inherit font-lock-warning-face) + (ido-indicator :foreground ,dracula-fg :background ,dracula-pink) + ;; ivy + (ivy-current-match + ,@(if dracula-alternate-mode-line-and-minibuffer + (list :weight 'normal :background dracula-current :foreground dracula-green) + (list :weight 'bold :background dracula-current :foreground dracula-pink))) + ;; Highlights the background of the match. + (ivy-minibuffer-match-face-1 :background ,dracula-current) + ;; Highlights the first matched group. + (ivy-minibuffer-match-face-2 :background ,dracula-green + :foreground ,dracula-bg) + ;; Highlights the second matched group. + (ivy-minibuffer-match-face-3 :background ,dracula-yellow + :foreground ,dracula-bg) + ;; Highlights the third matched group. + (ivy-minibuffer-match-face-4 :background ,dracula-pink + :foreground ,dracula-bg) + (ivy-confirm-face :foreground ,dracula-orange) + (ivy-match-required-face :foreground ,dracula-red) + (ivy-subdir :foreground ,dracula-yellow) + (ivy-remote :foreground ,dracula-pink) + (ivy-virtual :foreground ,dracula-cyan) + ;; isearch + (isearch :inherit match :weight bold) + (isearch-fail :foreground ,dracula-bg :background ,dracula-orange) + ;; jde-java + (jde-java-font-lock-constant-face :foreground ,dracula-cyan) + (jde-java-font-lock-modifier-face :foreground ,dracula-pink) + (jde-java-font-lock-number-face :foreground ,dracula-fg) + (jde-java-font-lock-package-face :foreground ,dracula-fg) + (jde-java-font-lock-private-face :foreground ,dracula-pink) + (jde-java-font-lock-public-face :foreground ,dracula-pink) + ;; js2-mode + (js2-external-variable :foreground ,dracula-purple) + (js2-function-param :foreground ,dracula-cyan) + (js2-jsdoc-html-tag-delimiter :foreground ,dracula-yellow) + (js2-jsdoc-html-tag-name :foreground ,dark-blue) + (js2-jsdoc-value :foreground ,dracula-yellow) + (js2-private-function-call :foreground ,dracula-cyan) + (js2-private-member :foreground ,fg3) + ;; js3-mode + (js3-error-face :underline ,dracula-orange) + (js3-external-variable-face :foreground ,dracula-fg) + (js3-function-param-face :foreground ,dracula-pink) + (js3-instance-member-face :foreground ,dracula-cyan) + (js3-jsdoc-tag-face :foreground ,dracula-pink) + (js3-warning-face :underline ,dracula-pink) + ;; lsp + (lsp-ui-peek-peek :background ,dracula-bg) + (lsp-ui-peek-list :background ,bg2) + (lsp-ui-peek-filename :foreground ,dracula-pink :weight bold) + (lsp-ui-peek-line-number :foreground ,dracula-fg) + (lsp-ui-peek-highlight :inherit highlight :distant-foreground ,dracula-bg) + (lsp-ui-peek-header :background ,dracula-current :foreground ,fg3, :weight bold) + (lsp-ui-peek-footer :inherit lsp-ui-peek-header) + (lsp-ui-peek-selection :inherit match) + (lsp-ui-sideline-symbol :foreground ,fg4 :box (:line-width -1 :color ,fg4) :height 0.99) + (lsp-ui-sideline-current-symbol :foreground ,dracula-fg :weight ultra-bold + :box (:line-width -1 :color ,dracula-fg) :height 0.99) + (lsp-ui-sideline-code-action :foreground ,dracula-yellow) + (lsp-ui-sideline-symbol-info :slant italic :height 0.99) + (lsp-ui-doc-background :background ,dracula-bg) + (lsp-ui-doc-header :foreground ,dracula-bg :background ,dracula-cyan) + ;; magit + (magit-branch-local :foreground ,dracula-cyan) + (magit-branch-remote :foreground ,dracula-green) + (magit-refname :foreground ,dark-blue) + (magit-tag :foreground ,dracula-orange) + (magit-hash :foreground ,dracula-comment) + (magit-dimmed :foreground ,dracula-comment) + (magit-section-heading :foreground ,dracula-pink :weight bold) + (magit-section-highlight :background ,dracula-current :extend t) + (magit-diff-context :foreground ,fg3 :extend t) + (magit-diff-context-highlight :inherit magit-section-highlight + :foreground ,dracula-fg) + (magit-diff-revision-summary :foreground ,dracula-orange + :background ,dracula-bg + :weight bold) + (magit-diff-revision-summary-highlight :inherit magit-section-highlight + :foreground ,dracula-orange + :weight bold) + (magit-diff-added :background ,dracula-bg :foreground ,dracula-green) + (magit-diff-added-highlight :background ,dracula-current + :foreground ,dracula-green) + (magit-diff-removed :background ,dracula-bg :foreground ,dracula-red) + (magit-diff-removed-highlight :background ,dracula-current + :foreground ,dracula-red) + (magit-diff-file-heading :foreground ,dracula-fg) + (magit-diff-file-heading-highlight :inherit magit-section-highlight + :weight bold) + (magit-diff-file-heading-selection + :inherit magit-diff-file-heading-highlight + :foreground ,dracula-pink) + (magit-diff-hunk-heading :inherit magit-diff-context + :background ,bg3) + (magit-diff-hunk-heading-highlight + :inherit magit-diff-context-highlight + :weight bold) + (magit-diff-hunk-heading-selection + :inherit magit-diff-hunk-heading-highlight + :foreground ,dracula-pink) + (magit-diff-lines-heading + :inherit magit-diff-hunk-heading-highlight + :foreground ,dracula-pink) + (magit-diff-lines-boundary :background ,dracula-pink) + (magit-diffstat-added :foreground ,dracula-green) + (magit-diffstat-removed :foreground ,dracula-red) + (magit-log-author :foreground ,dracula-comment) + (magit-log-date :foreground ,dracula-comment) + (magit-log-graph :foreground ,dracula-yellow) + (magit-process-ng :foreground ,dracula-orange :weight bold) + (magit-process-ok :foreground ,dracula-green :weight bold) + (magit-signature-good :foreground ,dracula-green) + (magit-signature-bad :foreground ,dracula-red :weight bold) + (magit-signature-untrusted :foreground ,dracula-cyan) + (magit-signature-expired :foreground ,dracula-orange) + (magit-signature-revoked :foreground ,dracula-purple) + (magit-signature-error :foreground ,dracula-cyan) + (magit-cherry-unmatched :foreground ,dracula-cyan) + (magit-cherry-equivalent :foreground ,dracula-purple) + ;; markdown + (markdown-blockquote-face :foreground ,dracula-yellow + :slant italic) + (markdown-code-face :foreground ,dracula-orange) + (markdown-footnote-face :foreground ,dark-blue) + (markdown-header-face :weight normal) + (markdown-header-face-1 + :inherit bold :foreground ,dracula-pink + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-1))) + (markdown-header-face-2 + :inherit bold :foreground ,dracula-purple + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-2))) + (markdown-header-face-3 + :foreground ,dracula-green + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-3))) + (markdown-header-face-4 :foreground ,dracula-yellow) + (markdown-header-face-5 :foreground ,dracula-cyan) + (markdown-header-face-6 :foreground ,dracula-orange) + (markdown-header-face-7 :foreground ,dark-blue) + (markdown-header-face-8 :foreground ,dracula-fg) + (markdown-inline-code-face :foreground ,dracula-green) + (markdown-plain-url-face :inherit link) + (markdown-pre-face :foreground ,dracula-orange) + (markdown-table-face :foreground ,dracula-purple) + (markdown-list-face :foreground ,dracula-cyan) + (markdown-language-keyword-face :foreground ,dracula-comment) + ;; message + (message-header-to :foreground ,dracula-fg :weight bold) + (message-header-cc :foreground ,dracula-fg :bold bold) + (message-header-subject :foreground ,dracula-orange) + (message-header-newsgroups :foreground ,dracula-purple) + (message-header-other :foreground ,dracula-purple) + (message-header-name :foreground ,dracula-green) + (message-header-xheader :foreground ,dracula-cyan) + (message-separator :foreground ,dracula-cyan :slant italic) + (message-cited-text :foreground ,dracula-purple) + (message-cited-text-1 :foreground ,dracula-purple) + (message-cited-text-2 :foreground ,dracula-orange) + (message-cited-text-3 :foreground ,dracula-comment) + (message-cited-text-4 :foreground ,fg2) + (message-mml :foreground ,dracula-green :weight normal) + ;; mini-modeline + (mini-modeline-mode-line :inherit mode-line :height 0.1 :box nil) + ;; mu4e + (mu4e-unread-face :foreground ,dracula-pink :weight normal) + (mu4e-view-url-number-face :foreground ,dracula-purple) + (mu4e-highlight-face :background ,dracula-bg + :foreground ,dracula-yellow + :extend t) + (mu4e-header-highlight-face :background ,dracula-current + :foreground ,dracula-fg + :underline nil :weight bold + :extend t) + (mu4e-header-key-face :inherit message-mml) + (mu4e-header-marks-face :foreground ,dracula-purple) + (mu4e-cited-1-face :foreground ,dracula-purple) + (mu4e-cited-2-face :foreground ,dracula-orange) + (mu4e-cited-3-face :foreground ,dracula-comment) + (mu4e-cited-4-face :foreground ,fg2) + (mu4e-cited-5-face :foreground ,fg3) + ;; neotree + (neo-banner-face :foreground ,dracula-orange :weight bold) + ;;(neo-button-face :underline nil) + (neo-dir-link-face :foreground ,dracula-purple) + (neo-expand-btn-face :foreground ,dracula-fg) + (neo-file-link-face :foreground ,dracula-cyan) + (neo-header-face :background ,dracula-bg + :foreground ,dracula-fg + :weight bold) + (neo-root-dir-face :foreground ,dracula-purple :weight bold) + (neo-vc-added-face :foreground ,dracula-orange) + (neo-vc-conflict-face :foreground ,dracula-red) + (neo-vc-default-face :inherit neo-file-link-face) + (neo-vc-edited-face :foreground ,dracula-orange) + (neo-vc-ignored-face :foreground ,dracula-comment) + (neo-vc-missing-face :foreground ,dracula-red) + (neo-vc-needs-merge-face :foreground ,dracula-red + :weight bold) + ;;(neo-vc-needs-update-face :underline t) + ;;(neo-vc-removed-face :strike-through t) + (neo-vc-unlocked-changes-face :foreground ,dracula-red) + ;;(neo-vc-unregistered-face nil) + (neo-vc-up-to-date-face :foreground ,dracula-green) + (neo-vc-user-face :foreground ,dracula-purple) + ;; org + (org-agenda-date :foreground ,dracula-cyan :underline nil) + (org-agenda-dimmed-todo-face :foreground ,dracula-comment) + (org-agenda-done :foreground ,dracula-green) + (org-agenda-structure :foreground ,dracula-purple) + (org-block :foreground ,dracula-orange) + (org-code :foreground ,dracula-green) + (org-column :background ,bg3) + (org-column-title :inherit org-column :weight bold :underline t) + (org-date :foreground ,dracula-cyan :underline t) + (org-document-info :foreground ,dark-blue) + (org-document-info-keyword :foreground ,dracula-comment) + (org-document-title :weight bold :foreground ,dracula-orange + ,@(when dracula-enlarge-headings + (list :height dracula-height-doc-title))) + (org-done :foreground ,dracula-green) + (org-ellipsis :foreground ,dracula-comment) + (org-footnote :foreground ,dark-blue) + (org-formula :foreground ,dracula-pink) + (org-headline-done :foreground ,dracula-comment + :weight normal :strike-through t) + (org-hide :foreground ,dracula-bg :background ,dracula-bg) + (org-level-1 :inherit bold :foreground ,dracula-pink + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-1))) + (org-level-2 :inherit bold :foreground ,dracula-purple + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-2))) + (org-level-3 :weight normal :foreground ,dracula-green + ,@(when dracula-enlarge-headings + (list :height dracula-height-title-3))) + (org-level-4 :weight normal :foreground ,dracula-yellow) + (org-level-5 :weight normal :foreground ,dracula-cyan) + (org-level-6 :weight normal :foreground ,dracula-orange) + (org-level-7 :weight normal :foreground ,dark-blue) + (org-level-8 :weight normal :foreground ,dracula-fg) + (org-link :foreground ,dracula-cyan :underline t) + (org-priority :foreground ,dracula-cyan) + (org-quote :foreground ,dracula-yellow :slant italic) + (org-scheduled :foreground ,dracula-green) + (org-scheduled-previously :foreground ,dracula-yellow) + (org-scheduled-today :foreground ,dracula-green) + (org-sexp-date :foreground ,fg4) + (org-special-keyword :foreground ,dracula-yellow) + (org-table :foreground ,dracula-purple) + (org-tag :foreground ,dracula-pink :weight bold :background ,bg2) + (org-todo :foreground ,dracula-orange :weight bold :background ,bg2) + (org-upcoming-deadline :foreground ,dracula-yellow) + (org-verbatim :inherit org-quote) + (org-warning :weight bold :foreground ,dracula-pink) + ;; outline + (outline-1 :foreground ,dracula-pink) + (outline-2 :foreground ,dracula-purple) + (outline-3 :foreground ,dracula-green) + (outline-4 :foreground ,dracula-yellow) + (outline-5 :foreground ,dracula-cyan) + (outline-6 :foreground ,dracula-orange) + ;; perspective + (persp-selected-face :weight bold :foreground ,dracula-pink) + ;; powerline + (powerline-active1 :background ,dracula-bg :foreground ,dracula-pink) + (powerline-active2 :background ,dracula-bg :foreground ,dracula-pink) + (powerline-inactive1 :background ,bg2 :foreground ,dracula-purple) + (powerline-inactive2 :background ,bg2 :foreground ,dracula-purple) + (powerline-evil-base-face :foreground ,bg2) + (powerline-evil-emacs-face :inherit powerline-evil-base-face :background ,dracula-yellow) + (powerline-evil-insert-face :inherit powerline-evil-base-face :background ,dracula-cyan) + (powerline-evil-motion-face :inherit powerline-evil-base-face :background ,dracula-purple) + (powerline-evil-normal-face :inherit powerline-evil-base-face :background ,dracula-green) + (powerline-evil-operator-face :inherit powerline-evil-base-face :background ,dracula-pink) + (powerline-evil-replace-face :inherit powerline-evil-base-face :background ,dracula-red) + (powerline-evil-visual-face :inherit powerline-evil-base-face :background ,dracula-orange) + ;; rainbow-delimiters + (rainbow-delimiters-depth-1-face :foreground ,dracula-fg) + (rainbow-delimiters-depth-2-face :foreground ,dracula-cyan) + (rainbow-delimiters-depth-3-face :foreground ,dracula-purple) + (rainbow-delimiters-depth-4-face :foreground ,dracula-pink) + (rainbow-delimiters-depth-5-face :foreground ,dracula-orange) + (rainbow-delimiters-depth-6-face :foreground ,dracula-green) + (rainbow-delimiters-depth-7-face :foreground ,dracula-yellow) + (rainbow-delimiters-depth-8-face :foreground ,dark-blue) + (rainbow-delimiters-unmatched-face :foreground ,dracula-orange) + ;; rpm-spec + (rpm-spec-dir-face :foreground ,dracula-green) + (rpm-spec-doc-face :foreground ,dracula-pink) + (rpm-spec-ghost-face :foreground ,dracula-purple) + (rpm-spec-macro-face :foreground ,dracula-yellow) + (rpm-spec-obsolete-tag-face :inherit font-lock-warning-face) + (rpm-spec-package-face :foreground ,dracula-purple) + (rpm-spec-section-face :foreground ,dracula-yellow) + (rpm-spec-tag-face :foreground ,dracula-cyan) + (rpm-spec-var-face :foreground ,dracula-orange) + ;; rst (reStructuredText) + (rst-level-1 :foreground ,dracula-pink :weight bold) + (rst-level-2 :foreground ,dracula-purple :weight bold) + (rst-level-3 :foreground ,dracula-green) + (rst-level-4 :foreground ,dracula-yellow) + (rst-level-5 :foreground ,dracula-cyan) + (rst-level-6 :foreground ,dracula-orange) + (rst-level-7 :foreground ,dark-blue) + (rst-level-8 :foreground ,dracula-fg) + ;; selectrum-mode + (selectrum-current-candidate :weight bold) + (selectrum-primary-highlight :foreground ,dracula-pink) + (selectrum-secondary-highlight :foreground ,dracula-green) + ;; show-paren + (show-paren-match-face :background unspecified + :foreground ,dracula-cyan + :weight bold) + (show-paren-match :background unspecified + :foreground ,dracula-cyan + :weight bold) + (show-paren-match-expression :inherit match) + (show-paren-mismatch :inherit font-lock-warning-face) + ;; shr + (shr-h1 :foreground ,dracula-pink :weight bold :height 1.3) + (shr-h2 :foreground ,dracula-purple :weight bold) + (shr-h3 :foreground ,dracula-green :slant italic) + (shr-h4 :foreground ,dracula-yellow) + (shr-h5 :foreground ,dracula-cyan) + (shr-h6 :foreground ,dracula-orange) + ;; slime + (slime-repl-inputed-output-face :foreground ,dracula-purple) + ;; solaire-mode + (solaire-default-face :background ,bg2) + ;; spam + (spam :inherit gnus-summary-normal-read :foreground ,dracula-orange + :strike-through t :slant oblique) + ;; speedbar (and sr-speedbar) + (speedbar-button-face :foreground ,dracula-green) + (speedbar-file-face :foreground ,dracula-cyan) + (speedbar-directory-face :foreground ,dracula-purple) + (speedbar-tag-face :foreground ,dracula-yellow) + (speedbar-selected-face :foreground ,dracula-pink) + (speedbar-highlight-face :inherit match) + (speedbar-separator-face :background ,dracula-bg + :foreground ,dracula-fg + :weight bold) + ;; tab-bar & tab-line (since Emacs 27.1) + (tab-bar :foreground ,dracula-purple :background ,dracula-current + :inherit variable-pitch) + (tab-bar-tab :foreground ,dracula-pink :background ,dracula-bg + :box (:line-width 2 :color ,dracula-bg :style nil)) + (tab-bar-tab-inactive :foreground ,dracula-purple :background ,bg2 + :box (:line-width 2 :color ,bg2 :style nil)) + (tab-line :foreground ,dracula-purple :background ,dracula-current + :height 0.9 :inherit variable-pitch) + (tab-line-tab :foreground ,dracula-pink :background ,dracula-bg + :box (:line-width 2 :color ,dracula-bg :style nil)) + (tab-line-tab-inactive :foreground ,dracula-purple :background ,bg2 + :box (:line-width 2 :color ,bg2 :style nil)) + (tab-line-tab-current :inherit tab-line-tab) + (tab-line-close-highlight :foreground ,dracula-red) + ;; telephone-line + (telephone-line-accent-active :background ,dracula-bg :foreground ,dracula-pink) + (telephone-line-accent-inactive :background ,bg2 :foreground ,dracula-purple) + (telephone-line-unimportant :background ,dracula-bg :foreground ,dracula-comment) + ;; term + (term :foreground ,dracula-fg :background ,dracula-bg) + (term-color-black :foreground ,dracula-bg :background ,dracula-comment) + (term-color-blue :foreground ,dracula-purple :background ,dracula-purple) + (term-color-cyan :foreground ,dracula-cyan :background ,dracula-cyan) + (term-color-green :foreground ,dracula-green :background ,dracula-green) + (term-color-magenta :foreground ,dracula-pink :background ,dracula-pink) + (term-color-red :foreground ,dracula-red :background ,dracula-red) + (term-color-white :foreground ,dracula-fg :background ,dracula-fg) + (term-color-yellow :foreground ,dracula-yellow :background ,dracula-yellow) + ;; tree-sitter + (tree-sitter-hl-face:attribute :inherit font-lock-constant-face) + (tree-sitter-hl-face:comment :inherit font-lock-comment-face) + (tree-sitter-hl-face:constant :inherit font-lock-constant-face) + (tree-sitter-hl-face:constant.builtin :inherit font-lock-builtin-face) + (tree-sitter-hl-face:constructor :inherit font-lock-constant-face) + (tree-sitter-hl-face:escape :foreground ,dracula-pink) + (tree-sitter-hl-face:function :inherit font-lock-function-name-face) + (tree-sitter-hl-face:function.builtin :inherit font-lock-builtin-face) + (tree-sitter-hl-face:function.call :inherit font-lock-function-name-face + :weight normal) + (tree-sitter-hl-face:function.macro :inherit font-lock-preprocessor-face) + (tree-sitter-hl-face:function.special :inherit font-lock-preprocessor-face) + (tree-sitter-hl-face:keyword :inherit font-lock-keyword-face) + (tree-sitter-hl-face:punctuation :foreground ,dracula-pink) + (tree-sitter-hl-face:punctuation.bracket :foreground ,dracula-fg) + (tree-sitter-hl-face:punctuation.delimiter :foreground ,dracula-fg) + (tree-sitter-hl-face:punctuation.special :foreground ,dracula-pink) + (tree-sitter-hl-face:string :inherit font-lock-string-face) + (tree-sitter-hl-face:string.special :foreground ,dracula-red) + (tree-sitter-hl-face:tag :inherit font-lock-keyword-face) + (tree-sitter-hl-face:type :inherit font-lock-type-face) + (tree-sitter-hl-face:type.parameter :foreground ,dracula-pink) + (tree-sitter-hl-face:variable :inherit font-lock-variable-name-face) + (tree-sitter-hl-face:variable.parameter :inherit tree-sitter-hl-face:variable + :weight normal) + ;; undo-tree + (undo-tree-visualizer-current-face :foreground ,dracula-orange) + (undo-tree-visualizer-default-face :foreground ,fg2) + (undo-tree-visualizer-register-face :foreground ,dracula-purple) + (undo-tree-visualizer-unmodified-face :foreground ,dracula-fg) + ;; web-mode + (web-mode-builtin-face :inherit font-lock-builtin-face) + (web-mode-comment-face :inherit font-lock-comment-face) + (web-mode-constant-face :inherit font-lock-constant-face) + (web-mode-css-property-name-face :inherit font-lock-constant-face) + (web-mode-doctype-face :inherit font-lock-comment-face) + (web-mode-function-name-face :inherit font-lock-function-name-face) + (web-mode-html-attr-name-face :foreground ,dracula-purple) + (web-mode-html-attr-value-face :foreground ,dracula-green) + (web-mode-html-tag-face :foreground ,dracula-pink :weight bold) + (web-mode-keyword-face :foreground ,dracula-pink) + (web-mode-string-face :foreground ,dracula-yellow) + (web-mode-type-face :inherit font-lock-type-face) + (web-mode-warning-face :inherit font-lock-warning-face) + ;; which-func + (which-func :inherit font-lock-function-name-face) + ;; which-key + (which-key-key-face :inherit font-lock-builtin-face) + (which-key-command-description-face :inherit default) + (which-key-separator-face :inherit font-lock-comment-delimiter-face) + (which-key-local-map-description-face :foreground ,dracula-green) + ;; whitespace + (whitespace-big-indent :background ,dracula-red :foreground ,dracula-red) + (whitespace-empty :background ,dracula-orange :foreground ,dracula-red) + (whitespace-hspace :background ,dracula-current :foreground ,dracula-comment) + (whitespace-indentation :background ,dracula-orange :foreground ,dracula-red) + (whitespace-line :background ,dracula-bg :foreground ,dracula-pink) + (whitespace-newline :foreground ,dracula-comment) + (whitespace-space :background ,dracula-bg :foreground ,dracula-comment) + (whitespace-space-after-tab :background ,dracula-orange :foreground ,dracula-red) + (whitespace-space-before-tab :background ,dracula-orange :foreground ,dracula-red) + (whitespace-tab :background ,bg2 :foreground ,dracula-comment) + (whitespace-trailing :inherit trailing-whitespace) + ;; yard-mode + (yard-tag-face :inherit font-lock-builtin-face) + (yard-directive-face :inherit font-lock-builtin-face)))) + + (apply #'custom-theme-set-faces + 'dracula + (let ((expand-with-func + (lambda (func spec) + (let (reduced-color-list) + (dolist (col colors reduced-color-list) + (push (list (car col) (funcall func col)) + reduced-color-list)) + (eval `(let ,reduced-color-list + (backquote ,spec)))))) + whole-theme) + (pcase-dolist (`(,face . ,spec) faces) + (push `(,face + ((((min-colors 16777216)) ; fully graphical envs + ,(funcall expand-with-func 'cadr spec)) + (((min-colors 256)) ; terminal withs 256 colors + ,(if dracula-use-24-bit-colors-on-256-colors-terms + (funcall expand-with-func 'cadr spec) + (funcall expand-with-func 'caddr spec))) + (t ; should be only tty-like envs + ,(funcall expand-with-func 'cadddr spec)))) + whole-theme)) + whole-theme))) + + +;;;###autoload +(when load-file-name + (add-to-list 'custom-theme-load-path + (file-name-as-directory (file-name-directory load-file-name)))) + +(provide-theme 'dracula) + +;; Local Variables: +;; indent-tabs-mode: nil +;; End: + +;;; dracula-theme.el ends here diff --git a/themes/monokai-theme.el b/themes/monokai-theme.el new file mode 100644 index 0000000..551b02d --- /dev/null +++ b/themes/monokai-theme.el @@ -0,0 +1,6585 @@ +;;; monokai-theme.el --- A fruity color theme for Emacs. -*- lexical-binding: t; -*- + +;; Copyright (C) 2011-2016 + +;; Author: Kelvin Smith +;; URL: http://github.com/oneKelvinSmith/monokai-emacs +;; Version: 3.5.3 + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: +;; +;; A port of the popular Textmate theme Monokai for Emacs 24, built on top +;; of the new built-in theme support in Emacs 24. +;; +;;; Credits: +;; +;; Wimer Hazenberg created the original theme. +;; - http://www.monokai.nl/blog/2006/07/15/textmate-color-theme/ +;; +;; Bozhidar Batsov created zenburn-theme.el and solarized-theme.el +;; on which this file is based. +;; - https://github.com/bbatsov/zenburn-emacs +;; +;; Color Scheme Designer 3 for complementary colours. +;; - http://colorschemedesigner.com/ +;; +;; Xterm 256 Color Chart +;; - https://upload.wikimedia.org/wikipedia/en/1/15/Xterm_256color_chart.svg +;; +;; K. Adam Christensen for his personal monokai theme that addresses 256 colours. +;; - https://github.com/pope/personal/blob/master/etc/emacs.d/monokai-theme.el +;; +;; Thomas Frössman for his work on solarized-emacs. +;; - http://github.com/bbatsov/solarized-emacs +;; +;;; Code: + +(unless (>= emacs-major-version 24) + (error "The monokai theme requires Emacs 24 or later!")) + +(deftheme monokai "The Monokai colour theme") + +(defgroup monokai nil + "Monokai theme options. +The theme has to be reloaded after changing anything in this group." + :group 'faces) + +(defcustom monokai-distinct-fringe-background nil + "Make the fringe background different from the normal background color. +Also affects 'linum-mode' background." + :type 'boolean + :group 'monokai) + +(defcustom monokai-use-variable-pitch nil + "Use variable pitch face for some headings and titles." + :type 'boolean + :group 'monokai) + +(defcustom monokai-doc-face-as-comment nil + "Consider `font-lock-doc-face' as comment instead of a string." + :type 'boolean + :group 'monokai + :package-version "3.5.1") + +(defcustom monokai-height-minus-1 0.8 + "Font size -1." + :type 'number + :group 'monokai) + +(defcustom monokai-height-plus-1 1.1 + "Font size +1." + :type 'number + :group 'monokai) + +(defcustom monokai-height-plus-2 1.15 + "Font size +2." + :type 'number + :group 'monokai) + +(defcustom monokai-height-plus-3 1.2 + "Font size +3." + :type 'number + :group 'monokai) + +(defcustom monokai-height-plus-4 1.3 + "Font size +4." + :type 'number + :group 'monokai) + +;; Primary colors +(defcustom monokai-yellow "#E6DB74" + "Primary colors - yellow" + :type 'string + :group 'monokai) + +(defcustom monokai-orange "#FD971F" + "Primary colors - orange" + :type 'string + :group 'monokai) + +(defcustom monokai-red "#F92672" + "Primary colors - red" + :type 'string + :group 'monokai) + +(defcustom monokai-magenta "#FD5FF0" + "Primary colors - magenta" + :type 'string + :group 'monokai) + +(defcustom monokai-blue "#66D9EF" + "Primary colors - blue" + :type 'string + :group 'monokai) + +(defcustom monokai-green "#A6E22E" + "Primary colors - green" + :type 'string + :group 'monokai) + +(defcustom monokai-cyan "#A1EFE4" + "Primary colors - cyan" + :type 'string + :group 'monokai) + +(defcustom monokai-violet "#AE81FF" + "Primary colors - violet" + :type 'string + :group 'monokai) + +(defcustom monokai-gray "#64645E" + "Primary colors - gray" + :type 'string + :group 'monokai) + +(defcustom monokai-foreground "#F8F8F2" + "Adaptive colors - foreground" + :type 'string + :group 'monokai) + +(defcustom monokai-background "#272822" + "Adaptive colors - background" + :type 'string + :group 'monokai) + +(defcustom monokai-comments "#75715E" + "Adaptive colors - comments" + :type 'string + :group 'monokai) + +(defcustom monokai-emphasis "#F8F8F0" + "Adaptive colors - emphasis" + :type 'string + :group 'monokai) + +(defcustom monokai-line-number "#8F908A" + "Adaptive colors - line number" + :type 'string + :group 'monokai) + +(defcustom monokai-highlight "#49483E" + "Adaptive colors - highlight" + :type 'string + :group 'monokai) + +(defcustom monokai-highlight-alt "#3E3D31" + "Adaptive colors - highlight" + :type 'string + :group 'monokai) + +(defcustom monokai-highlight-line "#3C3D37" + "Adaptive colors - line highlight" + :type 'string + :group 'monokai) + +(let* (;; Variable pitch + (monokai-pitch (if monokai-use-variable-pitch + 'variable-pitch + 'default)) + + ;; Definitions for guis that support 256 colors + (monokai-class '((class color) (min-colors 257))) + + ;; Functionality specific colors + (monokai-diff-blue-base "#232438") + (monokai-diff-blue-emphasis "#1F204E") + (monokai-diff-green-base "#233E1E") + (monokai-diff-green-emphasis "#1F541A") + (monokai-diff-red-base "#3D241E") + (monokai-diff-red-emphasis "#53201A") + + ;; Darker and lighter accented colors + (monokai-yellow-d "#BEB244") + (monokai-yellow-l "#FFF7A8") + (monokai-orange-d "#D47402") + (monokai-orange-l "#FFAC4A") + (monokai-red-d "#F70057") + (monokai-red-l "#FA518D") + (monokai-magenta-d "#FB35EA") + (monokai-magenta-l "#FE8CF4") + (monokai-violet-d "#945AFF") + (monokai-violet-l "#C9ACFF") + (monokai-blue-d "#40CAE4") + (monokai-blue-l "#92E7F7") + (monokai-cyan-d "#74DBCD") + (monokai-cyan-l "#D3FBF6") + (monokai-green-d "#86C30D") + (monokai-green-l "#BBEF53") + (monokai-gray-d "#35331D") + (monokai-gray-l "#7B7962") + ;; Adaptive higher/lower contrast accented colors + (monokai-foreground-hc "#141414") + (monokai-foreground-lc "#171A0B") + ;; High contrast colors + (monokai-yellow-hc "#FFFACE") + (monokai-yellow-hc-alt "#E7DB74") + (monokai-yellow-lc "#9A8F21") + (monokai-orange-hc "#FFBE74") + (monokai-orange-lc "#A75B00") + (monokai-red-hc "#FEB0CC") + (monokai-red-hc-alt "#F83535") + (monokai-red-lc "#F20055") + (monokai-magenta-hc "#FEC6F9") + (monokai-magenta-lc "#F309DF") + (monokai-violet-hc "#F0E7FF") + (monokai-violet-lc "#7830FC") + (monokai-blue-hc "#CAF5FD") + (monokai-blue-lc "#1DB4D0") + (monokai-cyan-hc "#D3FBF6") + (monokai-cyan-lc "#4BBEAE") + (monokai-green-hc "#CCF47C") + (monokai-green-hc-alt "#A6E22C") + (monokai-green-lc "#679A01") + + ;; Distinct fringe + (monokai-fringe-bg (if monokai-distinct-fringe-background + monokai-gray + monokai-background)) + + ;; Definitions for terminals that do not support 256 colors + (monokai-256-class '((class color) (min-colors 89))) + + ;; Functionality specific colors + (monokai-256-diff-blue-base "#00005f") + (monokai-256-diff-blue-emphasis "#000087") + (monokai-256-diff-green-base "#005800") + (monokai-256-diff-green-emphasis "#008700") + (monokai-256-diff-red-base "#5f0000") + (monokai-256-diff-red-emphasis "#870000") + + ;; Primary colors + (monokai-256-yellow "#CDC673") + (monokai-256-orange "#FF8C00") + (monokai-256-red "#FF1493") + (monokai-256-magenta "#D700D7") + (monokai-256-violet "#AF87FF") + (monokai-256-blue "#5FD7FF") + (monokai-256-cyan "#5FFFFF") + (monokai-256-green "#87D700") + (monokai-256-gray "#3D3D3D") + ;; Darker and lighter accented colors + (monokai-256-yellow-d "#878700") + (monokai-256-yellow-l "#FFFF87") + (monokai-256-orange-d "#AF5F00") + (monokai-256-orange-l "#FFAF5F") + (monokai-256-red-d "#870000") + (monokai-256-red-l "#FF5F87") + (monokai-256-magenta-d "#AF0087") + (monokai-256-magenta-l "#FF87DF") + (monokai-256-violet-d "#5F00AF") + (monokai-256-violet-l "#AF87D7") + (monokai-256-blue-d "#008787") + (monokai-256-blue-l "#87D7FF") + (monokai-256-cyan-d "#5FAFAF") + (monokai-256-cyan-l "#AFFFFF") + (monokai-256-green-d "#5F8700") + (monokai-256-green-l "#AFD700") + (monokai-256-gray-d "#333333") + (monokai-256-gray-l "#707070") + ;; Adaptive colors + (monokai-256-foreground "#F5F5F5") + (monokai-256-background "#1B1E1C") + (monokai-256-comments "#8B8878") + (monokai-256-emphasis "#FFFAFA") + (monokai-256-line-number "#8F908A") + (monokai-256-highlight "#474747") + (monokai-256-highlight-alt "#3E3E3E") + (monokai-256-highlight-line "#000000") + ;; Adaptive higher/lower contrast accented colors + (monokai-256-foreground-hc "#171A0B") + (monokai-256-foreground-lc "#141414") + ;; High contrast colors + (monokai-256-yellow-hc monokai-256-yellow-d) + (monokai-256-yellow-lc monokai-256-yellow-l) + (monokai-256-orange-hc monokai-256-orange-d) + (monokai-256-orange-lc monokai-256-orange-l) + (monokai-256-red-hc monokai-256-red-d) + (monokai-256-red-lc monokai-256-red-l) + (monokai-256-magenta-hc monokai-256-magenta-d) + (monokai-256-magenta-lc monokai-256-magenta-l) + (monokai-256-violet-hc monokai-256-violet-d) + (monokai-256-violet-lc monokai-256-violet-l) + (monokai-256-blue-hc monokai-256-blue-d) + (monokai-256-blue-lc monokai-256-blue-l) + (monokai-256-cyan-hc monokai-256-cyan-d) + (monokai-256-cyan-lc monokai-256-cyan-l) + (monokai-256-green-hc monokai-256-green-d) + (monokai-256-green-lc monokai-256-green-l) + + ;; Distinct fringe + (monokai-256-fringe-bg (if monokai-distinct-fringe-background + monokai-256-gray + monokai-256-background))) + + ;; Define faces + (custom-theme-set-faces + 'monokai + + ;; font lock for syntax highlighting + `(font-lock-builtin-face + ((,monokai-class (:foreground ,monokai-red + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight normal)))) + + `(font-lock-comment-delimiter-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(font-lock-comment-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(font-lock-constant-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(font-lock-doc-face + ((,monokai-class (:foreground ,(if monokai-doc-face-as-comment + monokai-comments + monokai-yellow))) + (,monokai-256-class (:foreground ,(if monokai-doc-face-as-comment + monokai-256-comments + monokai-256-yellow))))) + + `(font-lock-function-name-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(font-lock-keyword-face + ((,monokai-class (:foreground ,monokai-red + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight normal)))) + + `(font-lock-negation-char-face + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(font-lock-preprocessor-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(font-lock-regexp-grouping-construct + ((,monokai-class (:foreground ,monokai-yellow + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight normal)))) + + `(font-lock-regexp-grouping-backslash + ((,monokai-class (:foreground ,monokai-violet + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-violet + :weight normal)))) + + `(font-lock-string-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(font-lock-type-face + ((,monokai-class (:foreground ,monokai-blue + :italic nil)) + (,monokai-256-class (:foreground ,monokai-256-blue + :italic nil)))) + + `(font-lock-variable-name-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(font-lock-warning-face + ((,monokai-class (:foreground ,monokai-orange + :weight bold + :italic t + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-orange + :weight bold + :italic t + :underline t)))) + + `(c-annotation-face + ((,monokai-class (:inherit font-lock-constant-face)) + (,monokai-256-class (:inherit font-lock-constant-face)))) + + ;; general colouring + '(button ((t (:underline t)))) + + `(default + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-background)))) + + `(italic + ((,monokai-class (:underline nil)) + (,monokai-256-class (:underline nil)))) + + `(highlight + ((,monokai-class (:background ,monokai-highlight + :distant-foreground nil)) + (,monokai-256-class (:background ,monokai-256-highlight + :distant-foreground nil)))) + + `(lazy-highlight + ((,monokai-class (:inherit highlight + :background ,monokai-highlight-alt)) + (,monokai-256-class (:inherit highlight + :background ,monokai-256-highlight-alt)))) + + `(region + ((,monokai-class (:inherit highlight + :background ,monokai-highlight)) + (,monokai-256-class (:inherit highlight + :background ,monokai-256-highlight)))) + + `(secondary-selection + ((,monokai-class (:inherit region + :background ,monokai-highlight-alt)) + (,monokai-256-class (:inherit region + :background ,monokai-256-highlight-alt)))) + + `(shadow + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(match + ((,monokai-class (:background ,monokai-green + :foreground ,monokai-background + :weight bold)) + (,monokai-256-class (:background ,monokai-256-green + :foreground ,monokai-256-background + :weight bold)))) + + `(cursor + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-foreground + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-foreground + :inverse-video t)))) + + `(mouse + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-foreground + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-foreground + :inverse-video t)))) + + `(escape-glyph + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(escape-glyph-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(fringe + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-fringe-bg)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-fringe-bg)))) + + `(link + ((,monokai-class (:foreground ,monokai-blue + :underline t + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :underline t + :weight bold)))) + + `(link-visited + ((,monokai-class (:foreground ,monokai-violet + :underline t + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-violet + :underline t + :weight normal)))) + + `(success + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(warning + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(error + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(eval-sexp-fu-flash + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-green)))) + + `(eval-sexp-fu-flash-error + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-red)))) + + `(trailing-whitespace + ((,monokai-class (:background ,monokai-red)) + (,monokai-256-class (:background ,monokai-256-red)))) + + `(vertical-border + ((,monokai-class (:foreground ,monokai-gray)) + (,monokai-256-class (:foreground ,monokai-256-gray)))) + + `(menu + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-background)))) + + `(minibuffer-prompt + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + ;; mode-line and powerline + `(mode-line-buffer-id + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + `(mode-line + ((,monokai-class (:inverse-video unspecified + :underline unspecified + :foreground ,monokai-emphasis + :background ,monokai-highlight + :box (:line-width 1 + :color ,monokai-gray + :style nil))) + (,monokai-256-class (:inverse-video unspecified + :underline unspecified + :foreground ,monokai-256-foreground + :background ,monokai-256-background + :box (:line-width 1 + :color ,monokai-256-highlight + :style nil))))) + + `(mode-line-highlight + ((,monokai-class (:background ,monokai-gray)) + (,monokai-256-class (:background ,monokai-256-gray)))) + + `(doom-modeline-bar + ((,monokai-class (:background ,monokai-gray-l)) + (,monokai-256-class (:background ,monokai-256-gray-l)))) + + `(powerline-active1 + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(powerline-active2 + ((,monokai-class (:background ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-background)))) + + `(mode-line-inactive + ((,monokai-class (:inverse-video unspecified + :underline unspecified + :foreground ,monokai-comments + :background ,monokai-background + :box (:line-width 1 + :color ,monokai-gray + :style nil))) + (,monokai-256-class (:inverse-video unspecified + :underline unspecified + :foreground ,monokai-256-comments + :background ,monokai-256-background + :box (:line-width 1 + :color ,monokai-256-gray + :style nil))))) + + `(powerline-inactive1 + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(powerline-inactive2 + ((,monokai-class (:background ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-background)))) + + `(doom-modeline-bar-inactive + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + ;; header-line + `(header-line + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-highlight + :box (:color ,monokai-gray + :line-width 1 + :style nil))) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-highlight + :box (:color ,monokai-256-gray + :line-width 1 + :style nil))))) + + ;; tab-line + `(tab-line + ((,monokai-class (:height 1.5)) + (,monokai-256-class (:height 1.5)))) + `(tab-line-highlight + ((,monokai-class (:inherit tab-line :background ,monokai-highlight)) + (,monokai-256-class (:inherit tab-line :background ,monokai-256-highlight)))) + `(tab-line-tab + ((,monokai-class (:inherit tab-line :height 0.5)) + (,monokai-256-class (:inherit tab-line :height 0.5)))) + `(tab-line-tab-current + ((,monokai-class (:inherit tab-line-tab :overline t :weight bold)) + (,monokai-256-class (:inherit tab-line-tab :overline t :weight bold)))) + `(tab-line-tab-inactive + ((,monokai-class (:inherit tab-line-tab)) + (,monokai-256-class (:inherit tab-line-tab)))) + `(tab-line-tab-inactive-alternate + ((,monokai-class (:inherit tab-line-tab-inactive)) + (,monokai-256-class (:inherit tab-line-tab-inactive)))) + + ;; window-tool-bar + `(window-tool-bar-button + ((,monokai-class (:inherit tab-line)) + (,monokai-256-class (:inherit tab-line)))) + `(window-tool-bar-button-hover + ((,monokai-class (:inherit tab-line :inverse-video t)) + (,monokai-256-class (:inherit tab-line :inverse-video t)))) + `(window-tool-bar-button-disabled + ((,monokai-class (:inherit shadow :background ,monokai-highlight-alt)) + (,monokai-256-class (:inherit shadow :background ,monokai-256-highlight-alt)))) + + ;; cua + `(cua-global-mark + ((,monokai-class (:background ,monokai-yellow + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground ,monokai-256-background)))) + + `(cua-rectangle + ((,monokai-class (:inherit region)) + (,monokai-256-class (:inherit region)))) + + `(cua-rectangle-noselect + ((,monokai-class (:inherit secondary-selection)) + (,monokai-256-class (:inherit secondary-selection)))) + + ;; diary + `(diary + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + ;; dired + `(dired-directory + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(dired-flagged + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(dired-header + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-background + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-background + :inherit bold)))) + + `(dired-ignored + ((,monokai-class (:inherit shadow)) + (,monokai-256-class (:inherit shadow)))) + + `(dired-mark + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + `(dired-marked + ((,monokai-class (:foreground ,monokai-violet + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-violet + :inherit bold)))) + + `(dired-perm-write + ((,monokai-class (:foreground ,monokai-foreground + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :underline t)))) + + `(dired-symlink + ((,monokai-class (:foreground ,monokai-cyan + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :slant italic)))) + + `(dired-warning + ((,monokai-class (:foreground ,monokai-orange + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-orange + :underline t)))) + + ;; dropdown + `(dropdown-list-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-blue)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-blue)))) + + `(dropdown-list-selection-face + ((,monokai-class (:background ,monokai-green + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-green + :foreground ,monokai-256-background)))) + + ;; ecb + `(ecb-default-highlight-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background)))) + + `(ecb-history-bucket-node-dir-soure-path-face + ((,monokai-class (:inherit ecb-history-bucket-node-face + :foreground ,monokai-yellow)) + (,monokai-256-class (:inherit ecb-history-bucket-node-face + :foreground ,monokai-256-yellow)))) + + `(ecb-source-in-directories-buffer-face + ((,monokai-class (:inherit ecb-directories-general-face + :foreground ,monokai-foreground)) + (,monokai-256-class (:inherit ecb-directories-general-face + :foreground ,monokai-256-foreground)))) + + `(ecb-history-dead-buffer-face + ((,monokai-class (:inherit ecb-history-general-face + :foreground ,monokai-comments)) + (,monokai-256-class (:inherit ecb-history-general-face + :foreground ,monokai-256-comments)))) + + `(ecb-directory-not-accessible-face + ((,monokai-class (:inherit ecb-directories-general-face + :foreground ,monokai-comments)) + (,monokai-256-class (:inherit ecb-directories-general-face + :foreground ,monokai-256-comments)))) + + `(ecb-bucket-node-face + ((,monokai-class (:inherit ecb-default-general-face + :weight normal + :foreground ,monokai-blue)) + (,monokai-256-class (:inherit ecb-default-general-face + :weight normal + :foreground ,monokai-256-blue)))) + + `(ecb-tag-header-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(ecb-analyse-bucket-element-face + ((,monokai-class (:inherit ecb-analyse-general-face + :foreground ,monokai-green)) + (,monokai-256-class (:inherit ecb-analyse-general-face + :foreground ,monokai-256-green)))) + + `(ecb-directories-general-face + ((,monokai-class (:inherit ecb-default-general-face + :height 1.0)) + (,monokai-256-class (:inherit ecb-default-general-face + :height 1.0)))) + + `(ecb-method-non-semantic-face + ((,monokai-class (:inherit ecb-methods-general-face + :foreground ,monokai-cyan)) + (,monokai-256-class (:inherit ecb-methods-general-face + :foreground ,monokai-256-cyan)))) + + `(ecb-mode-line-prefix-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(ecb-tree-guide-line-face + ((,monokai-class (:inherit ecb-default-general-face + :foreground ,monokai-gray + :height 1.0)) + (,monokai-256-class (:inherit ecb-default-general-face + :foreground ,monokai-256-gray + :height 1.0)))) + + ;; ee + `(ee-bookmarked + ((,monokai-class (:foreground ,monokai-emphasis)) + (,monokai-256-class (:foreground ,monokai-256-emphasis)))) + + `(ee-category + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(ee-link + ((,monokai-class (:inherit link)) + (,monokai-256-class (:inherit link)))) + + `(ee-link-visited + ((,monokai-class (:inherit link-visited)) + (,monokai-256-class (:inherit link-visited)))) + + `(ee-marked + ((,monokai-class (:foreground ,monokai-magenta + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-magenta + :weight bold)))) + + `(ee-omitted + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(ee-shadow + ((,monokai-class (:inherit shadow)) + (,monokai-256-class (:inherit shadow)))) + + ;; grep + `(grep-context-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(grep-error-face + ((,monokai-class (:foreground ,monokai-red + :weight bold + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold + :underline t)))) + + `(grep-hit-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(grep-match-face + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + ;; isearch + `(isearch + ((,monokai-class (:inherit region + :foreground ,monokai-background + :background ,monokai-yellow)) + (,monokai-256-class (:inherit region + :foreground ,monokai-256-background + :background ,monokai-256-yellow)))) + + `(isearch-fail + ((,monokai-class (:inherit isearch + :foreground ,monokai-red + :background ,monokai-background + :bold t)) + (,monokai-256-class (:inherit isearch + :foreground ,monokai-256-red + :background ,monokai-256-background + :bold t)))) + + + ;; ace-jump-mode + `(ace-jump-face-background + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-background + :inverse-video nil)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-background + :inverse-video nil)))) + + `(ace-jump-face-foreground + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-background + :inverse-video nil + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-background + :inverse-video nil + :weight bold)))) + + ;; auctex + `(font-latex-bold-face + ((,monokai-class (:inherit bold + :foreground ,monokai-emphasis)) + (,monokai-256-class (:inherit bold + :foreground ,monokai-256-emphasis)))) + + `(font-latex-doctex-documentation-face + ((,monokai-class (:background unspecified)) + (,monokai-256-class (:background unspecified)))) + + `(font-latex-doctex-preprocessor-face + ((,monokai-class + (:inherit (font-latex-doctex-documentation-face + font-lock-builtin-face + font-lock-preprocessor-face))) + (,monokai-256-class + (:inherit (font-latex-doctex-documentation-face + font-lock-builtin-face + font-lock-preprocessor-face))))) + + `(font-latex-italic-face + ((,monokai-class (:inherit italic :foreground ,monokai-emphasis)) + (,monokai-256-class (:inherit italic :foreground ,monokai-256-emphasis)))) + + `(font-latex-math-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(font-latex-sectioning-0-face + ((,monokai-class (:inherit font-latex-sectioning-1-face + :height ,monokai-height-plus-1)) + (,monokai-256-class (:inherit font-latex-sectioning-1-face + :height ,monokai-height-plus-1)))) + + `(font-latex-sectioning-1-face + ((,monokai-class (:inherit font-latex-sectioning-2-face + :height ,monokai-height-plus-1)) + (,monokai-256-class (:inherit font-latex-sectioning-2-face + :height ,monokai-height-plus-1)))) + + `(font-latex-sectioning-2-face + ((,monokai-class (:inherit font-latex-sectioning-3-face + :height ,monokai-height-plus-1)) + (,monokai-256-class (:inherit font-latex-sectioning-3-face + :height ,monokai-height-plus-1)))) + + `(font-latex-sectioning-3-face + ((,monokai-class (:inherit font-latex-sectioning-4-face + :height ,monokai-height-plus-1)) + (,monokai-256-class (:inherit font-latex-sectioning-4-face + :height ,monokai-height-plus-1)))) + + `(font-latex-sectioning-4-face + ((,monokai-class (:inherit font-latex-sectioning-5-face + :height ,monokai-height-plus-1)) + (,monokai-256-class (:inherit font-latex-sectioning-5-face + :height ,monokai-height-plus-1)))) + + `(font-latex-sectioning-5-face + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:inherit ,monokai-pitch : + foreground ,monokai-256-yellow + :weight bold)))) + + `(font-latex-sedate-face + ((,monokai-class (:foreground ,monokai-emphasis)) + (,monokai-256-class (:foreground ,monokai-256-emphasis)))) + + `(font-latex-slide-title-face + ((,monokai-class (:inherit (,monokai-pitch font-lock-type-face) + :weight bold + :height ,monokai-height-plus-3)) + (,monokai-256-class (:inherit (,monokai-pitch font-lock-type-face) + :weight bold + :height ,monokai-height-plus-3)))) + + `(font-latex-string-face + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(font-latex-subscript-face + ((,monokai-class (:height ,monokai-height-minus-1)) + (,monokai-256-class (:height ,monokai-height-minus-1)))) + + `(font-latex-superscript-face + ((,monokai-class (:height ,monokai-height-minus-1)) + (,monokai-256-class (:height ,monokai-height-minus-1)))) + + `(font-latex-verbatim-face + ((,monokai-class (:inherit fixed-pitch + :foreground ,monokai-foreground + :slant italic)) + (,monokai-256-class (:inherit fixed-pitch + :foreground ,monokai-256-foreground + :slant italic)))) + + `(font-latex-warning-face + ((,monokai-class (:inherit bold + :foreground ,monokai-orange)) + (,monokai-256-class (:inherit bold + :foreground ,monokai-256-orange)))) + + ;; auto-complete + `(ac-candidate-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-blue)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-blue)))) + + `(ac-selection-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background)))) + + `(ac-candidate-mouse-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background)))) + + `(ac-completion-face + ((,monokai-class (:foreground ,monokai-emphasis + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :underline t)))) + + `(ac-gtags-candidate-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-blue)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-blue)))) + + `(ac-gtags-selection-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background)))) + + `(ac-yasnippet-candidate-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-yellow)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-yellow)))) + + `(ac-yasnippet-selection-face + ((,monokai-class (:background ,monokai-yellow + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground ,monokai-256-background)))) + + ;; auto highlight symbol + `(ahs-definition-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-blue)))) + + `(ahs-edit-mode-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-highlight)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-highlight)))) + + `(ahs-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-magenta + :background unspecified)))) + + `(ahs-plugin-bod-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-violet )) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-cyan )))) + + `(ahs-plugin-defalt-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-orange)))) + + `(ahs-plugin-whole-buffer-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-green)))) + + `(ahs-warning-face + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold)))) + + ;; android mode + `(android-mode-debug-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(android-mode-error-face + ((,monokai-class (:foreground ,monokai-orange + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-orange + :weight bold)))) + + `(android-mode-info-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(android-mode-verbose-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(android-mode-warning-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + ;; anzu-mode + `(anzu-mode-line + ((,monokai-class (:foreground ,monokai-violet + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-violet + :weight bold)))) + + ;; bm + `(bm-face + ((,monokai-class (:background ,monokai-yellow-lc + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-yellow-lc + :foreground ,monokai-256-background)))) + + `(bm-fringe-face + ((,monokai-class (:background ,monokai-yellow-lc + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-yellow-lc + :foreground ,monokai-256-background)))) + + `(bm-fringe-persistent-face + ((,monokai-class (:background ,monokai-green-lc + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-green-lc + :foreground ,monokai-256-background)))) + + `(bm-persistent-face + ((,monokai-class (:background ,monokai-green-lc + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-green-lc + :foreground ,monokai-256-background)))) + + ;; calfw + `(cfw:face-day-title + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(cfw:face-annotation + ((,monokai-class (:inherit cfw:face-day-title + :foreground ,monokai-yellow)) + (,monokai-256-class (:inherit cfw:face-day-title + :foreground ,monokai-256-yellow)))) + + `(cfw:face-default-content + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(cfw:face-default-day + ((,monokai-class (:inherit cfw:face-day-title + :weight bold)) + (,monokai-256-class (:inherit cfw:face-day-title + :weight bold)))) + + `(cfw:face-disable + ((,monokai-class (:inherit cfw:face-day-title + :foreground ,monokai-comments)) + (,monokai-256-class (:inherit cfw:face-day-title + :foreground ,monokai-256-comments)))) + + `(cfw:face-grid + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(cfw:face-header + ((,monokai-class (:foreground ,monokai-blue-hc + :background ,monokai-blue-lc + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue-hc + :background ,monokai-256-blue-lc + :weight bold)))) + + `(cfw:face-holiday + ((,monokai-class (:background unspecified + :foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-red + :weight bold)))) + + `(cfw:face-periods + ((,monokai-class (:foreground ,monokai-magenta)) + (,monokai-256-class (:foreground ,monokai-256-magenta)))) + + `(cfw:face-select + ((,monokai-class (:background ,monokai-magenta-lc + :foreground ,monokai-magenta-hc)) + (,monokai-256-class (:background ,monokai-256-magenta-lc + :foreground ,monokai-256-magenta-hc)))) + + `(cfw:face-saturday + ((,monokai-class (:foreground ,monokai-cyan-hc + :background ,monokai-cyan-lc)) + (,monokai-256-class (:foreground ,monokai-256-cyan-hc + :background ,monokai-256-cyan-lc)))) + + `(cfw:face-sunday + ((,monokai-class (:foreground ,monokai-red-hc + :background ,monokai-red-lc + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red-hc + :background ,monokai-256-red-lc + :weight bold)))) + + `(cfw:face-title + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-yellow + :weight bold + :height ,monokai-height-plus-4)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-yellow + :weight bold + :height ,monokai-height-plus-4)))) + + `(cfw:face-today + ((,monokai-class (:weight bold + :background ,monokai-highlight-line + :foreground unspecified)) + (,monokai-256-class (:weight bold + :background ,monokai-256-highlight-line + :foreground unspecified)))) + + `(cfw:face-today-title + ((,monokai-class (:background ,monokai-yellow-lc + :foreground ,monokai-yellow-hc + :weight bold)) + (,monokai-256-class (:background ,monokai-256-yellow-lc + :foreground ,monokai-256-yellow-hc + :weight bold)))) + + `(cfw:face-toolbar + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground)))) + + `(cfw:face-toolbar-button-off + ((,monokai-class (:background ,monokai-yellow-lc + :foreground ,monokai-yellow-hc + :weight bold)) + (,monokai-256-class (:background ,monokai-256-yellow-lc + :foreground ,monokai-256-yellow-hc + :weight bold)))) + + `(cfw:face-toolbar-button-on + ((,monokai-class (:background ,monokai-yellow-hc + :foreground ,monokai-yellow-lc + :weight bold)) + (,monokai-256-class (:background ,monokai-256-yellow-hc + :foreground ,monokai-256-yellow-lc + :weight bold)))) + + ;; cider + `(cider-enlightened + ((,monokai-class (:foreground ,monokai-yellow + :background unspecified + :box (:color ,monokai-yellow :line-width -1 :style nil))) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background unspecified + :box (:color ,monokai-256-yellow :line-width -1 :style nil))) )) + + `(cider-enlightened-local + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(cider-instrumented-face + ((,monokai-class (:foreground ,monokai-violet + :background unspecified + :box (:color ,monokai-violet :line-width -1 :style nil))) + (,monokai-256-class (:foreground ,monokai-256-violet + :background unspecified + :box (:color ,monokai-256-violet :line-width -1 :style nil))))) + + `(cider-result-overlay-face + ((,monokai-class (:foreground ,monokai-blue + :background unspecified + :box (:color ,monokai-blue :line-width -1 :style nil))) + (,monokai-256-class (:foreground ,monokai-256-blue + :background unspecified + :box (:color ,monokai-256-blue :line-width -1 :style nil))))) + + `(cider-test-error-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-orange)))) + + `(cider-test-failure-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-red)))) + + `(cider-test-success-face + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-green)))) + + `(cider-traced-face + ((,monokai-class :box (:color ,monokai-blue :line-width -1 :style nil)) + (,monokai-256-class :box (:color ,monokai-256-blue :line-width -1 :style nil)))) + + ;; clojure-test + `(clojure-test-failure-face + ((,monokai-class (:foreground ,monokai-red + :weight bold + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold + :underline t)))) + + `(clojure-test-error-face + ((,monokai-class (:foreground ,monokai-orange + :weight bold + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold + :underline t)))) + + `(clojure-test-success-face + ((,monokai-class (:foreground ,monokai-green + :weight bold + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold + :underline t)))) + + ;; company-mode + `(company-tooltip + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis)))) + + `(company-tooltip-selection + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + `(company-tooltip-mouse + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + `(company-tooltip-common + ((,monokai-class (:foreground ,monokai-blue + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-blue + :underline t)))) + + `(company-tooltip-common-selection + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-blue)))) + + `(company-preview + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis)))) + + `(company-preview-common + ((,monokai-class (:foreground ,monokai-blue + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-blue + :underline t)))) + + `(company-scrollbar-bg + ((,monokai-class (:background ,monokai-gray)) + (,monokai-256-class (:background ,monokai-256-gray)))) + + `(company-scrollbar-fg + ((,monokai-class (:background ,monokai-comments)) + (,monokai-256-class (:background ,monokai-256-comments)))) + + `(company-tooltip-annotation + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-green)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-green)))) + + `(company-template-field + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-blue)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-blue)))) + + `(internal-border + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-highlight-alt)))) + + `(child-frame-border + ((,monokai-class (:inherit internal-border)) + (,monokai-256-class (:inherit internal-border)))) + + ;; corfu + `(corfu-current + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + `(corfu-default + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(corfu-annotations + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(corfu-bar + ((,monokai-class (:background ,monokai-gray-l)) + (,monokai-256-class (:background ,monokai-256-gray-l)))) + + `(corfu-border + ((,monokai-class (:inherit internal-border)) + (,monokai-256-class (:inherit internal-border)))) + + `(corfu-popupinfo + ((,monokai-class (:height unspecified :inherit corfu-default)) + (,monokai-256-class (:height unspecified :inherit corfu-default)))) + + ;; compilation + `(compilation-column-face + ((,monokai-class (:foreground ,monokai-cyan + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :underline nil)))) + + `(compilation-column-number + ((,monokai-class (:inherit font-lock-doc-face + :foreground ,monokai-cyan + :underline nil)) + (,monokai-256-class (:inherit font-lock-doc-face + :foreground ,monokai-256-cyan + :underline nil)))) + + `(compilation-enter-directory-face + ((,monokai-class (:foreground ,monokai-green + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-green + :underline nil)))) + + `(compilation-error + ((,monokai-class (:inherit error + :underline nil)) + (,monokai-256-class (:inherit error + :underline nil)))) + + `(compilation-error-face + ((,monokai-class (:foreground ,monokai-red + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-red + :underline nil)))) + + `(compilation-face + ((,monokai-class (:foreground ,monokai-foreground + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :underline nil)))) + + `(compilation-info + ((,monokai-class (:foreground ,monokai-comments + :underline nil + :bold nil)) + (,monokai-256-class (:foreground ,monokai-256-comments + :underline nil + :bold nil)))) + + `(compilation-info-face + ((,monokai-class (:foreground ,monokai-blue + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-blue + :underline nil)))) + + `(compilation-leave-directory-face + ((,monokai-class (:foreground ,monokai-green + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-green + :underline nil)))) + + `(compilation-line-face + ((,monokai-class (:foreground ,monokai-green + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-green + :underline nil)))) + + `(compilation-line-number + ((,monokai-class (:foreground ,monokai-green + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-green + :underline nil)))) + + `(compilation-warning + ((,monokai-class (:inherit warning + :underline nil)) + (,monokai-256-class (:inherit warning + :underline nil)))) + + `(compilation-warning-face + ((,monokai-class (:foreground ,monokai-yellow + :weight normal + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight normal + :underline nil)))) + + `(compilation-mode-line-exit + ((,monokai-class (:inherit compilation-info + :foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:inherit compilation-info + :foreground ,monokai-256-green + :weight bold)))) + + `(compilation-mode-line-fail + ((,monokai-class (:inherit compilation-error + :foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:inherit compilation-error + :foreground ,monokai-256-red + :weight bold)))) + + `(compilation-mode-line-run + ((,monokai-class (:foreground ,monokai-orange + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-orange + :weight bold)))) + + ;; CSCOPE + `(cscope-file-face + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + `(cscope-function-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(cscope-line-number-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(cscope-line-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(cscope-mouse-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-foreground)))) + + ;; ctable + `(ctbl:face-cell-select + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis + :underline ,monokai-emphasis + :weight bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis + :underline ,monokai-256-emphasis + :weight bold)))) + + `(ctbl:face-continue-bar + ((,monokai-class (:background ,monokai-gray + :foreground ,monokai-yellow)) + (,monokai-256-class (:background ,monokai-256-gray + :foreground ,monokai-256-yellow)))) + + `(ctbl:face-row-select + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground + :underline t)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground + :underline t)))) + + ;; coffee + `(coffee-mode-class-name + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(coffee-mode-function-param + ((,monokai-class (:foreground ,monokai-violet + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-violet + :slant italic)))) + + ;; custom + `(custom-button + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-gray-d + :box (:line-width 2 :color ,monokai-highlight-alt))) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-gray-d + :box (:line-width 2 :color ,monokai-256-highlight-alt))))) + + `(custom-button-mouse + ((,monokai-class (:inherit custom-button)) + (,monokai-256-class (:inherit custom-button)))) + + `(custom-button-pressed + ((,monokai-class (:inherit custom-button-mouse + :background ,monokai-highlight + :box (:line-width 2 :color ,monokai-highlight))) + (,monokai-256-class (:inherit custom-button-mouse + :background ,monokai-256-highlight + :box (:line-width 2 :color ,monokai-256-highlight))))) + + `(custom-face-tag + ((,monokai-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-3 + :foreground ,monokai-violet + :weight bold)) + (,monokai-256-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-3 + :foreground ,monokai-256-violet + :weight bold)))) + + `(custom-variable-tag + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-cyan + :height ,monokai-height-plus-3)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-cyan + :height ,monokai-height-plus-3)))) + + `(custom-comment-tag + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(custom-group-tag + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-blue + :height ,monokai-height-plus-3)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-blue + :height ,monokai-height-plus-3)))) + + `(custom-group-tag-1 + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-red + :height ,monokai-height-plus-3)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-red + :height ,monokai-height-plus-3)))) + + `(custom-state + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + ;; diff + `(diff-added + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background)))) + + `(diff-changed + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-background)))) + + `(diff-removed + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background)))) + + `(diff-header + ((,monokai-class (:background ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-background)))) + + `(diff-file-header + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-foreground + :weight bold)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-foreground + :weight bold)))) + + `(diff-refine-added + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-green)))) + + `(diff-refine-change + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-blue)))) + + `(diff-refine-removed + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-red)))) + + ;; diff-hl + `(diff-hl-change + ((,monokai-class (:background ,monokai-yellow-hc-alt + :foreground ,monokai-yellow-hc-alt)) + (,monokai-256-class (:background ,monokai-256-yellow-hc + :foreground ,monokai-256-yellow-hc)))) + + `(diff-hl-delete + ((,monokai-class (:background ,monokai-red-hc-alt + :foreground ,monokai-red-hc-alt)) + (,monokai-256-class (:background ,monokai-256-red-hc + :foreground ,monokai-256-red-hc)))) + + `(diff-hl-insert + ((,monokai-class (:background ,monokai-green-hc-alt + :foreground ,monokai-green-hc-alt)) + (,monokai-256-class (:background ,monokai-256-green-hc + :foreground ,monokai-256-green-hc)))) + + `(diff-hl-unknown + ((,monokai-class (:background ,monokai-violet-hc + :foreground ,monokai-violet-hc)) + (,monokai-256-class (:background ,monokai-256-violet-hc + :foreground ,monokai-256-violet-hc)))) + + ;; ediff + `(ediff-fine-diff-A + ((,monokai-class (:background ,monokai-diff-red-emphasis)) + (,monokai-256-class (:background ,monokai-256-diff-red-emphasis)))) + + `(ediff-fine-diff-B + ((,monokai-class (:background ,monokai-diff-green-emphasis)) + (,monokai-256-class (:background ,monokai-256-diff-green-emphasis)))) + + `(ediff-fine-diff-C + ((,monokai-class (:background ,monokai-diff-blue-emphasis)) + (,monokai-256-class (:background ,monokai-256-diff-blue-emphasis)))) + + `(ediff-current-diff-A + ((,monokai-class (:background ,monokai-diff-red-base)) + (,monokai-256-class (:background ,monokai-256-diff-red-base)))) + + `(ediff-current-diff-B + ((,monokai-class (:background ,monokai-diff-green-base)) + (,monokai-256-class (:background ,monokai-256-diff-green-base)))) + + `(ediff-current-diff-C + ((,monokai-class (:background ,monokai-diff-blue-base)) + (,monokai-256-class (:background ,monokai-256-diff-blue-base)))) + + `(ediff-even-diff-A + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-foreground-lc )) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-foreground-lc )))) + + `(ediff-odd-diff-A + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-foreground-hc )) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-foreground-hc )))) + + `(ediff-even-diff-B + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-foreground-hc )) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-foreground-hc )))) + + `(ediff-odd-diff-B + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-foreground-lc )) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-foreground-lc )))) + + `(ediff-even-diff-C + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-foreground )) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-foreground )))) + + `(ediff-odd-diff-C + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-background )) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-background )))) + + ;; edts + `(edts-face-error-line + ((,(append '((supports :underline (:style line))) monokai-class) + (:underline (:style line :color ,monokai-red) + :inherit unspecified)) + (,monokai-class (:foreground ,monokai-red-hc + :background ,monokai-red-lc + :weight bold + :underline t)) + (,(append '((supports :underline (:style line))) monokai-256-class ) + (:underline (:style line :color ,monokai-256-red) + :inherit unspecified)) + (,monokai-256-class (:foreground ,monokai-256-red-hc + :background ,monokai-256-red-lc + :weight bold + :underline t)))) + + `(edts-face-warning-line + ((,(append '((supports :underline (:style line))) monokai-class) + (:underline (:style line :color ,monokai-yellow) + :inherit unspecified)) + (,monokai-class (:foreground ,monokai-yellow-hc + :background ,monokai-yellow-lc + :weight bold + :underline t)) + (,(append '((supports :underline (:style line))) monokai-256-class ) + (:underline (:style line :color ,monokai-256-yellow) + :inherit unspecified)) + (,monokai-256-class (:foreground ,monokai-256-yellow-hc + :background ,monokai-256-yellow-lc + :weight bold + :underline t)))) + + `(edts-face-error-fringe-bitmap + ((,monokai-class (:foreground ,monokai-red + :background unspecified + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :background unspecified + :weight bold)))) + + `(edts-face-warning-fringe-bitmap + ((,monokai-class (:foreground ,monokai-yellow + :background unspecified + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background unspecified + :weight bold)))) + + `(edts-face-error-mode-line + ((,monokai-class (:background ,monokai-red + :foreground unspecified)) + (,monokai-256-class (:background ,monokai-256-red + :foreground unspecified)))) + + `(edts-face-warning-mode-line + ((,monokai-class (:background ,monokai-yellow + :foreground unspecified)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground unspecified)))) + + + ;; elfeed + `(elfeed-search-date-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(elfeed-search-feed-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(elfeed-search-tag-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(elfeed-search-title-face + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + ;; elixir + `(elixir-attribute-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(elixir-atom-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + ;; ein + `(ein:cell-input-area + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + `(ein:cell-input-prompt + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + `(ein:cell-output-prompt + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + `(ein:notification-tab-normal + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + `(ein:notification-tab-selected + ((,monokai-class (:foreground ,monokai-orange :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-orange :inherit bold)))) + + ;; enhanced ruby mode + `(enh-ruby-string-delimiter-face + ((,monokai-class (:inherit font-lock-string-face)) + (,monokai-256-class (:inherit font-lock-string-face)))) + + `(enh-ruby-heredoc-delimiter-face + ((,monokai-class (:inherit font-lock-string-face)) + (,monokai-256-class (:inherit font-lock-string-face)))) + + `(enh-ruby-regexp-delimiter-face + ((,monokai-class (:inherit font-lock-string-face)) + (,monokai-256-class (:inherit font-lock-string-face)))) + + `(enh-ruby-op-face + ((,monokai-class (:inherit font-lock-keyword-face)) + (,monokai-256-class (:inherit font-lock-keyword-face)))) + + ;; erm-syn + `(erm-syn-errline + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-red) + :inherit unspecified)) + (,monokai-class (:foreground ,monokai-red-hc + :background ,monokai-red-lc + :weight bold + :underline t)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-red) + :inherit unspecified)) + (,monokai-256-class (:foreground ,monokai-256-red-hc + :background ,monokai-256-red-lc + :weight bold + :underline t)))) + + `(erm-syn-warnline + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-orange) + :inherit unspecified)) + (,monokai-class (:foreground ,monokai-orange-hc + :background ,monokai-orange-lc + :weight bold + :underline t)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-orange) + :inherit unspecified)) + (,monokai-256-class (:foreground ,monokai-256-orange-hc + :background ,monokai-256-orange-lc + :weight bold + :underline t)))) + + ;; epc + `(epc:face-title + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-background + :weight normal + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-background + :weight normal + :underline nil)))) + + ;; erc + `(erc-action-face + ((,monokai-class (:inherit erc-default-face)) + (,monokai-256-class (:inherit erc-default-face)))) + + `(erc-bold-face + ((,monokai-class (:weight bold)) + (,monokai-256-class (:weight bold)))) + + `(erc-current-nick-face + ((,monokai-class (:foreground ,monokai-blue :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight bold)))) + + `(erc-dangerous-host-face + ((,monokai-class (:inherit font-lock-warning-face)) + (,monokai-256-class (:inherit font-lock-warning-face)))) + + `(erc-default-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(erc-highlight-face + ((,monokai-class (:inherit erc-default-face + :background ,monokai-highlight)) + (,monokai-256-class (:inherit erc-default-face + :background ,monokai-256-highlight)))) + + `(erc-direct-msg-face + ((,monokai-class (:inherit erc-default-face)) + (,monokai-256-class (:inherit erc-default-face)))) + + `(erc-error-face + ((,monokai-class (:inherit font-lock-warning-face)) + (,monokai-256-class (:inherit font-lock-warning-face)))) + + `(erc-fool-face + ((,monokai-class (:inherit erc-default-face)) + (,monokai-256-class (:inherit erc-default-face)))) + + `(erc-input-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(erc-keyword-face + ((,monokai-class (:foreground ,monokai-blue + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight bold)))) + + `(erc-nick-default-face + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(erc-my-nick-face + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold)))) + + `(erc-nick-msg-face + ((,monokai-class (:inherit erc-default-face)) + (,monokai-256-class (:inherit erc-default-face)))) + + `(erc-notice-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(erc-pal-face + ((,monokai-class (:foreground ,monokai-orange + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-orange + :weight bold)))) + + `(erc-prompt-face + ((,monokai-class (:foreground ,monokai-orange + :background ,monokai-background + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-orange + :background ,monokai-256-background + :weight bold)))) + + `(erc-timestamp-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(erc-underline-face + ((t (:underline t)))) + + ;; eshell + `(eshell-prompt + ((,monokai-class (:foreground ,monokai-blue + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :inherit bold)))) + + `(eshell-ls-archive + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :inherit bold)))) + + `(eshell-ls-backup + ((,monokai-class (:inherit font-lock-comment-face)) + (,monokai-256-class (:inherit font-lock-comment-face)))) + + `(eshell-ls-clutter + ((,monokai-class (:inherit font-lock-comment-face)) + (,monokai-256-class (:inherit font-lock-comment-face)))) + + `(eshell-ls-directory + ((,monokai-class (:foreground ,monokai-blue + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :inherit bold)))) + + `(eshell-ls-executable + ((,monokai-class (:foreground ,monokai-green + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :inherit bold)))) + + `(eshell-ls-unreadable + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(eshell-ls-missing + ((,monokai-class (:inherit font-lock-warning-face)) + (,monokai-256-class (:inherit font-lock-warning-face)))) + + `(eshell-ls-product + ((,monokai-class (:inherit font-lock-doc-face)) + (,monokai-256-class (:inherit font-lock-doc-face)))) + + `(eshell-ls-special + ((,monokai-class (:foreground ,monokai-yellow + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :inherit bold)))) + + `(eshell-ls-symlink + ((,monokai-class (:foreground ,monokai-cyan + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :inherit bold)))) + + ;; eshell-prompt-extras + `(epe-pipeline-delimiter-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(epe-pipeline-user-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(epe-pipeline-time-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(epe-pipeline-host-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(epe-git-dir-face + ((,monokai-class (:foreground ,monokai-yellow-d)) + (,monokai-256-class (:foreground ,monokai-256-yellow-d)))) + + ;; evil-ex-substitute + `(evil-ex-substitute-matches + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-red-l + :inherit italic)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-red-l + :inherit italic)))) + `(evil-ex-substitute-replacement + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-green-l + :inherit italic)) + (,monokai-256-class (:background ,monokai-256-highlight-line :foreground ,monokai-256-green-l :inherit italic)))) + + ;; evil-search-highlight-persist + `(evil-search-highlight-persist-highlight-face + ((,monokai-class (:inherit region)) + (,monokai-256-class (:inherit region)))) + + ;; fic + `(fic-author-face + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-orange + :underline t + :slant italic)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-orange + :underline t + :slant italic)))) + + `(fic-face + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-orange + :weight normal + :slant italic)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-orange + :weight normal + :slant italic)))) + + `(font-lock-fic-face + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-orange + :weight normal + :slant italic)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-orange + :weight normal + :slant italic)))) + + ;; flx + `(flx-highlight-face + ((,monokai-class (:foreground ,monokai-blue + :weight normal + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight normal + :underline nil)))) + + ;; flymake + `(flymake-errline + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-red) + :inherit unspecified + :foreground unspecified + :background unspecified)) + (,monokai-class (:foreground ,monokai-red-hc + :background ,monokai-red-lc + :weight bold + :underline t)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-red) + :inherit unspecified + :foreground unspecified + :background unspecified)) + (,monokai-256-class (:foreground ,monokai-256-red-hc + :background ,monokai-256-red-lc + :weight bold + :underline t)))) + + `(flymake-infoline + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-green) + :inherit unspecified + :foreground unspecified + :background unspecified)) + (,monokai-class (:foreground ,monokai-green-hc + :background ,monokai-green-lc)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-green) + :inherit unspecified + :foreground unspecified + :background unspecified)) + (,monokai-256-class (:foreground ,monokai-256-green-hc + :background ,monokai-256-green-lc)))) + + `(flymake-warnline + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-yellow) + :inherit unspecified + :foreground unspecified + :background unspecified)) + (,monokai-class (:foreground ,monokai-yellow-hc + :background ,monokai-yellow-lc + :weight bold + :underline t)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-yellow) + :inherit unspecified + :foreground unspecified + :background unspecified)) + (,monokai-256-class (:foreground ,monokai-256-yellow-hc + :background ,monokai-256-yellow-lc + :weight bold + :underline t)))) + + ;; flymake-popon + `(flymake-popon + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(flymake-popon-note + ((,monokai-class (:inherit flymake-popon :foreground ,monokai-comments)) + (,monokai-256-class (:inherit flymake-popon :foreground ,monokai-256-comments)))) + + `(flymake-popon-error + ((,monokai-class (:inherit flymake-popon :foreground ,monokai-red)) + (,monokai-256-class (:inherit flymake-popon :foreground ,monokai-256-red)))) + + `(flymake-popon-warning + ((,monokai-class (:inherit flymake-popon :foreground ,monokai-yellow)) + (,monokai-256-class (:inherit flymake-popon :foreground ,monokai-256-yellow)))) + + `(flymake-popon-posframe-border + ((,monokai-class (:foreground ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-highlight-alt)))) + + ;; flycheck + `(flycheck-error + ((,(append '((supports :underline (:style line))) monokai-class) + (:underline (:style line :color ,monokai-red))) + (,monokai-class (:foreground ,monokai-red + :background ,monokai-background + :weight bold + :underline t)) + (,(append '((supports :underline (:style line))) monokai-256-class ) + (:underline (:style line :color ,monokai-256-red))) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background + :weight bold + :underline t)))) + + `(flycheck-warning + ((,(append '((supports :underline (:style line))) monokai-class) + (:underline (:style line :color ,monokai-orange))) + (,monokai-class (:foreground ,monokai-orange + :background ,monokai-background + :weight bold + :underline t)) + (,(append '((supports :underline (:style line))) monokai-256-class ) + (:underline (:style line :color ,monokai-256-orange))) + (,monokai-256-class (:foreground ,monokai-256-orange + :background ,monokai-256-background + :weight bold + :underline t)))) + + `(flycheck-info + ((,(append '((supports :underline (:style line))) monokai-class) + (:underline (:style line :color ,monokai-blue))) + (,monokai-class (:foreground ,monokai-blue + :background ,monokai-background + :weight bold + :underline t)) + (,(append '((supports :underline (:style line))) monokai-256-class ) + (:underline (:style line :color ,monokai-256-blue))) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-background + :weight bold + :underline t)))) + + `(flycheck-fringe-error + ((,monokai-class (:foreground ,monokai-red-l + :background unspecified + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red-l + :background unspecified + :weight bold)))) + + `(flycheck-fringe-warning + ((,monokai-class (:foreground ,monokai-orange-l + :background unspecified + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-orange-l + :background unspecified + :weight bold)))) + + `(flycheck-fringe-info + ((,monokai-class (:foreground ,monokai-blue-l + :background unspecified + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue-l + :background unspecified + :weight bold)))) + + ;; flyspell + `(flyspell-duplicate + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-yellow) + :inherit unspecified)) + (,monokai-class (:foreground ,monokai-yellow + :weight bold + :underline t)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-yellow) + :inherit unspecified)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold + :underline t)))) + + `(flyspell-incorrect + ((,(append '((supports :underline (:style wave))) monokai-class) + (:underline (:style wave :color ,monokai-red) + :inherit unspecified)) + (,monokai-class (:foreground ,monokai-red + :weight bold + :underline t)) + (,(append '((supports :underline (:style wave))) monokai-256-class ) + (:underline (:style wave :color ,monokai-256-red) + :inherit unspecified)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold + :underline t)))) + + + ;; git-gutter + `(git-gutter:added + ((,monokai-class (:background ,monokai-green + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-green + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter:deleted + ((,monokai-class (:background ,monokai-red + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-red + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter:modified + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter:unchanged + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-background + :inherit bold)))) + + ;; git-gutter-fr + `(git-gutter-fr:added + ((,monokai-class (:foreground ,monokai-green + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :inherit bold)))) + + `(git-gutter-fr:deleted + ((,monokai-class (:foreground ,monokai-red + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :inherit bold)))) + + `(git-gutter-fr:modified + ((,monokai-class (:foreground ,monokai-blue + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :inherit bold)))) + + ;; git-gutter+ and git-gutter+-fr + `(git-gutter+-added + ((,monokai-class (:background ,monokai-green + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-green + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter+-deleted + ((,monokai-class (:background ,monokai-red + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-red + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter+-modified + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter+-unchanged + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-background + :inherit bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-background + :inherit bold)))) + + `(git-gutter-fr+-added + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + `(git-gutter-fr+-deleted + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold)))) + + `(git-gutter-fr+-modified + ((,monokai-class (:foreground ,monokai-blue + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight bold)))) + + ;; git-timemachine + `(git-timemachine-minibuffer-detail-face + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-highlight-line + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-blue + :background ,monokai-256-highlight-line + :inherit bold)))) + + ;; guide-key + `(guide-key/highlight-command-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(guide-key/key-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(guide-key/prefix-command-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + ;; gnus + `(gnus-group-mail-1 + ((,monokai-class (:weight bold + :inherit gnus-group-mail-1-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-mail-1-empty)))) + + `(gnus-group-mail-1-empty + ((,monokai-class (:inherit gnus-group-news-1-empty)) + (,monokai-256-class (:inherit gnus-group-news-1-empty)))) + + `(gnus-group-mail-2 + ((,monokai-class (:weight bold + :inherit gnus-group-mail-2-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-mail-2-empty)))) + + `(gnus-group-mail-2-empty + ((,monokai-class (:inherit gnus-group-news-2-empty)) + (,monokai-256-class (:inherit gnus-group-news-2-empty)))) + + `(gnus-group-mail-3 + ((,monokai-class (:weight bold + :inherit gnus-group-mail-3-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-mail-3-empty)))) + + `(gnus-group-mail-3-empty + ((,monokai-class (:inherit gnus-group-news-3-empty)) + (,monokai-256-class (:inherit gnus-group-news-3-empty)))) + + `(gnus-group-mail-low + ((,monokai-class (:weight bold + :inherit gnus-group-mail-low-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-mail-low-empty)))) + + `(gnus-group-mail-low-empty + ((,monokai-class (:inherit gnus-group-news-low-empty)) + (,monokai-256-class (:inherit gnus-group-news-low-empty)))) + + `(gnus-group-news-1 + ((,monokai-class (:weight bold + :inherit gnus-group-news-1-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-1-empty)))) + + `(gnus-group-news-2 + ((,monokai-class (:weight bold + :inherit gnus-group-news-2-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-2-empty)))) + + `(gnus-group-news-3 + ((,monokai-class (:weight bold + :inherit gnus-group-news-3-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-3-empty)))) + + `(gnus-group-news-4 + ((,monokai-class (:weight bold + :inherit gnus-group-news-4-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-4-empty)))) + + `(gnus-group-news-5 + ((,monokai-class (:weight bold + :inherit gnus-group-news-5-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-5-empty)))) + + `(gnus-group-news-6 + ((,monokai-class (:weight bold + :inherit gnus-group-news-6-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-6-empty)))) + + `(gnus-group-news-low + ((,monokai-class (:weight bold + :inherit gnus-group-news-low-empty)) + (,monokai-256-class (:weight bold + :inherit gnus-group-news-low-empty)))) + + `(gnus-header-content + ((,monokai-class (:inherit message-header-other)) + (,monokai-256-class (:inherit message-header-other)))) + + `(gnus-header-from + ((,monokai-class (:inherit message-header-other)) + (,monokai-256-class (:inherit message-header-other)))) + + `(gnus-header-name + ((,monokai-class (:inherit message-header-name)) + (,monokai-256-class (:inherit message-header-name)))) + + `(gnus-header-newsgroups + ((,monokai-class (:inherit message-header-other)) + (,monokai-256-class (:inherit message-header-other)))) + + `(gnus-header-subject + ((,monokai-class (:inherit message-header-subject)) + (,monokai-256-class (:inherit message-header-subject)))) + + `(gnus-summary-cancelled + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(gnus-summary-high-ancient + ((,monokai-class (:foreground ,monokai-blue + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight bold)))) + + `(gnus-summary-high-read + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + `(gnus-summary-high-ticked + ((,monokai-class (:foreground ,monokai-orange + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-orange + :weight bold)))) + + `(gnus-summary-high-unread + ((,monokai-class (:foreground ,monokai-foreground + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :weight bold)))) + + `(gnus-summary-low-ancient + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-summary-low-read + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-summary-low-ticked + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(gnus-summary-low-unread + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(gnus-summary-normal-ancient + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-summary-normal-read + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-summary-normal-ticked + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(gnus-summary-normal-unread + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(gnus-summary-selected + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(gnus-cite-1 + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-cite-2 + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-cite-3 + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-cite-4 + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-cite-5 + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-cite-6 + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-cite-7 + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(gnus-cite-8 + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(gnus-cite-9 + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(gnus-cite-10 + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(gnus-cite-11 + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(gnus-group-news-1-empty + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(gnus-group-news-2-empty + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-group-news-3-empty + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(gnus-group-news-4-empty + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-group-news-5-empty + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(gnus-group-news-6-empty + ((,monokai-class (:foreground ,monokai-blue-lc)) + (,monokai-256-class (:foreground ,monokai-256-blue-lc)))) + + `(gnus-group-news-low-empty + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(gnus-signature + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(gnus-x-face + ((,monokai-class (:background ,monokai-foreground + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-foreground + :foreground ,monokai-256-background)))) + + + ;; helm + `(helm-apt-deinstalled + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(helm-apt-installed + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(helm-bookmark-directory + ((,monokai-class (:inherit helm-ff-directory)) + (,monokai-256-class (:inherit helm-ff-directory)))) + + `(helm-bookmark-file + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(helm-bookmark-gnus + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(helm-bookmark-info + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(helm-bookmark-man + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(helm-bookmark-w3m + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(helm-bookmarks-su + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(helm-buffer-file + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(helm-buffer-directory + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(helm-buffer-process + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(helm-buffer-saved-out + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background + :inverse-video t)))) + + `(helm-buffer-size + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(helm-candidate-number + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis + :bold t)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis + :bold t)))) + + `(helm-ff-directory + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(helm-ff-executable + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(helm-ff-file + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-foreground)))) + + `(helm-ff-invalid-symlink + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-orange + :slant italic)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-orange + :slant italic)))) + + `(helm-ff-prefix + ((,monokai-class (:background ,monokai-green + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-green + :foreground ,monokai-256-background)))) + + `(helm-ff-symlink + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(helm-grep-file + ((,monokai-class (:foreground ,monokai-cyan + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :underline t)))) + + `(helm-grep-finish + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(helm-grep-lineno + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(helm-grep-match + ((,monokai-class (:inherit helm-match)) + (,monokai-256-class (:inherit helm-match)))) + + `(helm-grep-running + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(helm-header + ((,monokai-class (:inherit header-line)) + (,monokai-256-class (:inherit terminal-header-line)))) + + `(helm-lisp-completion-info + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(helm-lisp-show-completion + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-highlight-line + :bold t)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-highlight-line + :bold t)))) + + `(helm-M-x-key + ((,monokai-class (:foreground ,monokai-orange + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-orange + :underline t)))) + + `(helm-moccur-buffer + ((,monokai-class (:foreground ,monokai-cyan + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :underline t)))) + + `(helm-match + ((,monokai-class (:foreground ,monokai-green :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-green :inherit bold)))) + + `(helm-match-item + ((,monokai-class (:inherit helm-match)) + (,monokai-256-class (:inherit helm-match)))) + + `(helm-selection + ((,monokai-class (:background ,monokai-highlight + :inherit bold + :underline nil)) + (,monokai-256-class (:background ,monokai-256-highlight + :inherit bold + :underline nil)))) + + `(helm-selection-line + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis + :underline nil)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis + :underline nil)))) + + `(helm-separator + ((,monokai-class (:foreground ,monokai-gray)) + (,monokai-256-class (:foreground ,monokai-256-gray)))) + + `(helm-source-header + ((,monokai-class (:background ,monokai-violet-l + :foreground ,monokai-background + :underline nil)) + (,monokai-256-class (:background ,monokai-256-violet-l + :foreground ,monokai-256-background + :underline nil)))) + + `(helm-swoop-target-line-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(helm-swoop-target-line-block-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(helm-swoop-target-word-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(helm-time-zone-current + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(helm-time-zone-home + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(helm-visible-mark + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-magenta :bold t)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-magenta :bold t)))) + + ;; helm-ls-git + `(helm-ls-git-modified-not-staged-face + ((,monokai-class :foreground ,monokai-blue) + (,monokai-256-class :foreground ,monokai-256-blue))) + + `(helm-ls-git-modified-and-staged-face + ((,monokai-class :foreground ,monokai-blue-l) + (,monokai-256-class :foreground ,monokai-256-blue-l))) + + `(helm-ls-git-renamed-modified-face + ((,monokai-class :foreground ,monokai-blue-l) + (,monokai-256-class :foreground ,monokai-256-blue-l))) + + `(helm-ls-git-untracked-face + ((,monokai-class :foreground ,monokai-orange) + (,monokai-256-class :foreground ,monokai-256-orange))) + + `(helm-ls-git-added-copied-face + ((,monokai-class :foreground ,monokai-green) + (,monokai-256-class :foreground ,monokai-256-green))) + + `(helm-ls-git-added-modified-face + ((,monokai-class :foreground ,monokai-green-l) + (,monokai-256-class :foreground ,monokai-256-green-l))) + + `(helm-ls-git-deleted-not-staged-face + ((,monokai-class :foreground ,monokai-red) + (,monokai-256-class :foreground ,monokai-256-red))) + + `(helm-ls-git-deleted-and-staged-face + ((,monokai-class :foreground ,monokai-red-l) + (,monokai-256-class :foreground ,monokai-256-red-l))) + + `(helm-ls-git-conflict-face + ((,monokai-class :foreground ,monokai-yellow) + (,monokai-256-class :foreground ,monokai-256-yellow))) + + ;; hi-lock-mode + `(hi-yellow + ((,monokai-class (:foreground ,monokai-yellow-lc + :background ,monokai-yellow-hc)) + (,monokai-256-class (:foreground ,monokai-256-yellow-lc + :background ,monokai-256-yellow-hc)))) + + `(hi-pink + ((,monokai-class (:foreground ,monokai-magenta-lc + :background ,monokai-magenta-hc)) + (,monokai-256-class (:foreground ,monokai-256-magenta-lc + :background ,monokai-256-magenta-hc)))) + + `(hi-green + ((,monokai-class (:foreground ,monokai-green-lc + :background ,monokai-green-hc)) + (,monokai-256-class (:foreground ,monokai-256-green-lc + :background ,monokai-256-green-hc)))) + + `(hi-blue + ((,monokai-class (:foreground ,monokai-blue-lc + :background ,monokai-blue-hc)) + (,monokai-256-class (:foreground ,monokai-256-blue-lc + :background ,monokai-256-blue-hc)))) + + `(hi-black-b + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background + :weight bold)))) + + `(hi-blue-b + ((,monokai-class (:foreground ,monokai-blue-lc + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue-lc + :weight bold)))) + + `(hi-green-b + ((,monokai-class (:foreground ,monokai-green-lc + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green-lc + :weight bold)))) + + `(hi-red-b + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold)))) + + `(hi-black-hb + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background + :weight bold)))) + + ;; highlight-changes + `(highlight-changes + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(highlight-changes-delete + ((,monokai-class (:foreground ,monokai-red + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-red + :underline t)))) + + ;; highlight-indentation + `(highlight-indentation-face + ((,monokai-class (:background ,monokai-gray)) + (,monokai-256-class (:background ,monokai-256-gray)))) + + `(highlight-indentation-current-column-face + ((,monokai-class (:background ,monokai-gray)) + (,monokai-256-class (:background ,monokai-256-gray)))) + + ;; highlight-indent-guides + ;; --- + ;; Gray colors sorted by brightness: + ;; monokai-gray-d + ;; monokai-highlight-alt + ;; monokai-highlight-line + ;; monokai-highlight + ;; monokai-gray + ;; monokai-comments + ;; monokai-gray-l + ;; monokai-line-number + ;; --- + `(highlight-indent-guides-odd-face + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(highlight-indent-guides-even-face + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-256-highlight-alt)))) + + `(highlight-indent-guides-top-odd-face + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + `(highlight-indent-guides-top-even-face + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + `(highlight-indent-guides-character-face + ((,monokai-class (:foreground ,monokai-highlight)) + (,monokai-256-class (:foreground ,monokai-256-highlight)))) + + `(highlight-indent-guides-stack-odd-face + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-256-highlight-alt)))) + + `(highlight-indent-guides-stack-even-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(highlight-indent-guides-top-character-face + ((,monokai-class (:foreground ,monokai-gray)) + (,monokai-256-class (:foreground ,monokai-256-gray)))) + + `(highlight-indent-guides-stack-character-face + ((,monokai-class (:foreground ,monokai-gray)) + (,monokai-256-class (:foreground ,monokai-256-gray)))) + + ;; highlight-symbol + `(highlight-symbol-face + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + ;; hl-line-mode + `(hl-line + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(hl-line-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + ;; tty-menu + `(tty-menu-enabled-face + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(tty-menu-disabled-face + ((,monokai-class (:foreground ,monokai-comments :background ,monokai-gray-d)) + (,monokai-256-class (:foreground ,monokai-256-comments :background ,monokai-256-gray-d)))) + + `(tty-menu-selected-face + ((,monokai-class (:background ,monokai-highlight)) + (,monokai-256-class (:background ,monokai-256-highlight)))) + + ;; ido-mode + `(ido-first-match + ((,monokai-class (:foreground ,monokai-yellow + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight normal)))) + + `(ido-only-match + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-yellow + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-yellow + :weight normal)))) + + `(ido-subdir + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(ido-incomplete-regexp + ((,monokai-class (:foreground ,monokai-red + :weight bold )) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold )))) + + `(ido-indicator + ((,monokai-class (:background ,monokai-red + :foreground ,monokai-background + :width condensed)) + (,monokai-256-class (:background ,monokai-256-red + :foreground ,monokai-256-background + :width condensed)))) + + `(ido-virtual + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + ;; info + `(info-header-xref + ((,monokai-class (:foreground ,monokai-green + :inherit bold + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-green + :inherit bold + :underline t)))) + + `(info-menu + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(info-node + ((,monokai-class (:foreground ,monokai-violet + :inherit bold)) + (,monokai-256-class (:foreground ,monokai-256-violet + :inherit bold)))) + + `(info-quoted-name + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(info-reference-item + ((,monokai-class (:background unspecified + :underline t + :inherit bold)) + (,monokai-256-class (:background unspecified + :underline t + :inherit bold)))) + + `(info-string + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(info-title-1 + ((,monokai-class (:height ,monokai-height-plus-4)) + (,monokai-256-class (:height ,monokai-height-plus-4)))) + + `(info-title-2 + ((,monokai-class (:height ,monokai-height-plus-3)) + (,monokai-256-class (:height ,monokai-height-plus-3)))) + + `(info-title-3 + ((,monokai-class (:height ,monokai-height-plus-2)) + (,monokai-256-class (:height ,monokai-height-plus-2)))) + + `(info-title-4 + ((,monokai-class (:height ,monokai-height-plus-1)) + (,monokai-256-class (:height ,monokai-height-plus-1)))) + + ;; ivy + `(ivy-current-match + ((,monokai-class (:background ,monokai-gray :inherit bold)) + (,monokai-256-class (:background ,monokai-gray-l :inherit bold)))) + + `(ivy-minibuffer-match-face-1 + ((,monokai-class (:inherit bold)) + (,monokai-256-class (:inherit bold)))) + + `(ivy-minibuffer-match-face-2 + ((,monokai-class (:foreground ,monokai-violet + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-violet + :underline t)))) + + `(ivy-minibuffer-match-face-3 + ((,monokai-class (:foreground ,monokai-green + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-green + :underline t)))) + + `(ivy-minibuffer-match-face-4 + ((,monokai-class (:foreground ,monokai-yellow + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :underline t)))) + + `(ivy-remote + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(swiper-line-face + ((,monokai-class (:background ,monokai-highlight-line)))) + + `(swiper-match-face-1 + ((,monokai-class (:background ,monokai-gray-d)))) + + `(swiper-match-face-2 + ((,monokai-class (:background ,monokai-green)))) + + `(swiper-match-face-3 + ((,monokai-class (:background ,monokai-orange)))) + + `(swiper-match-face-4 + ((,monokai-class (:background ,monokai-magenta)))) + + ;; jabber + `(jabber-activity-face + ((,monokai-class (:weight bold + :foreground ,monokai-red)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-red)))) + + `(jabber-activity-personal-face + ((,monokai-class (:weight bold + :foreground ,monokai-blue)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-blue)))) + + `(jabber-chat-error + ((,monokai-class (:weight bold + :foreground ,monokai-red)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-red)))) + + `(jabber-chat-prompt-foreign + ((,monokai-class (:weight bold + :foreground ,monokai-red)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-red)))) + + `(jabber-chat-prompt-local + ((,monokai-class (:weight bold + :foreground ,monokai-blue)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-blue)))) + + `(jabber-chat-prompt-system + ((,monokai-class (:weight bold + :foreground ,monokai-green)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-green)))) + + `(jabber-chat-text-foreign + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(jabber-chat-text-local + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(jabber-chat-rare-time-face + ((,monokai-class (:underline t + :foreground ,monokai-green)) + (,monokai-256-class (:underline t + :foreground ,monokai-256-green)))) + + `(jabber-roster-user-away + ((,monokai-class (:slant italic + :foreground ,monokai-green)) + (,monokai-256-class (:slant italic + :foreground ,monokai-256-green)))) + + `(jabber-roster-user-chatty + ((,monokai-class (:weight bold + :foreground ,monokai-orange)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-orange)))) + + `(jabber-roster-user-dnd + ((,monokai-class (:slant italic + :foreground ,monokai-red)) + (,monokai-256-class (:slant italic + :foreground ,monokai-256-red)))) + + `(jabber-roster-user-error + ((,monokai-class (:weight light + :slant italic + :foreground ,monokai-red)) + (,monokai-256-class (:weight light + :slant italic + :foreground ,monokai-256-red)))) + + `(jabber-roster-user-offline + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(jabber-roster-user-online + ((,monokai-class (:weight bold + :foreground ,monokai-blue)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-blue)))) + + `(jabber-roster-user-xa + ((,monokai-class (:slant italic + :foreground ,monokai-magenta)) + (,monokai-256-class (:slant italic + :foreground ,monokai-256-magenta)))) + + ;; js2-mode colors + `(js2-error + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(js2-external-variable + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(js2-function-call + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(js2-function-param + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(js2-instance-member + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(js2-jsdoc-html-tag-delimiter + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(js2-jsdoc-html-tag-name + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(js2-jsdoc-tag + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(js2-jsdoc-type + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(js2-jsdoc-value + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(js2-magic-paren + ((,monokai-class (:underline t)) + (,monokai-256-class (:underline t)))) + + `(js2-object-property + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(js2-private-function-call + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(js2-private-member + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(js2-warning + ((,monokai-class (:underline ,monokai-orange)) + (,monokai-256-class (:underline ,monokai-256-orange)))) + + ;; jedi + `(jedi:highlight-function-argument + ((,monokai-class (:inherit bold)) + (,monokai-256-class (:inherit bold)))) + + ;; linum-mode + `(linum + ((,monokai-class (:foreground ,monokai-line-number + :background ,monokai-fringe-bg + :inherit default + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-line-number + :background ,monokai-256-fringe-bg + :inherit default + :underline nil)))) + + ;; line-number (>= Emacs26) + `(line-number + ((,monokai-class (:foreground ,monokai-line-number + :background ,monokai-fringe-bg + :inherit default + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-line-number + :background ,monokai-256-fringe-bg + :inherit default + :underline nil)))) + `(line-number-current-line + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-fringe-bg + :inherit default + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-fringe-bg + :inherit default + :underline nil)))) + + ;; linum-relative-current-face + `(linum-relative-current-face + ((,monokai-class (:foreground ,monokai-line-number + :background ,monokai-highlight-line + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-line-number + :background ,monokai-256-highlight-line + :underline nil)))) + + ;; lsp-mode + `(lsp-ui-doc-header + ((,monokai-class (:inherit org-document-title)) + (,monokai-256-class (:inherit org-document-title)))) + + `(lsp-ui-doc-background + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(lsp-ui-doc-border + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-256-highlight-alt)))) + + `(eldoc-box-body + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + `(eldoc-box-border + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-256-highlight-alt)))) + + ;; lusty-explorer + `(lusty-directory-face + ((,monokai-class (:inherit dimonokai-red-directory)) + (,monokai-256-class (:inherit dimonokai-red-directory)))) + + `(lusty-file-face + ((,monokai-class nil) + (,monokai-256-class nil))) + + `(lusty-match-face + ((,monokai-class (:inherit ido-first-match)) + (,monokai-256-class (:inherit ido-first-match)))) + + `(lusty-slash-face + ((,monokai-class (:foreground ,monokai-cyan + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :weight bold)))) + + ;; magit + `(magit-bisect-good + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(magit-bisect-skip + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(magit-bisect-bad + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(magit-blame-highlight + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-highlight-alt)))) + + `(magit-diff-file-heading-selection + ((,monokai-class (:inherit magit-diff-file-heading-highlight + :foreground ,monokai-orange-d)) + (,monokai-256-class (:inherit magit-diff-file-heading-highlight + :foreground ,monokai-256-orange-d)))) + + `(magit-diff-hunk-heading + ((,monokai-class (:foreground ,monokai-gray-d + :background ,monokai-gray-l)) + (,monokai-256-class (:foreground ,monokai-256-gray-d + :background ,monokai-256-gray-l)))) + + `(magit-diff-hunk-heading-highlight + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-foreground)))) + + `(magit-diff-hunk-heading-selection + ((,monokai-class (:inherit magit-diff-hunk-heading-highlight + :foreground ,monokai-orange)) + (,monokai-256-class (:inherit magit-diff-hunk-heading-highlight + :foreground ,monokai-256-orange)))) + + `(magit-diff-lines-heading + ((,monokai-class (:inherit magit-diff-hunk-heading-highlight + :foreground ,monokai-background + :background ,monokai-orange-l)) + (,monokai-256-class (:inherit magit-diff-hunk-heading-highlight + :foreground ,monokai-256-background + :background ,monokai-256-orange-l)))) + + `(magit-diff-added + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background)))) + + `(magit-diff-removed + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background)))) + + `(magit-diff-base + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-background)))) + + `(magit-diff-context + ((,monokai-class (:foreground ,monokai-gray-l)) + (,monokai-256-class (:foreground ,monokai-256-gray-l)))) + + `(magit-diff-added-highlight + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-highlight-alt)))) + + `(magit-diff-removed-highlight + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-highlight-alt)))) + + `(magit-diff-base-highlight + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-highlight-alt)))) + + `(magit-diff-context-highlight + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-highlight-alt)))) + + `(magit-diffstat-added + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(magit-diffstat-removed + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(magit-log-graph + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(magit-log-author + ((,monokai-class (:foreground ,monokai-red-d + :slant normal + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-red-d + :slant normal + :weight normal)))) + + `(magit-log-date + ((,monokai-class (:foreground ,monokai-gray + :slant normal + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-gray + :slant normal + :weight normal)))) + + `(magit-process-ok + ((,monokai-class (:inherit magit-section-heading + :foreground ,monokai-green)) + (,monokai-256-class (:inherit magit-section-heading + :foreground ,monokai-256-green)))) + + `(magit-process-ng + ((,monokai-class (:inherit magit-section-heading + :foreground ,monokai-red)) + (,monokai-256-class (:inherit magit-section-heading + :foreground ,monokai-256-red)))) + + `(magit-reflog-commit + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(magit-reflog-amend + ((,monokai-class (:foreground ,monokai-magenta)) + (,monokai-256-class (:foreground ,monokai-256-magenta)))) + + `(magit-reflog-merge + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(magit-reflog-checkout + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(magit-reflog-reset + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(magit-reflog-rebase + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(magit-reflog-cherry-pick + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(magit-reflog-remote + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(magit-reflog-other + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(magit-section-highlight + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(magit-section-heading + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(magit-section-heading-selection + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(magit-sequence-stop + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(magit-sequence-part + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(magit-sequence-head + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(magit-sequence-drop + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(magit-dimmed + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(magit-hash + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(magit-tag + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(magit-branch-remote + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(magit-branch-local + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(magit-refname + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(magit-signature-good + ((,monokai-class (:foreground ,monokai-green-d)) + (,monokai-256-class (:foreground ,monokai-256-green-d)))) + + `(magit-signature-bad + ((,monokai-class (:foreground ,monokai-red-d + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red-d + :weight bold)))) + + `(magit-signature-untrusted + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(magit-signature-expired + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(magit-signature-revoked + ((,monokai-class (:foreground ,monokai-magenta)) + (,monokai-256-class (:foreground ,monokai-256-magenta)))) + + `(magit-signature-error + ((,monokai-class (:foreground ,monokai-red-l)) + (,monokai-256-class (:foreground ,monokai-256-red-l)))) + + `(magit-cherry-unmatched + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(magit-cherry-equivalent + ((,monokai-class (:foreground ,monokai-magenta)) + (,monokai-256-class (:foreground ,monokai-256-magenta)))) + + ;; man + `(Man-overstrike + ((,monokai-class (:foreground ,monokai-blue + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight bold)))) + + `(Man-reverse + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(Man-underline + ((,monokai-class (:foreground ,monokai-green :underline t)) + (,monokai-256-class (:foreground ,monokai-256-green :underline t)))) + + ;; monky + `(monky-section-title + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(monky-diff-add + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(monky-diff-del + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; markdown-mode + `(markdown-header-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(markdown-header-face-1 + ((,monokai-class (:inherit markdown-header-face + :height ,monokai-height-plus-4)) + (,monokai-256-class (:inherit markdown-header-face + :height ,monokai-height-plus-4)))) + + `(markdown-header-face-2 + ((,monokai-class (:inherit markdown-header-face + :height ,monokai-height-plus-3)) + (,monokai-256-class (:inherit markdown-header-face + :height ,monokai-height-plus-3)))) + + `(markdown-header-face-3 + ((,monokai-class (:inherit markdown-header-face + :height ,monokai-height-plus-2)) + (,monokai-256-class (:inherit markdown-header-face + :height ,monokai-height-plus-2)))) + + `(markdown-header-face-4 + ((,monokai-class (:inherit markdown-header-face + :height ,monokai-height-plus-1)) + (,monokai-256-class (:inherit markdown-header-face + :height ,monokai-height-plus-1)))) + + `(markdown-header-face-5 + ((,monokai-class (:inherit markdown-header-face)) + (,monokai-256-class (:inherit markdown-header-face)))) + + `(markdown-header-face-6 + ((,monokai-class (:inherit markdown-header-face)) + (,monokai-256-class (:inherit markdown-header-face)))) + + ;; message-mode + `(message-cited-text + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(message-header-name + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(message-header-other + ((,monokai-class (:foreground ,monokai-foreground + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :weight normal)))) + + `(message-header-to + ((,monokai-class (:foreground ,monokai-foreground + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :weight normal)))) + + `(message-header-cc + ((,monokai-class (:foreground ,monokai-foreground + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :weight normal)))) + + `(message-header-newsgroups + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(message-header-subject + ((,monokai-class (:foreground ,monokai-cyan + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :weight normal)))) + + `(message-header-xheader + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(message-mml + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(message-separator + ((,monokai-class (:foreground ,monokai-comments + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-comments + :slant italic)))) + + ;; mew + `(mew-face-header-subject + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(mew-face-header-from + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(mew-face-header-date + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-header-to + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(mew-face-header-key + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-header-private + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-header-important + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(mew-face-header-marginal + ((,monokai-class (:foreground ,monokai-foreground + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :weight bold)))) + + `(mew-face-header-warning + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(mew-face-header-xmew + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-header-xmew-bad + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(mew-face-body-url + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(mew-face-body-comment + ((,monokai-class (:foreground ,monokai-foreground + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :slant italic)))) + + `(mew-face-body-cite1 + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-body-cite2 + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(mew-face-body-cite3 + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(mew-face-body-cite4 + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(mew-face-body-cite5 + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(mew-face-mark-review + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(mew-face-mark-escape + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-mark-delete + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(mew-face-mark-unlink + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(mew-face-mark-refile + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-mark-unread + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(mew-face-eof-message + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(mew-face-eof-part + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + ;; mingus + `(mingus-directory-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(mingus-pausing-face + ((,monokai-class (:foreground ,monokai-magenta)) + (,monokai-256-class (:foreground ,monokai-256-magenta)))) + + `(mingus-playing-face + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(mingus-playlist-face + ((,monokai-class (:foreground ,monokai-cyan )) + (,monokai-256-class (:foreground ,monokai-256-cyan )))) + + `(mingus-song-file-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(mingus-stopped-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; mmm + `(mmm-init-submode-face + ((,monokai-class (:background ,monokai-violet-d)) + (,monokai-256-class (:background ,monokai-256-violet-d)))) + + `(mmm-cleanup-submode-face + ((,monokai-class (:background ,monokai-orange-d)) + (,monokai-256-class (:background ,monokai-256-orange-d)))) + + `(mmm-declaration-submode-face + ((,monokai-class (:background ,monokai-cyan-d)) + (,monokai-256-class (:background ,monokai-256-cyan-d)))) + + `(mmm-comment-submode-face + ((,monokai-class (:background ,monokai-blue-d)) + (,monokai-256-class (:background ,monokai-256-blue-d)))) + + `(mmm-output-submode-face + ((,monokai-class (:background ,monokai-red-d)) + (,monokai-256-class (:background ,monokai-256-red-d)))) + + `(mmm-special-submode-face + ((,monokai-class (:background ,monokai-green-d)) + (,monokai-256-class (:background ,monokai-256-green-d)))) + + `(mmm-code-submode-face + ((,monokai-class (:background ,monokai-gray)) + (,monokai-256-class (:background ,monokai-256-gray)))) + + `(mmm-default-submode-face + ((,monokai-class (:background ,monokai-gray-d)) + (,monokai-256-class (:background ,monokai-256-gray-d)))) + + ;; moccur + `(moccur-current-line-face + ((,monokai-class (:underline t)) + (,monokai-256-class (:underline t)))) + + `(moccur-edit-done-face + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-background + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-background + :slant italic)))) + + `(moccur-edit-face + ((,monokai-class (:background ,monokai-yellow + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground ,monokai-256-background)))) + + `(moccur-edit-file-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(moccur-edit-reject-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(moccur-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis + :weight bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis + :weight bold)))) + + `(search-buffers-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis + :weight bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis + :weight bold)))) + + `(search-buffers-header-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-yellow + :weight bold)))) + + ;; mu4e + `(mu4e-cited-1-face + ((,monokai-class (:foreground ,monokai-green + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-green + :slant italic + :weight normal)))) + + `(mu4e-cited-2-face + ((,monokai-class (:foreground ,monokai-blue + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-blue + :slant italic + :weight normal)))) + + `(mu4e-cited-3-face + ((,monokai-class (:foreground ,monokai-orange + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-orange + :slant italic + :weight normal)))) + + `(mu4e-cited-4-face + ((,monokai-class (:foreground ,monokai-yellow + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :slant italic + :weight normal)))) + + `(mu4e-cited-5-face + ((,monokai-class (:foreground ,monokai-cyan + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :slant italic + :weight normal)))) + + `(mu4e-cited-6-face + ((,monokai-class (:foreground ,monokai-green + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-green + :slant italic + :weight normal)))) + + `(mu4e-cited-7-face + ((,monokai-class (:foreground ,monokai-blue + :slant italic + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-blue + :slant italic + :weight normal)))) + + `(mu4e-flagged-face + ((,monokai-class (:foreground ,monokai-magenta + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-magenta + :weight bold)))) + + `(mu4e-view-url-number-face + ((,monokai-class (:foreground ,monokai-yellow + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight normal)))) + + `(mu4e-warning-face + ((,monokai-class (:foreground ,monokai-red + :slant normal + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :slant normal + :weight bold)))) + + `(mu4e-header-highlight-face + ((,monokai-class (:inherit unspecified + :foreground unspecified + :background ,monokai-highlight-line + :underline ,monokai-emphasis + :weight normal)) + (,monokai-256-class (:inherit unspecified + :foreground unspecified + :background ,monokai-256-highlight-line + :underline ,monokai-256-emphasis + :weight normal)))) + + + `(mu4e-draft-face + ((,monokai-class (:inherit font-lock-string-face)) + (,monokai-256-class (:inherit font-lock-string-face)))) + + `(mu4e-footer-face + ((,monokai-class (:inherit font-lock-comment-face)) + (,monokai-256-class (:inherit font-lock-comment-face)))) + + `(mu4e-forwarded-face + ((,monokai-class (:inherit font-lock-builtin-face + :weight normal)) + (,monokai-256-class (:inherit font-lock-builtin-face + :weight normal)))) + + `(mu4e-header-face + ((,monokai-class (:inherit default)) + (,monokai-256-class (:inherit default)))) + + `(mu4e-header-marks-face + ((,monokai-class (:inherit font-lock-preprocessor-face)) + (,monokai-256-class (:inherit font-lock-preprocessor-face)))) + + `(mu4e-header-title-face + ((,monokai-class (:inherit font-lock-type-face)) + (,monokai-256-class (:inherit font-lock-type-face)))) + + `(mu4e-highlight-face + ((,monokai-class (:inherit font-lock-pseudo-keyword-face + :weight bold)) + (,monokai-256-class (:inherit font-lock-pseudo-keyword-face + :weight bold)))) + + `(mu4e-moved-face + ((,monokai-class (:inherit font-lock-comment-face + :slant italic)) + (,monokai-256-class (:inherit font-lock-comment-face + :slant italic)))) + + `(mu4e-ok-face + ((,monokai-class (:inherit font-lock-comment-face + :slant normal + :weight bold)) + (,monokai-256-class (:inherit font-lock-comment-face + :slant normal + :weight bold)))) + + `(mu4e-replied-face + ((,monokai-class (:inherit font-lock-builtin-face + :weight normal)) + (,monokai-256-class (:inherit font-lock-builtin-face + :weight normal)))) + + `(mu4e-system-face + ((,monokai-class (:inherit font-lock-comment-face + :slant italic)) + (,monokai-256-class (:inherit font-lock-comment-face + :slant italic)))) + + `(mu4e-title-face + ((,monokai-class (:inherit font-lock-type-face + :weight bold)) + (,monokai-256-class (:inherit font-lock-type-face + :weight bold)))) + + `(mu4e-trashed-face + ((,monokai-class (:inherit font-lock-comment-face + :strike-through t)) + (,monokai-256-class (:inherit font-lock-comment-face + :strike-through t)))) + + `(mu4e-unread-face + ((,monokai-class (:inherit font-lock-keyword-face + :weight bold)) + (,monokai-256-class (:inherit font-lock-keyword-face + :weight bold)))) + + `(mu4e-view-attach-number-face + ((,monokai-class (:inherit font-lock-variable-name-face + :weight bold)) + (,monokai-256-class (:inherit font-lock-variable-name-face + :weight bold)))) + + `(mu4e-view-contact-face + ((,monokai-class (:foreground ,monokai-foreground + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :weight normal)))) + + `(mu4e-view-header-key-face + ((,monokai-class (:inherit message-header-name + :weight normal)) + (,monokai-256-class (:inherit message-header-name + :weight normal)))) + + `(mu4e-view-header-value-face + ((,monokai-class (:foreground ,monokai-cyan + :weight normal + :slant normal)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :weight normal + :slant normal)))) + + `(mu4e-view-link-face + ((,monokai-class (:inherit link)) + (,monokai-256-class (:inherit link)))) + + `(mu4e-view-special-header-value-face + ((,monokai-class (:foreground ,monokai-blue + :weight normal + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight normal + :underline nil)))) + + ;; mumamo + `(mumamo-background-chunk-submode1 + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + ;; nav + `(nav-face-heading + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(nav-face-button-num + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(nav-face-dir + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(nav-face-hdir + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(nav-face-file + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(nav-face-hfile + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; nav-flash + `(nav-flash-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + ;; neo-tree + `(neo-banner-face + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-background + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-background + :weight bold)))) + + + `(neo-header-face + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background)))) + + `(neo-root-dir-face + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background)))) + + `(neo-dir-link-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-background)))) + + `(neo-file-link-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(neo-button-face + ((,monokai-class (:underline nil)) + (,monokai-256-class (:underline nil)))) + + `(neo-expand-btn-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(neo-vc-default-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(neo-vc-user-face + ((,monokai-class (:foreground ,monokai-red + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-red + :slant italic)))) + + `(neo-vc-up-to-date-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(neo-vc-edited-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(neo-vc-needs-update-face + ((,monokai-class (:underline t)) + (,monokai-256-class (:underline t)))) + + `(neo-vc-needs-merge-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(neo-vc-unlocked-changes-face + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-comments)))) + + `(neo-vc-added-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(neo-vc-removed-face + ((,monokai-class (:strike-through t)) + (,monokai-256-class (:strike-through t)))) + + `(neo-vc-conflict-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(neo-vc-missing-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(neo-vc-ignored-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + ;; adoc-mode / markup + `(markup-meta-face + ((,monokai-class (:foreground ,monokai-gray-l)) + (,monokai-256-class (:foreground ,monokai-256-gray-l)))) + + `(markup-table-face + ((,monokai-class (:foreground ,monokai-blue-hc + :background ,monokai-blue-lc)) + (,monokai-256-class (:foreground ,monokai-256-blue-hc + :background ,monokai-256-blue-lc)))) + + `(markup-verbatim-face + ((,monokai-class (:background ,monokai-orange-lc)) + (,monokai-256-class (:background ,monokai-256-orange-lc)))) + + `(markup-list-face + ((,monokai-class (:foreground ,monokai-violet-hc + :background ,monokai-violet-lc)) + (,monokai-256-class (:foreground ,monokai-256-violet-hc + :background ,monokai-256-violet-lc)))) + + `(markup-replacement-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(markup-complex-replacement-face + ((,monokai-class (:foreground ,monokai-violet-hc + :background ,monokai-violet-lc)) + (,monokai-256-class (:foreground ,monokai-256-violet-hc + :background ,monokai-256-violet-lc)))) + + `(markup-gen-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(markup-secondary-text-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; org-mode + `(org-agenda-structure + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-highlight-line + :weight bold + :slant normal + :inverse-video nil + :height ,monokai-height-plus-1 + :underline nil + :box (:line-width 2 :color ,monokai-background))) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-highlight-line + :weight bold + :slant normal + :inverse-video nil + :height ,monokai-height-plus-1 + :underline nil + :box (:line-width 2 :color ,monokai-256-background))))) + + `(org-agenda-calendar-event + ((,monokai-class (:foreground ,monokai-emphasis)) + (,monokai-256-class (:foreground ,monokai-256-emphasis)))) + + `(org-agenda-calendar-sexp + ((,monokai-class (:foreground ,monokai-foreground + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :slant italic)))) + + `(org-agenda-date + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-background + :weight normal + :inverse-video nil + :overline nil + :slant normal + :height 1.0 + :box (:line-width 2 :color ,monokai-background))) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-background + :weight normal + :inverse-video nil + :overline nil + :slant normal + :height 1.0 + :box (:line-width 2 :color ,monokai-256-background)))) t) + + `(org-agenda-date-weekend + ((,monokai-class (:inherit org-agenda-date + :inverse-video nil + :background unspecified + :foreground ,monokai-comments + :weight unspecified + :underline t + :overline nil + :box unspecified)) + (,monokai-256-class (:inherit org-agenda-date + :inverse-video nil + :background unspecified + :foreground ,monokai-256-comments + :weight unspecified + :underline t + :overline nil + :box unspecified))) t) + + `(org-agenda-date-today + ((,monokai-class (:inherit org-agenda-date + :inverse-video t + :weight bold + :underline unspecified + :overline nil + :box unspecified + :foreground ,monokai-blue + :background ,monokai-background)) + (,monokai-256-class (:inherit org-agenda-date + :inverse-video t + :weight bold + :underline unspecified + :overline nil + :box unspecified + :foreground ,monokai-256-blue + :background ,monokai-256-background))) t) + + `(org-agenda-done + ((,monokai-class (:foreground ,monokai-comments + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-comments + :slant italic))) t) + + `(org-archived + ((,monokai-class (:foreground ,monokai-comments + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-comments + :weight normal)))) + + `(org-block + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-highlight-alt)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-highlight-alt)))) + + `(org-block-background + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-256-highlight-alt)))) + + `(org-block-begin-line + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-gray-d + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-gray-d + :slant italic)))) + + `(org-block-end-line + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-gray-d + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-gray-d + :slant italic)))) + + `(org-checkbox + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-foreground + :box (:line-width 1 :style released-button))) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-foreground + :box (:line-width 1 :style released-button))))) + + `(org-code + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(org-date + ((,monokai-class (:foreground ,monokai-blue + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-blue + :underline t)))) + + `(org-done + ((,monokai-class (:weight bold + :foreground ,monokai-green)) + (,monokai-256-class (:weight bold + :foreground ,monokai-256-green)))) + + `(org-ellipsis + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(org-formula + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(org-headline-done + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(org-hide + ((,monokai-class (:foreground ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-background)))) + + `(org-level-1 + ((,monokai-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-4 + :foreground ,monokai-orange)) + (,monokai-256-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-4 + :foreground ,monokai-256-orange)))) + + `(org-level-2 + ((,monokai-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-3 + :foreground ,monokai-green)) + (,monokai-256-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-3 + :foreground ,monokai-256-green)))) + + `(org-level-3 + ((,monokai-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-2 + :foreground ,monokai-blue)) + (,monokai-256-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-2 + :foreground ,monokai-256-blue)))) + + `(org-level-4 + ((,monokai-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-1 + :foreground ,monokai-yellow)) + (,monokai-256-class (:inherit ,monokai-pitch + :height ,monokai-height-plus-1 + :foreground ,monokai-256-yellow)))) + + `(org-level-5 + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-cyan)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-cyan)))) + + `(org-level-6 + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-green)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-green)))) + + `(org-level-7 + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-red)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-red)))) + + `(org-level-8 + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-blue)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-blue)))) + + `(org-link + ((,monokai-class (:foreground ,monokai-blue + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-blue + :underline t)))) + + `(org-sexp-date + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(org-scheduled + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(org-scheduled-previously + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(org-scheduled-today + ((,monokai-class (:foreground ,monokai-blue + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-blue + :weight normal)))) + + `(org-special-keyword + ((,monokai-class (:foreground ,monokai-comments + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-comments + :weight bold)))) + + `(org-table + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(org-tag + ((,monokai-class (:weight bold)) + (,monokai-256-class (:weight bold)))) + + `(org-time-grid + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(org-todo + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold)))) + + `(org-upcoming-deadline + ((,monokai-class (:foreground ,monokai-yellow + :weight normal + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight normal + :underline nil)))) + + `(org-warning + ((,monokai-class (:foreground ,monokai-orange + :weight normal + :underline nil)) + (,monokai-256-class (:foreground ,monokai-256-orange + :weight normal + :underline nil)))) + + ;; org-habit (clear=blue, ready=green, alert=yellow, overdue=red. future=lower contrast) + `(org-habit-clear-face + ((,monokai-class (:background ,monokai-blue-lc + :foreground ,monokai-blue-hc)) + (,monokai-256-class (:background ,monokai-256-blue-lc + :foreground ,monokai-256-blue-hc)))) + + `(org-habit-clear-future-face + ((,monokai-class (:background ,monokai-blue-lc)) + (,monokai-256-class (:background ,monokai-256-blue-lc)))) + + `(org-habit-ready-face + ((,monokai-class (:background ,monokai-green-lc + :foreground ,monokai-green)) + (,monokai-256-class (:background ,monokai-256-green-lc + :foreground ,monokai-256-green)))) + + `(org-habit-ready-future-face + ((,monokai-class (:background ,monokai-green-lc)) + (,monokai-256-class (:background ,monokai-256-green-lc)))) + + `(org-habit-alert-face + ((,monokai-class (:background ,monokai-yellow + :foreground ,monokai-yellow-lc)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground ,monokai-256-yellow-lc)))) + + `(org-habit-alert-future-face + ((,monokai-class (:background ,monokai-yellow-lc)) + (,monokai-256-class (:background ,monokai-256-yellow-lc)))) + + `(org-habit-overdue-face + ((,monokai-class (:background ,monokai-red + :foreground ,monokai-red-lc)) + (,monokai-256-class (:background ,monokai-256-red + :foreground ,monokai-256-red-lc)))) + + `(org-habit-overdue-future-face + ((,monokai-class (:background ,monokai-red-lc)) + (,monokai-256-class (:background ,monokai-256-red-lc)))) + + ;; latest additions + `(org-agenda-dimmed-todo-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(org-agenda-restriction-lock + ((,monokai-class (:background ,monokai-yellow)) + (,monokai-256-class (:background ,monokai-256-yellow)))) + + `(org-clock-overlay + ((,monokai-class (:background ,monokai-yellow)) + (,monokai-256-class (:background ,monokai-256-yellow)))) + + `(org-column + ((,monokai-class (:background ,monokai-highlight-line + :strike-through nil + :underline nil + :slant normal + :weight normal + :inherit default)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :strike-through nil + :underline nil + :slant normal + :weight normal + :inherit default)))) + + `(org-column-title + ((,monokai-class (:background ,monokai-highlight-line + :underline t + :weight bold)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :underline t + :weight bold)))) + + `(org-date-selected + ((,monokai-class (:foreground ,monokai-red + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-red + :inverse-video t)))) + + `(org-document-info + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(org-document-title + ((,monokai-class (:foreground ,monokai-emphasis + :weight bold + :height ,monokai-height-plus-4)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :weight bold + :height ,monokai-height-plus-4)))) + + `(org-drawer + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(org-footnote + ((,monokai-class (:foreground ,monokai-magenta + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-magenta + :underline t)))) + + `(org-remark-highlighter + ((,monokai-class (:background ,monokai-highlight-alt :underline ,monokai-gray-l)) + (,monokai-256-class (:background ,monokai-256-highlight :underline ,monokai-256-gray-l)))) + + `(org-latex-and-export-specials + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(org-mode-line-clock-overrun + ((,monokai-class (:inherit mode-line)) + (,monokai-256-class (:inherit mode-line)))) + + ;; outline + `(outline-1 + ((,monokai-class (:inherit org-level-1)) + (,monokai-256-class (:inherit org-level-1)))) + + `(outline-2 + ((,monokai-class (:inherit org-level-2)) + (,monokai-256-class (:inherit org-level-2)))) + + `(outline-3 + ((,monokai-class (:inherit org-level-3)) + (,monokai-256-class (:inherit org-level-3)))) + + `(outline-4 + ((,monokai-class (:inherit org-level-4)) + (,monokai-256-class (:inherit org-level-4)))) + + `(outline-5 + ((,monokai-class (:inherit org-level-5)) + (,monokai-256-class (:inherit org-level-5)))) + + `(outline-6 + ((,monokai-class (:inherit org-level-6)) + (,monokai-256-class (:inherit org-level-6)))) + + `(outline-7 + ((,monokai-class (:inherit org-level-7)) + (,monokai-256-class (:inherit org-level-7)))) + + `(outline-8 + ((,monokai-class (:inherit org-level-8)) + (,monokai-256-class (:inherit org-level-8)))) + + ;; parenface + `(paren-face + ((,monokai-256-class (:foreground ,monokai-comments)))) + + ;; perspective + `(persp-selected-face + ((,monokai-class (:foreground ,monokai-blue + :weight bold)))) + + ;; pretty-mode + `(pretty-mode-symbol-face + ((,monokai-class (:foreground ,monokai-yellow + :weight normal)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight normal)))) + + ;; popup + `(popup-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground)))) + + `(popup-isearch-match + ((,monokai-class (:background ,monokai-green)) + (,monokai-256-class (:background ,monokai-256-green)))) + + `(popup-menu-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground)))) + + `(popup-menu-mouse-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-foreground)))) + + `(popup-menu-selection-face + ((,monokai-class (:background ,monokai-magenta + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-magenta + :foreground ,monokai-256-background)))) + + `(popup-scroll-bar-background-face + ((,monokai-class (:background ,monokai-comments)) + (,monokai-256-class (:background ,monokai-256-comments)))) + + `(popup-scroll-bar-foreground-face + ((,monokai-class (:background ,monokai-emphasis)) + (,monokai-256-class (:background ,monokai-256-emphasis)))) + + `(popup-tip-face + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground)))) + + ;; rainbow-delimiters + `(rainbow-delimiters-depth-1-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(rainbow-delimiters-depth-2-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(rainbow-delimiters-depth-3-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(rainbow-delimiters-depth-4-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(rainbow-delimiters-depth-5-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(rainbow-delimiters-depth-6-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(rainbow-delimiters-depth-7-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(rainbow-delimiters-depth-8-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(rainbow-delimiters-depth-9-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(rainbow-delimiters-depth-10-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(rainbow-delimiters-depth-11-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(rainbow-delimiters-depth-12-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(rainbow-delimiters-unmatched-face + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-background + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-background + :inverse-video t)))) + + ;; realgud + `(realgud-overlay-arrow1 + ((,monokai-class (:foreground ,monokai-green-d)) + (,monokai-256-class (:foreground ,monokai-256-green-d)))) + + `(realgud-overlay-arrow2 + ((,monokai-class (:foreground ,monokai-yellow-d)) + (,monokai-256-class (:foreground ,monokai-256-yellow-d)))) + + `(realgud-overlay-arrow3 + ((,monokai-class (:foreground ,monokai-orange-d)) + (,monokai-256-class (:foreground ,monokai-256-orange-d)))) + + `(realgud-bp-enabled-face + ((,monokai-class (:inherit error)) + (,monokai-256-class (:inherit error)))) + + `(realgud-bp-disabled-face + ((,monokai-class (:inherit secondary-selection)) + (,monokai-256-class (:inherit secondary-selection)))) + + `(realgud-bp-line-enabled-face + ((,monokai-class (:foreground ,monokai-red-d)) + (,monokai-256-class (:foreground ,monokai-256-red-d)))) + + `(realgud-bp-line-disabled-face + ((,monokai-class (:inherit secondary-selection)) + (,monokai-256-class (:inherit secondary-selection)))) + + `(realgud-line-number + ((,monokai-class (:inerhit monokai-line-number)) + (,monokai-256-class (:inerhit monokai-line-number)))) + + `(realgud-backtrace-number + ((,monokai-class (:foreground ,monokai-yellow-d + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + ;; rhtm-mode + `(erb-face + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background)))) + + `(erb-delim-face + ((,monokai-class (:foreground ,monokai-cyan + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :background ,monokai-256-background)))) + + `(erb-exec-face + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background)))) + + `(erb-exec-delim-face + ((,monokai-class (:foreground ,monokai-cyan + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :background ,monokai-256-background)))) + + `(erb-out-face + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background)))) + + `(erb-out-delim-face + ((,monokai-class (:foreground ,monokai-cyan + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :background ,monokai-256-background)))) + + `(erb-comment-face + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background)))) + + `(erb-comment-delim-face + ((,monokai-class (:foreground ,monokai-cyan + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :background ,monokai-256-background)))) + + ;; eww + `(eww-valid-certificate + ((,monokai-class (:inherit success)) + (,monokai-256-class (:inherit success)))) + + `(eww-valid-certificate + ((,monokai-class (:inherit error)) + (,monokai-256-class (:inherit error)))) + + `(eww-form-text + ((,monokai-class (:background ,monokai-gray-d :box (:color ,monokai-highlight-alt))) + (,monokai-256-class (:background ,monokai-gray-d :box (:color ,monokai-highlight-alt))))) + + `(eww-form-textarea + ((,monokai-class (:inherit eww-form-text)) + (,monokai-256-class (:inherit eww-form-text)))) + + `(eww-form-select + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-gray-d + :box (:line-width 2 :color ,monokai-highlight-alt))) + (,monokai-256-class (:foreground ,monokai-foreground + :background ,monokai-gray-d + :box (:line-width 2 :color ,monokai-256-highlight-alt))))) + + `(eww-form-file + ((,monokai-class (:inherit eww-form-select)) + (,monokai-256-class (:inherit eww-form-select)))) + + `(eww-form-submit + ((,monokai-class (:inherit eww-form-select)) + (,monokai-256-class (:inherit eww-form-select)))) + + `(eww-form-checkbox + ((,monokai-class (:inherit eww-form-select)) + (,monokai-256-class (:inherit eww-form-select)))) + + ;; rst-mode + `(rst-level-1-face + ((,monokai-class (:background ,monokai-yellow + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground ,monokai-256-background)))) + + `(rst-level-2-face + ((,monokai-class (:background ,monokai-cyan + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-cyan + :foreground ,monokai-256-background)))) + + `(rst-level-3-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background)))) + + `(rst-level-4-face + ((,monokai-class (:background ,monokai-violet + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-violet + :foreground ,monokai-256-background)))) + + `(rst-level-5-face + ((,monokai-class (:background ,monokai-magenta + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-magenta + :foreground ,monokai-256-background)))) + + `(rst-level-6-face + ((,monokai-class (:background ,monokai-red + :foreground ,monokai-background)) + (,monokai-256-class (:background ,monokai-256-red + :foreground ,monokai-256-background)))) + + ;; rpm-mode + `(rpm-spec-dir-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(rpm-spec-doc-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(rpm-spec-ghost-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(rpm-spec-macro-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(rpm-spec-obsolete-tag-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(rpm-spec-package-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(rpm-spec-section-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(rpm-spec-tag-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(rpm-spec-var-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; sh-mode + `(sh-quoted-exec + ((,monokai-class (:foreground ,monokai-violet + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-violet + :weight bold)))) + + `(sh-escaped-newline + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + `(sh-heredoc + ((,monokai-class (:foreground ,monokai-yellow + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :weight bold)))) + + ;; shr + `(shr-h1 + ((,monokai-class (:inherit shr-text :height 1.5 :weight bold)) + (,monokai-256-class (:inherit shr-text :height 1.5 :weight bold)))) + + `(shr-h2 + ((,monokai-class (:inherit shr-text :height 1.4 :weight bold)) + (,monokai-256-class (:inherit shr-text :height 1.4 :weight bold)))) + + `(shr-h3 + ((,monokai-class (:inherit shr-text :height 1.3 :weight bold)) + (,monokai-256-class (:inherit shr-text :height 1.3 :weight bold)))) + + `(shr-h4 + ((,monokai-class (:inherit shr-text :height 1.2 :weight bold)) + (,monokai-256-class (:inherit shr-text :height 1.2 :weight bold)))) + + `(shr-h5 + ((,monokai-class (:inherit shr-text :height 1.1 :weight bold)) + (,monokai-256-class (:inherit shr-text :height 1.1 :weight bold)))) + + `(shr-h6 + ((,monokai-class (:inherit shr-text :weight bold)) + (,monokai-256-class (:inherit shr-text :weight bold)))) + + `(shr-sup + ((,monokai-class (:inherit shr-text :height 0.8)) + (,monokai-256-class (:inherit shr-text :height 0.8)))) + + `(shr-abbreviation + ((,monokai-class (:inherit shr-text :underline (:style wave))) + (,monokai-256-class (:inherit shr-text :underline (:style wave))))) + + `(shr-link + ((,monokai-class (:inherit shr-text :foreground ,monokai-blue + :underline t :weight bold)) + (,monokai-256-class (:inherit shr-text :foreground ,monokai-256-blue + :underline t :weight bold)))) + + `(shr-selected-link + ((,monokai-class (:inherit shr-link :foreground ,monokai-background :background ,monokai-blue)) + (,monokai-256-class (:inherit shr-link :foreground ,monokai-background :background ,monokai-blue)))) + + `(shr-strike-through + ((,monokai-class (:inherit shr-text :strike-through t)) + (,monokai-256-class (:inherit shr-text :strike-through t)))) + + ;; smartparens + `(sp-pair-overlay-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(sp-wrap-overlay-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(sp-wrap-tag-overlay-face + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(sp-show-pair-enclosing + ((,monokai-class (:inherit highlight)) + (,monokai-256-class (:inherit highlight)))) + + `(sp-show-pair-match-face + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + `(sp-show-pair-mismatch-face + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + ;; show-paren + `(show-paren-match + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + `(show-paren-mismatch + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + ;; mic-paren + `(paren-face-match + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + `(paren-face-mismatch + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + `(paren-face-no-match + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background + :weight normal + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background + :weight normal + :inverse-video t)))) + + ;; SLIME + `(slime-repl-inputed-output-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; smerge + `(smerge-base + ((,monokai-class (:background ,monokai-diff-blue-base)) + (,monokai-256-class (:background ,monokai-256-diff-blue-base)))) + `(smerge-upper + ((,monokai-class (:background ,monokai-diff-red-base)) + (,monokai-256-class (:background ,monokai-256-diff-red-base)))) + `(smerge-lower + ((,monokai-class (:background ,monokai-diff-green-base)) + (,monokai-256-class (:background ,monokai-256-diff-green-base)))) + ;; WARNING: defining this face will overwrite the next two when displaying a + ;; smerge diff in a file. + ;; `(smerge-refined-changed + ;; ((,monokai-class (:background ,monokai-diff-blue-emphasis)) + ;; (,monokai-256-class (:background ,monokai-256-diff-blue-emphasis)))) + `(smerge-refined-added + ((,monokai-class (:background ,monokai-diff-green-emphasis)) + (,monokai-256-class (:background ,monokai-256-diff-green-emphasis)))) + `(smerge-refined-removed + ((,monokai-class (:background ,monokai-diff-red-emphasis)) + (,monokai-256-class (:background ,monokai-256-diff-red-emphasis)))) + + ;; speedbar + `(speedbar-button-face + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-comments)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-comments)))) + + `(speedbar-directory-face + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-blue)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-blue)))) + + `(speedbar-file-face + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-foreground)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-foreground)))) + + `(speedbar-highlight-face + ((,monokai-class (:inherit ,monokai-pitch + :background ,monokai-highlight-line)) + (,monokai-256-class (:inherit ,monokai-pitch + :background ,monokai-256-highlight-line)))) + + `(speedbar-selected-face + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-yellow + :underline t)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-yellow + :underline t)))) + + `(speedbar-separator-face + ((,monokai-class (:inherit ,monokai-pitch + :background ,monokai-blue + :foreground ,monokai-background + :overline ,monokai-cyan-lc)) + (,monokai-256-class (:inherit ,monokai-pitch + :background ,monokai-256-blue + :foreground ,monokai-256-background + :overline ,monokai-256-cyan-lc)))) + + `(speedbar-tag-face + ((,monokai-class (:inherit ,monokai-pitch + :foreground ,monokai-green)) + (,monokai-256-class (:inherit ,monokai-pitch + :foreground ,monokai-256-green)))) + + ;; sunrise commander headings + `(sr-active-path-face + ((,monokai-class (:background ,monokai-blue + :foreground ,monokai-background + :height ,monokai-height-plus-1 + :weight bold)) + (,monokai-256-class (:background ,monokai-256-blue + :foreground ,monokai-256-background + :height ,monokai-height-plus-1 + :weight bold)))) + + `(sr-editing-path-face + ((,monokai-class (:background ,monokai-yellow + :foreground ,monokai-background + :weight bold + :height ,monokai-height-plus-1)) + (,monokai-256-class (:background ,monokai-256-yellow + :foreground ,monokai-256-background + :weight bold + :height ,monokai-height-plus-1)))) + + `(sr-highlight-path-face + ((,monokai-class (:background ,monokai-green + :foreground ,monokai-background + :weight bold + :height ,monokai-height-plus-1)) + (,monokai-256-class (:background ,monokai-256-green + :foreground ,monokai-256-background + :weight bold + :height ,monokai-height-plus-1)))) + + `(sr-passive-path-face + ((,monokai-class (:background ,monokai-comments + :foreground ,monokai-background + :weight bold + :height ,monokai-height-plus-1)) + (,monokai-256-class (:background ,monokai-256-comments + :foreground ,monokai-256-background + :weight bold + :height ,monokai-height-plus-1)))) + + ;; sunrise commander marked + `(sr-marked-dir-face + ((,monokai-class (:inherit dimonokai-red-marked)) + (,monokai-256-class (:inherit dimonokai-red-marked)))) + + `(sr-marked-file-face + ((,monokai-class (:inherit dimonokai-red-marked)) + (,monokai-256-class (:inherit dimonokai-red-marked)))) + + `(sr-alt-marked-dir-face + ((,monokai-class (:background ,monokai-magenta + :foreground ,monokai-background + :weight bold)) + (,monokai-256-class (:background ,monokai-256-magenta + :foreground ,monokai-256-background + :weight bold)))) + + `(sr-alt-marked-file-face + ((,monokai-class (:background ,monokai-magenta + :foreground ,monokai-background + :weight bold)) + (,monokai-256-class (:background ,monokai-256-magenta + :foreground ,monokai-256-background + :weight bold)))) + + ;; sunrise commander fstat + `(sr-directory-face + ((,monokai-class (:inherit dimonokai-red-directory + :weight normal)) + (,monokai-256-class (:inherit dimonokai-red-directory + :weight normal)))) + + `(sr-symlink-directory-face + ((,monokai-class (:inherit dimonokai-red-directory + :slant italic + :weight normal)) + (,monokai-256-class (:inherit dimonokai-red-directory + :slant italic + :weight normal)))) + + `(sr-symlink-face + ((,monokai-class (:inherit dimonokai-red-symlink + :slant italic + :weight normal)) + (,monokai-256-class (:inherit dimonokai-red-symlink + :slant italic + :weight normal)))) + + `(sr-broken-link-face + ((,monokai-class (:inherit dimonokai-red-warning + :slant italic + :weight normal)) + (,monokai-256-class (:inherit dimonokai-red-warning + :slant italic + :weight normal)))) + + ;; sunrise commander file types + `(sr-compressed-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(sr-encrypted-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(sr-log-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(sr-packaged-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(sr-html-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(sr-xml-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + ;; sunrise commander misc + `(sr-clex-hotchar-face + ((,monokai-class (:background ,monokai-red + :foreground ,monokai-background + :weight bold)) + (,monokai-256-class (:background ,monokai-256-red + :foreground ,monokai-256-background + :weight bold)))) + + ;; syslog-mode + `(syslog-ip-face + ((,monokai-class (:background unspecified + :foreground ,monokai-yellow)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-yellow)))) + + `(syslog-hour-face + ((,monokai-class (:background unspecified + :foreground ,monokai-green)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-green)))) + + `(syslog-error-face + ((,monokai-class (:background unspecified + :foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-red + :weight bold)))) + + `(syslog-warn-face + ((,monokai-class (:background unspecified + :foreground ,monokai-orange + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-orange + :weight bold)))) + + `(syslog-info-face + ((,monokai-class (:background unspecified + :foreground ,monokai-blue + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-blue + :weight bold)))) + + `(syslog-debug-face + ((,monokai-class (:background unspecified + :foreground ,monokai-cyan + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-cyan + :weight bold)))) + + `(syslog-su-face + ((,monokai-class (:background unspecified + :foreground ,monokai-magenta)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-magenta)))) + ;; table + `(table-cell + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-highlight-line)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-highlight-line)))) + + ;; term + `(term-color-black + ((,monokai-class (:foreground ,monokai-background + :background ,monokai-highlight-line)) + (,monokai-256-class (:foreground ,monokai-256-background + :background ,monokai-256-highlight-line)))) + + `(term-color-red + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-red-d)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-red-d)))) + + `(term-color-green + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-green-d)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-green-d)))) + + `(term-color-yellow + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-yellow-d)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-yellow-d)))) + + `(term-color-blue + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-blue-d)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-blue-d)))) + + `(term-color-magenta + ((,monokai-class (:foreground ,monokai-magenta + :background ,monokai-magenta-d)) + (,monokai-256-class (:foreground ,monokai-256-magenta + :background ,monokai-256-magenta-d)))) + + `(term-color-cyan + ((,monokai-class (:foreground ,monokai-cyan + :background ,monokai-cyan-d)) + (,monokai-256-class (:foreground ,monokai-256-cyan + :background ,monokai-256-cyan-d)))) + + `(term-color-white + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-foreground)))) + + `(term-default-fg-color + ((,monokai-class (:inherit term-color-white)) + (,monokai-256-class (:inherit term-color-white)))) + + `(term-default-bg-color + ((,monokai-class (:inherit term-color-black)) + (,monokai-256-class (:inherit term-color-black)))) + + ;; tooltip. (NOTE: This setting has no effect on the os widgets for me + ;; zencoding uses this) + `(tooltip + ((,monokai-class (:background ,monokai-yellow-hc + :foreground ,monokai-background + :inherit ,monokai-pitch)))) + + ;; treemacs + `(treemacs-directory-face + ((,monokai-class (:foreground ,monokai-violet + :background ,monokai-background + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-violet + :background ,monokai-256-background + :weight bold)))) + + `(treemacs-header-face + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-background + :underline t + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-background + :underline t + :weight bold)))) + + `(treemacs-git-modified-face + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background)))) + + `(treemacs-git-renamed-face + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background)))) + + `(treemacs-git-ignored-face + ((,monokai-class (:foreground ,monokai-gray-l + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-gray-l + :background ,monokai-256-background)))) + + `(treemacs-git-untracked-face + ((,monokai-class (:foreground ,monokai-red + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-red + :background ,monokai-256-background)))) + + `(treemacs-git-added-face + ((,monokai-class (:foreground ,monokai-green + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-green + :background ,monokai-256-background)))) + + `(treemacs-git-conflict-face + ((,monokai-class (:foreground ,monokai-orange + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-orange + :background ,monokai-256-background)))) + + ;; tuareg + `(tuareg-font-lock-governing-face + ((,monokai-class (:foreground ,monokai-magenta + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-magenta + :weight bold)))) + + `(tuareg-font-lock-multistage-face + ((,monokai-class (:foreground ,monokai-blue + :background ,monokai-highlight-line + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-blue + :background ,monokai-256-highlight-line + :weight bold)))) + + `(tuareg-font-lock-operator-face + ((,monokai-class (:foreground ,monokai-emphasis)) + (,monokai-256-class (:foreground ,monokai-256-emphasis)))) + + `(tuareg-font-lock-error-face + ((,monokai-class (:foreground ,monokai-yellow + :background ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :background ,monokai-256-red + :weight bold)))) + + `(tuareg-font-lock-interactive-output-face + ((,monokai-class (:foreground ,monokai-cyan)) + (,monokai-256-class (:foreground ,monokai-256-cyan)))) + + `(tuareg-font-lock-interactive-error-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + ;; undo-tree + `(undo-tree-visualizer-default-face + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-background)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-background)))) + + `(undo-tree-visualizer-unmodified-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(undo-tree-visualizer-current-face + ((,monokai-class (:foreground ,monokai-blue + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-blue + :inverse-video t)))) + + `(undo-tree-visualizer-active-branch-face + ((,monokai-class (:foreground ,monokai-emphasis + :background ,monokai-background + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :background ,monokai-256-background + :weight bold)))) + + `(undo-tree-visualizer-register-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + ;; volatile highlights + `(vhl/default-face + ((,monokai-class (:background ,monokai-highlight-alt)) + (,monokai-256-class (:background ,monokai-256-highlight-alt)))) + + ;; w3m + `(w3m-anchor + ((,monokai-class (:inherit link)) + (,monokai-256-class (:inherit link)))) + + `(w3m-arrived-anchor + ((,monokai-class (:inherit link-visited)) + (,monokai-256-class (:inherit link-visited)))) + + `(w3m-form + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-foreground)))) + + `(w3m-header-line-location-title + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-yellow)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-yellow)))) + + `(w3m-header-line-location-content + + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground)))) + + `(w3m-bold + ((,monokai-class (:foreground ,monokai-emphasis + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :weight bold)))) + + `(w3m-image-anchor + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-cyan + :inherit link)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-cyan + :inherit link)))) + + `(w3m-image + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-cyan)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-cyan)))) + + `(w3m-lnum-minibuffer-prompt + ((,monokai-class (:foreground ,monokai-emphasis)) + (,monokai-256-class (:foreground ,monokai-256-emphasis)))) + + `(w3m-lnum-match + ((,monokai-class (:background ,monokai-highlight-line)) + (,monokai-256-class (:background ,monokai-256-highlight-line)))) + + `(w3m-lnum + ((,monokai-class (:underline nil + :bold nil + :foreground ,monokai-red)) + (,monokai-256-class (:underline nil + :bold nil + :foreground ,monokai-256-red)))) + + `(w3m-session-select + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(w3m-session-selected + ((,monokai-class (:foreground ,monokai-emphasis + :bold t + :underline t)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :bold t + :underline t)))) + + `(w3m-tab-background + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-foreground)))) + + `(w3m-tab-selected-background + ((,monokai-class (:background ,monokai-background + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-background + :foreground ,monokai-256-foreground)))) + + `(w3m-tab-mouse + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-yellow)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-yellow)))) + + `(w3m-tab-selected + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-emphasis + :bold t)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-emphasis + :bold t)))) + + `(w3m-tab-unselected + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-foreground)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-foreground)))) + + `(w3m-tab-selected-retrieving + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-red)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-red)))) + + `(w3m-tab-unselected-retrieving + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-orange)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-orange)))) + + `(w3m-tab-unselected-unseen + ((,monokai-class (:background ,monokai-highlight-line + :foreground ,monokai-violet)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :foreground ,monokai-256-violet)))) + + ;; web-mode + `(web-mode-builtin-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(web-mode-comment-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(web-mode-constant-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(web-mode-current-element-highlight-face + ((,monokai-class (:underline unspecified + :weight unspecified + :background ,monokai-highlight-line)) + (,monokai-256-class (:underline unspecified + :weight unspecified + :background ,monokai-256-highlight-line)))) + + `(web-mode-doctype-face + ((,monokai-class (:foreground ,monokai-comments + :slant italic + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-comments + :slant italic + :weight bold)))) + + `(web-mode-folded-face + ((,monokai-class (:underline t)) + (,monokai-256-class (:underline t)))) + + `(web-mode-function-name-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(web-mode-html-attr-name-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(web-mode-html-attr-custom-face + ((,monokai-class (:inherit web-mode-html-attr-name-face)) + (,monokai-256-class (:inherit web-mode-html-attr-name-face)))) + + `(web-mode-html-attr-engine-face + ((,monokai-class (:inherit web-mode-block-delimiter-face)) + (,monokai-256-class (:inherit web-mode-block-delimiter-face)))) + + `(web-mode-html-attr-equal-face + ((,monokai-class (:inherit web-mode-html-attr-name-face)) + (,monokai-256-class (:inherit web-mode-html-attr-name-face)))) + + `(web-mode-html-attr-value-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(web-mode-html-tag-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(web-mode-html-tag-bracket-face + ((,monokai-class (:foreground ,monokai-gray)) + (,monokai-256-class (:foreground ,monokai-256-gray)))) + + `(web-mode-keyword-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(web-mode-preprocessor-face + ((,monokai-class (:foreground ,monokai-yellow + :slant normal + :weight unspecified)) + (,monokai-256-class (:foreground ,monokai-256-yellow + :slant normal + :weight unspecified)))) + + `(web-mode-string-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(web-mode-type-face + ((,monokai-class (:inherit font-lock-type-face)) + (,monokai-256-class (:inherit font-lock-type-face)))) + + `(web-mode-variable-name-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(web-mode-warning-face + ((,monokai-class (:inherit font-lock-warning-face)) + (,monokai-256-class (:inherit font-lock-warning-face)))) + + `(web-mode-block-face + ((,monokai-class (:background unspecified)) + (,monokai-256-class (:background unspecified)))) + + `(web-mode-block-delimiter-face + ((,monokai-class (:inherit font-lock-preprocessor-face)) + (,monokai-256-class (:inherit font-lock-preprocessor-face)))) + + `(web-mode-block-comment-face + ((,monokai-class (:inherit web-mode-comment-face)) + (,monokai-256-class (:inherit web-mode-comment-face)))) + + `(web-mode-block-control-face + ((,monokai-class (:inherit font-lock-preprocessor-face)) + (,monokai-256-class (:inherit font-lock-preprocessor-face)))) + + `(web-mode-block-string-face + ((,monokai-class (:inherit web-mode-string-face)) + (,monokai-256-class (:inherit web-mode-string-face)))) + + `(web-mode-comment-keyword-face + ((,monokai-class (:box 1 :weight bold)) + (,monokai-256-class (:box 1 :weight bold)))) + + `(web-mode-css-at-rule-face + ((,monokai-class (:inherit font-lock-constant-face)) + (,monokai-256-class (:inherit font-lock-constant-face)))) + + `(web-mode-css-pseudo-class-face + ((,monokai-class (:inherit font-lock-builtin-face)) + (,monokai-256-class (:inherit font-lock-builtin-face)))) + + `(web-mode-css-color-face + ((,monokai-class (:inherit font-lock-builtin-face)) + (,monokai-256-class (:inherit font-lock-builtin-face)))) + + `(web-mode-css-filter-face + ((,monokai-class (:inherit font-lock-function-name-face)) + (,monokai-256-class (:inherit font-lock-function-name-face)))) + + `(web-mode-css-function-face + ((,monokai-class (:inherit font-lock-builtin-face)) + (,monokai-256-class (:inherit font-lock-builtin-face)))) + + `(web-mode-css-function-call-face + ((,monokai-class (:inherit font-lock-function-name-face)) + (,monokai-256-class (:inherit font-lock-function-name-face)))) + + `(web-mode-css-priority-face + ((,monokai-class (:inherit font-lock-builtin-face)) + (,monokai-256-class (:inherit font-lock-builtin-face)))) + + `(web-mode-css-property-name-face + ((,monokai-class (:inherit font-lock-variable-name-face)) + (,monokai-256-class (:inherit font-lock-variable-name-face)))) + + `(web-mode-css-selector-face + ((,monokai-class (:inherit font-lock-keyword-face)) + (,monokai-256-class (:inherit font-lock-keyword-face)))) + + `(web-mode-css-string-face + ((,monokai-class (:inherit web-mode-string-face)) + (,monokai-256-class (:inherit web-mode-string-face)))) + + `(web-mode-javascript-string-face + ((,monokai-class (:inherit web-mode-string-face)) + (,monokai-256-class (:inherit web-mode-string-face)))) + + `(web-mode-json-comment-face + ((,monokai-class (:inherit web-mode-comment-face)) + (,monokai-256-class (:inherit web-mode-comment-face)))) + + `(web-mode-json-context-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(web-mode-json-key-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(web-mode-json-string-face + ((,monokai-class (:inherit web-mode-string-face)) + (,monokai-256-class (:inherit web-mode-string-face)))) + + `(web-mode-param-name-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(web-mode-part-comment-face + ((,monokai-class (:inherit web-mode-comment-face)) + (,monokai-256-class (:inherit web-mode-comment-face)))) + + `(web-mode-part-face + ((,monokai-class (:inherit web-mode-block-face)) + (,monokai-256-class (:inherit web-mode-block-face)))) + + `(web-mode-part-string-face + ((,monokai-class (:inherit web-mode-string-face)) + (,monokai-256-class (:inherit web-mode-string-face)))) + + `(web-mode-symbol-face + ((,monokai-class (:foreground ,monokai-violet)) + (,monokai-256-class (:foreground ,monokai-256-violet)))) + + `(web-mode-whitespace-face + ((,monokai-class (:background ,monokai-red)) + (,monokai-256-class (:background ,monokai-256-red)))) + + ;; whitespace-mode + `(whitespace-space + ((,monokai-class (:background unspecified + :foreground ,monokai-comments + :inverse-video unspecified + :slant italic)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-comments + :inverse-video unspecified + :slant italic)))) + + `(whitespace-hspace + ((,monokai-class (:background unspecified + :foreground ,monokai-emphasis + :inverse-video unspecified)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-emphasis + :inverse-video unspecified)))) + + `(whitespace-tab + ((,monokai-class (:background unspecified + :foreground ,monokai-red + :inverse-video unspecified + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-red + :inverse-video unspecified + :weight bold)))) + + `(whitespace-newline + ((,monokai-class(:background unspecified + :foreground ,monokai-comments + :inverse-video unspecified)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-comments + :inverse-video unspecified)))) + + `(whitespace-trailing + ((,monokai-class (:background unspecified + :foreground ,monokai-orange-lc + :inverse-video t)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-orange-lc + :inverse-video t)))) + + `(whitespace-line + ((,monokai-class (:background unspecified + :foreground ,monokai-magenta + :inverse-video unspecified)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-magenta + :inverse-video unspecified)))) + + `(whitespace-space-before-tab + ((,monokai-class (:background ,monokai-red-lc + :foreground unspecified + :inverse-video unspecified)) + (,monokai-256-class (:background ,monokai-256-red-lc + :foreground unspecified + :inverse-video unspecified)))) + + `(whitespace-indentation + ((,monokai-class (:background unspecified + :foreground ,monokai-yellow + :inverse-video unspecified + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-yellow + :inverse-video unspecified + :weight bold)))) + + `(whitespace-empty + ((,monokai-class (:background unspecified + :foreground ,monokai-red-lc + :inverse-video t)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-red-lc + :inverse-video t)))) + + `(whitespace-space-after-tab + ((,monokai-class (:background unspecified + :foreground ,monokai-orange + :inverse-video t + :weight bold)) + (,monokai-256-class (:background unspecified + :foreground ,monokai-256-orange + :inverse-video t + :weight bold)))) + + ;; widget + `(widget-field + ((,monokai-class (:foreground ,monokai-foreground + :background ,monokai-gray-d + :box (:color ,monokai-highlight-alt))) + (,monokai-256-class (:foreground ,monokai-256-foreground + :background ,monokai-256-gray-d + :box (:color ,monokai-256-highlight-alt))))) + + `(widget-single-line-field + ((,monokai-class (:inherit widget-field :box nil)) + (,monokai-256-class (:inherit widget-field :box nil)))) + + `(widget-button-pressed + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(widget-documentation + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + ;; wanderlust + `(wl-highlight-folder-few-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(wl-highlight-folder-many-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(wl-highlight-folder-path-face + ((,monokai-class (:foreground ,monokai-orange)) + (,monokai-256-class (:foreground ,monokai-256-orange)))) + + `(wl-highlight-folder-unread-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(wl-highlight-folder-zero-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(wl-highlight-folder-unknown-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(wl-highlight-message-citation-header + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(wl-highlight-message-cited-text-1 + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(wl-highlight-message-cited-text-2 + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(wl-highlight-message-cited-text-3 + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(wl-highlight-message-cited-text-4 + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(wl-highlight-message-header-contents-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(wl-highlight-message-headers-face + ((,monokai-class (:foreground ,monokai-red)) + (,monokai-256-class (:foreground ,monokai-256-red)))) + + `(wl-highlight-message-important-header-contents + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(wl-highlight-message-header-contents + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(wl-highlight-message-important-header-contents2 + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(wl-highlight-message-signature + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + `(wl-highlight-message-unimportant-header-contents + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(wl-highlight-summary-answemonokai-red-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(wl-highlight-summary-disposed-face + ((,monokai-class (:foreground ,monokai-foreground + :slant italic)) + (,monokai-256-class (:foreground ,monokai-256-foreground + :slant italic)))) + + `(wl-highlight-summary-new-face + ((,monokai-class (:foreground ,monokai-blue)) + (,monokai-256-class (:foreground ,monokai-256-blue)))) + + `(wl-highlight-summary-normal-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(wl-highlight-summary-thread-top-face + ((,monokai-class (:foreground ,monokai-yellow)) + (,monokai-256-class (:foreground ,monokai-256-yellow)))) + + `(wl-highlight-thread-indent-face + ((,monokai-class (:foreground ,monokai-magenta)) + (,monokai-256-class (:foreground ,monokai-256-magenta)))) + + `(wl-highlight-summary-refiled-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(wl-highlight-summary-displaying-face + ((,monokai-class (:underline t + :weight bold)) + (,monokai-256-class (:underline t + :weight bold)))) + + ;; weechat + `(weechat-error-face + ((,monokai-class (:inherit error)) + (,monokai-256-class (:inherit error)))) + + `(weechat-highlight-face + ((,monokai-class (:foreground ,monokai-emphasis + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-emphasis + :weight bold)))) + + `(weechat-nick-self-face + ((,monokai-class (:foreground ,monokai-green + :weight unspecified + :inverse-video t)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight unspecified + :inverse-video t)))) + + `(weechat-prompt-face + ((,monokai-class (:inherit minibuffer-prompt)) + (,monokai-256-class (:inherit minibuffer-prompt)))) + + `(weechat-time-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + ;; which-func-mode + `(which-func + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + ;; which-key + `(which-key-key-face + ((,monokai-class (:foreground ,monokai-green + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-green + :weight bold)))) + + `(which-key-separator-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(which-key-note-face + ((,monokai-class (:foreground ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments)))) + + `(which-key-command-description-face + ((,monokai-class (:foreground ,monokai-foreground)) + (,monokai-256-class (:foreground ,monokai-256-foreground)))) + + `(which-key-local-map-description-face + ((,monokai-class (:foreground ,monokai-yellow-hc)) + (,monokai-256-class (:foreground ,monokai-256-yellow-hc)))) + + `(which-key-group-description-face + ((,monokai-class (:foreground ,monokai-red + :weight bold)) + (,monokai-256-class (:foreground ,monokai-256-red + :weight bold)))) + + ;; window-divider-mode + `(window-divider + ((,monokai-class (:foreground ,monokai-highlight)) + (,monokai-256-class (:foreground ,monokai-highlight)))) + `(window-divider-first-pixel ((t (:inherit window-divider)))) + `(window-divider-last-pixel ((t (:inherit window-divider)))) + + ;; window-number-mode + `(window-number-face + ((,monokai-class (:foreground ,monokai-green)) + (,monokai-256-class (:foreground ,monokai-256-green)))) + + ;; yascroll + `(yascroll:thumb-text-area + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-comments)))) + + `(yascroll:thumb-fringe + ((,monokai-class (:foreground ,monokai-comments + :background ,monokai-comments)) + (,monokai-256-class (:foreground ,monokai-256-comments + :background ,monokai-256-comments)))) + + ;; zencoding + `(zencoding-preview-input + ((,monokai-class (:background ,monokai-highlight-line + :box ,monokai-emphasis)) + (,monokai-256-class (:background ,monokai-256-highlight-line + :box ,monokai-256-emphasis))))) + + (custom-theme-set-variables + 'monokai + `(ansi-color-names-vector [,monokai-background ,monokai-red ,monokai-green ,monokai-yellow + ,monokai-blue ,monokai-magenta ,monokai-cyan ,monokai-foreground]) + + ;; compilation + `(compilation-message-face 'default) + + ;; fill-column-indicator + `(fci-rule-color ,monokai-highlight-line) + + ;; magit + `(magit-diff-use-overlays nil) + + ;; highlight-changes + `(highlight-changes-colors '(,monokai-magenta ,monokai-violet)) + + ;; highlight-tail + `(highlight-tail-colors + '((,monokai-highlight-line . 0) + (,monokai-green-lc . 20) + (,monokai-cyan-lc . 30) + (,monokai-blue-lc . 50) + (,monokai-yellow-lc . 60) + (,monokai-orange-lc . 70) + (,monokai-magenta-lc . 85) + (,monokai-highlight-line . 100))) + + ;; pos-tip + `(pos-tip-foreground-color ,monokai-background) + `(pos-tip-background-color ,monokai-yellow-hc) + + ;; vc + `(vc-annotate-color-map + '((20 . ,monokai-red) + (40 . "#CF4F1F") + (60 . "#C26C0F") + (80 . ,monokai-yellow) + (100 . "#AB8C00") + (120 . "#A18F00") + (140 . "#989200") + (160 . "#8E9500") + (180 . ,monokai-green) + (200 . "#729A1E") + (220 . "#609C3C") + (240 . "#4E9D5B") + (260 . "#3C9F79") + (280 . ,monokai-cyan) + (300 . "#299BA6") + (320 . "#2896B5") + (340 . "#2790C3") + (360 . ,monokai-blue))) + `(vc-annotate-very-old-color nil) + `(vc-annotate-background nil) + + ;; weechat + `(weechat-color-list + '(unspecified ,monokai-background ,monokai-highlight-line + ,monokai-red-d ,monokai-red + ,monokai-green-d ,monokai-green + ,monokai-yellow-d ,monokai-yellow + ,monokai-blue-d ,monokai-blue + ,monokai-magenta-d ,monokai-magenta + ,monokai-cyan-d ,monokai-cyan + ,monokai-foreground ,monokai-emphasis)))) + +;;;###autoload +(when (and (boundp 'custom-theme-load-path) load-file-name) + (add-to-list 'custom-theme-load-path + (file-name-as-directory (file-name-directory load-file-name)))) + +(provide-theme 'monokai) + +;; Local Variables: +;; no-byte-compile: t +;; fill-column: 95 +;; End: + +;;; monokai-theme.el ends here