├── README.md ├── apropospriate-dark-theme.el ├── apropospriate-light-theme.el ├── apropospriate-theme-pkg.el ├── apropospriate-theme.el ├── dark.png └── light.png /README.md: -------------------------------------------------------------------------------- 1 | [![MELPA](http://melpa.org/packages/apropospriate-theme-badge.svg)](http://melpa.org/#/apropospriate-theme) 2 | [![MELPA Stable](http://stable.melpa.org/packages/apropospriate-theme-badge.svg)](http://stable.melpa.org/#/apropospriate-theme) 3 | 4 | ## Apropospriate Theme ## 5 | 6 | A colorful, low-contrast, light & dark theme set for Emacs 24.3+. It strives to be pleasant, clean, and consistent, with special focus for the current buffer. 7 | 8 | This theme started as a Frakenstein mash-up of `base16-eighties-theme` and `solarized-light` themes which I customized heavily, then completely swapped out the color palette based on Google's [Material color suggestions](http://www.google.com/design/spec/style/color.html#color-color-palette). 9 | 10 | ### Screenshots ### 11 | 12 | ![](https://raw.github.com/waymondo/apropospriate-theme/master/dark.png) 13 | 14 | ![](https://raw.github.com/waymondo/apropospriate-theme/master/light.png) 15 | 16 | ### Install & Usage ### 17 | 18 | The recommended and easiest way to install is through [MELPA](http://melpa.org) via `package.el`: 19 | 20 | ``` 21 | M-x package-install apropospriate-theme 22 | ``` 23 | 24 | Or you can always manually download the directory somewhere and add it both `load-path` and `custom-theme-load-path`. 25 | 26 | Once installed, load either theme variant with `M-x load-theme` or in your config: 27 | 28 | ``` elisp 29 | (require 'apropospriate) 30 | (load-theme 'apropospriate-dark t) 31 | ;; or 32 | (load-theme 'apropospriate-light t) 33 | ``` 34 | 35 | [`use-package`](https://github.com/jwiegley/use-package) style: 36 | 37 | ``` elisp 38 | (use-package apropospriate-theme 39 | :ensure t 40 | :config 41 | (load-theme 'apropospriate-dark t) 42 | ;; or 43 | (load-theme 'apropospriate-light t)) 44 | ``` 45 | 46 | ### Supported Packages ### 47 | 48 | Apropospriate supports all the usual `prog-mode` derived packages as well as some fun extra stuff: 49 | 50 | * Company Mode 51 | * Magit 1.x & 2.x 52 | * Powerline 53 | * Spaceline 54 | * Rainbow Delimiters 55 | * Highlight Blocks Mode 56 | * Highlight Tail Mode 57 | * Highlight Indent Guides Mode 58 | * Highlight Indentation Mode 59 | * Beacon 60 | * Flycheck 61 | * Flycheck Inline 62 | * Flymake 63 | * Auto Dim Other Buffers 64 | * Ace Jump Mode 65 | * Ace Jump Window 66 | * Ace Jump Buffer 67 | * Avy 68 | * Swoop & Helm Swoop 69 | * Highlight Symbol Mode 70 | * Git Gutter 71 | * Diff Hl (looks best with `diff-hl-margin-mode`) 72 | * Pulse 73 | * Helm 74 | * Helm CSS SCSS 75 | * Popup & Pos Tip 76 | * Evil 77 | * Tabbar 78 | * Org Mode 79 | * Guide Key 80 | * Which Key 81 | * Visible Mark 82 | * ERC 83 | * ORG 84 | * Aznu 85 | * Wgrep 86 | * Eshell 87 | * Ansi-Term 88 | * Neotree 89 | * Hydra 90 | * Dired Subtree 91 | * Dirvish 92 | * Symbol Overlay 93 | * Counsel CSS 94 | * Ivy Posframe 95 | * Smerge 96 | * Lsp-mode 97 | * Lsp-UI-mode 98 | * Grizzl 99 | * Hi-Lock 100 | * Flyspell 101 | * Display Numbers Line Mode 102 | * Visual-Regexp 103 | * Solaire 104 | * Frog Menu 105 | * Which Key Posframe 106 | * Company Posframe 107 | * Goggles 108 | * Orderless 109 | * Corfu 110 | * Corfu Quick 111 | * Vertico 112 | * Ediff 113 | * Mlscroll 114 | * Vertico Quick 115 | * Tab-bar 116 | * Tab-line 117 | * VC-Annotate 118 | * Window Divider Mode 119 | * Transient 120 | * Transient Posframe Mode 121 | * Vertico Posframe Mode 122 | * Tempel 123 | * Inf-Ruby 124 | * EWW 125 | * SHR 126 | * Blamer 127 | * Mini Popup 128 | * MisTTY 129 | * Indent Bars Mode 130 | * Completion Preview Mode 131 | -------------------------------------------------------------------------------- /apropospriate-dark-theme.el: -------------------------------------------------------------------------------- 1 | (require 'apropospriate-theme) 2 | 3 | (deftheme apropospriate-dark "The dark variant of the Apropospriate color theme") 4 | 5 | (create-apropospriate-theme 'dark 'apropospriate-dark) 6 | 7 | (provide-theme 'apropospriate-dark) 8 | -------------------------------------------------------------------------------- /apropospriate-light-theme.el: -------------------------------------------------------------------------------- 1 | (require 'apropospriate-theme) 2 | 3 | (deftheme apropospriate-light "The light variant of the Apropospriate color theme") 4 | 5 | (create-apropospriate-theme 'light 'apropospriate-light) 6 | 7 | (provide-theme 'apropospriate-light) 8 | -------------------------------------------------------------------------------- /apropospriate-theme-pkg.el: -------------------------------------------------------------------------------- 1 | (define-package 2 | "apropospriate-theme" 3 | "0.1.0" 4 | "A colorful, low-contrast, light & dark theme set for Emacs with a fun name." 5 | 'nil :url "https://github.com/waymondo/apropospriate-theme" :keywords '("color" "theme")) 6 | -------------------------------------------------------------------------------- /apropospriate-theme.el: -------------------------------------------------------------------------------- 1 | ;;; apropospriate-theme.el --- A light & dark theme set for Emacs. 2 | 3 | ;; Copyright (C) 2015 Justin Talbott 4 | 5 | ;; Author: Justin Talbott 6 | ;; URL: http://github.com/waymondo/apropospriate-theme 7 | ;; Version: 0.2.0 8 | 9 | ;; This program is free software; you can redistribute it and/or modify 10 | ;; it under the terms of the GNU General Public License as published by 11 | ;; the Free Software Foundation, either version 3 of the License, or 12 | ;; (at your option) any later version. 13 | 14 | ;; This program is distributed in the hope that it will be useful, 15 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | ;; GNU General Public License for more details. 18 | 19 | ;; You should have received a copy of the GNU General Public License 20 | ;; along with this program. If not, see . 21 | 22 | ;;; Commentary: 23 | 24 | ;; A light & dark theme set for Emacs. 25 | 26 | ;;; Code: 27 | 28 | (defgroup apropospriate nil 29 | "Apropospriate theme options." 30 | :group 'faces) 31 | 32 | (defcustom apropospriate-mode-line-height 0.95 33 | "The proportional font size of the mode-line in the apropospriate theme. 34 | Set to `1.0' or nil to prevent font size manipulation." 35 | :type 'number 36 | :group 'apropospriate) 37 | 38 | (defcustom apropospriate-org-level-resizing t 39 | "Set to non-nil for `org-level-*' faces to be different larger 40 | than the default font height." 41 | :type 'boolean 42 | :group 'apropospriate) 43 | 44 | (defmacro apropospriate-with-color-variables (variant &rest body) 45 | (declare (indent 0)) 46 | `(let* ((class '((class color) (min-colors 89))) 47 | (variant ,variant) 48 | (base00 (if (eq variant 'light) "#F5F5F5" "#424242")) 49 | (base01 (if (eq variant 'light) "#90A4AE" "#757575")) 50 | (base02 (if (eq variant 'light) "#78909C" "#9E9E9E")) 51 | (base03 (if (eq variant 'light) "#546E7A" "#E0E0E0")) 52 | (yellow (if (eq variant 'light) "#F57F17" "#FFEE58")) 53 | (yellow-1 (if (eq variant 'light) "#F9A725" "#FFF59D")) 54 | (brown (if (eq variant 'light) "#4E342E" "#BCAAA4")) 55 | (brown-1 (if (eq variant 'light) "#6D4C41" "#D7CCC8")) 56 | (orange (if (eq variant 'light) "#D84315" "#FFCC80")) 57 | (orange-1 (if (eq variant 'light) "#FF5722" "#FFA726")) 58 | (red (if (eq variant 'light) "#D50000" "#E57373")) 59 | (red-1 (if (eq variant 'light) "#FF1744" "#EF9A9A")) 60 | (pink (if (eq variant 'light) "#F8BBD0" "#F8BBD0")) 61 | (pink-1 (if (eq variant 'light) "#EC407A" "#FF80AB")) 62 | (purple (if (eq variant 'light) "#7E57C2" "#E1BEE7")) 63 | (purple-1 (if (eq variant 'light) "#B388FF" "#9575CD")) 64 | (blue (if (eq variant 'light) "#42A5F5" "#64B5F6")) 65 | (blue-1 (if (eq variant 'light) "#1E88E5" "#42A5F5")) 66 | (indigo (if (eq variant 'light) "#5C6BC0" "#C5CAE9")) 67 | (indigo-1 (if (eq variant 'light) "#9FA8DA" "#7986CB")) 68 | (cyan (if (eq variant 'light) "#0097A7" "#80DEEA")) 69 | (cyan-1 (if (eq variant 'light) "#00B8D4" "#26C6DA")) 70 | (teal (if (eq variant 'light) "#26A69A" "#80CBC4")) 71 | (teal-1 (if (eq variant 'light) "#00897B" "#4DB6AC")) 72 | (green (if (eq variant 'light) "#66BB6A" "#C5E1A5")) 73 | (green-1 (if (eq variant 'light) "#558B2F" "#F4FF81")) 74 | (base00-1 (if (eq variant 'light) "#FBFBFB" "#3A3A3A")) 75 | (base00-2 (if (eq variant 'light) "#FDFDFD" "#323232")) 76 | (base00-3 (if (eq variant 'light) "#FFFFFF" "#2A2A2A")) 77 | (base00+1 (if (eq variant 'light) "#F0F0F0" "#494949")) 78 | (base00+2 (if (eq variant 'light) "#EBEBEB" "#515151")) 79 | (base00+3 (if (eq variant 'light) "#E6E6E6" "#595959")) 80 | (light-emphasis (if (eq variant 'light) base00+3 base00-3)) 81 | (light-emphasis-1 (if (eq variant 'light) base00+2 base00-2)) 82 | (light-emphasis-2 (if (eq variant 'light) base00+1 base00-1)) 83 | (flashing-color (if (eq variant 'light) "#FCE2EB" "#EE758C")) 84 | (highlight-line-color (if (eq variant 'light) "#EEEEEE" "#444444"))) 85 | ,@body)) 86 | 87 | (defun create-apropospriate-theme (variant theme-name) 88 | "Create a VARIANT of the theme named THEME-NAME." 89 | (apropospriate-with-color-variables variant 90 | (custom-theme-set-faces 91 | theme-name 92 | `(default ((,class (:background ,base00 :foreground ,base03)))) 93 | `(bold ((,class (:weight bold)))) 94 | `(shadow ((,class (:foreground ,base02)))) 95 | `(border ((,class (:background ,base02)))) 96 | `(cursor ((,class (:background ,pink-1 :inverse-video t)))) 97 | `(highlight ((,class (:background ,base00+1)))) 98 | `(hl-line ((,class (:background ,(if (eq variant 'light) base00-1 base00+1))))) 99 | `(link ((,class (:foreground ,blue :underline t)))) 100 | `(link-visited ((,class (:inherit link :foreground ,purple)))) 101 | `(minibuffer-prompt ((,class (:foreground ,blue :weight bold)))) 102 | `(region ((,class (:background ,base00+2)))) 103 | `(vhl/default-face ((,class (:background ,base00+1)))) 104 | `(trailing-whitespace ((,class (:background ,base00+1 :foreground ,yellow)))) 105 | `(next-error ((,class (:background ,base01)))) 106 | `(secondary-selection ((,class (:background ,base00-1)))) 107 | `(header-line ((,class (:foreground ,purple :background unspecified)))) 108 | `(auto-dim-other-buffers-face ((,class (:background ,base00+1)))) 109 | `(fringe ((,class (:background ,base00 :foreground ,base02)))) 110 | `(mistty-fringe-face ((,class (:foreground ,base01)))) 111 | `(linum ((,class (:inherit fringe :foreground ,base01)))) 112 | `(linum-relative-current-face ((,class (:inherit fringe :foreground ,base02)))) 113 | `(line-number ((,class (:inherit fringe :foreground ,base01)))) 114 | `(line-number-current-line ((,class (:inherit fringe :foreground ,base02)))) 115 | `(vertical-border ((,class (:foreground ,base00+2)))) 116 | `(window-divider ((,class (:foreground ,base00+2)))) 117 | `(window-divider-first-pixel ((,class (:foreground ,base00+2)))) 118 | `(window-divider-last-pixel ((,class (:foreground ,base00+2)))) 119 | `(widget-button ((,class (:underline t)))) 120 | `(widget-field ((,class (:background ,base02 :box (:line-width 1 :color ,base03))))) 121 | `(error ((,class (:foreground ,red :weight bold)))) 122 | `(warning ((,class (:foreground ,orange :weight bold)))) 123 | `(success ((,class (:foreground ,green :weight bold)))) 124 | `(eww-valid-certificate ((,class (:inherit success)))) 125 | `(eww-invalid-certificate ((,class (:inherit error)))) 126 | `(ace-jump-face-background ((,class (:foreground ,base00+3)))) 127 | `(ace-jump-face-foreground ((,class (:foreground ,pink-1 :background unspecified :weight bold)))) 128 | `(ajb-face ((,class (:background ,base00+1)))) 129 | `(avy-lead-face ((,class (:foreground ,pink-1 :background unspecified :weight bold)))) 130 | `(avy-lead-face-0 ((,class (:inherit avy-lead-face)))) 131 | `(avy-lead-face-1 ((,class (:inherit avy-lead-face)))) 132 | `(avy-lead-face-2 ((,class (:inherit avy-lead-face)))) 133 | `(vertico-quick1 ((,class (:inherit avy-lead-face)))) 134 | `(vertico-quick2 ((,class (:inherit avy-lead-face)))) 135 | `(completion-preview-exact ((,class (:underline (:style line :color ,pink))))) 136 | `(corfu-quick1 ((,class (:inherit avy-lead-face)))) 137 | `(corfu-quick2 ((,class (:inherit avy-lead-face)))) 138 | `(avy-background-face ((,class (:foreground ,base00+3)))) 139 | `(aw-leading-char-face ((,class (:inherit avy-lead-face :height 2.0)))) 140 | `(aw-background-face ((,class (:inherit avy-background-face)))) 141 | `(highlight-indentation-face ((,class (:background ,base00)))) 142 | `(highlight-indentation-current-column-face ((,class (:background ,base00+1)))) 143 | `(highlight-indent-guides-odd-face ((,class (:background ,base00+1)))) 144 | `(highlight-indent-guides-even-face ((,class (:background ,base00)))) 145 | `(highlight-indent-guides-character-face ((,class (:foreground ,base00+2)))) 146 | `(parenthesis ((,class (:foreground ,base01)))) 147 | `(font-lock-comment-face ((,class (:foreground ,base01)))) 148 | `(font-lock-comment-delimiter-face ((,class (:foreground ,base01)))) 149 | `(font-lock-builtin-face ((,class (:foreground ,cyan)))) 150 | `(font-lock-doc-face ((,class (:foreground ,base02)))) 151 | `(font-lock-constant-face ((,class (:foreground ,indigo)))) 152 | `(font-lock-function-name-face ((,class (:foreground ,blue)))) 153 | `(font-lock-keyword-face ((,class (:foreground ,purple)))) 154 | `(font-lock-negation-char-face ((,class (:foreground ,red-1)))) 155 | `(font-lock-preprocessor-face ((,class (:foreground ,blue-1)))) 156 | `(font-lock-regexp-grouping-backslash ((,class (:foreground ,purple-1)))) 157 | `(font-lock-regexp-grouping-construct ((,class (:foreground ,purple-1)))) 158 | `(font-lock-string-face ((,class (:foreground ,green)))) 159 | `(font-lock-type-face ((,class (:foreground ,orange)))) 160 | `(font-lock-variable-name-face ((,class (:foreground ,teal)))) 161 | `(font-lock-warning-face ((,class (:foreground ,red)))) 162 | `(mode-line ((,class (:box (:line-width 4 :color ,light-emphasis :style nil) 163 | :background ,base00-2 :foreground ,base03 164 | :height ,(or apropospriate-mode-line-height 1.0))))) 165 | `(mode-line-inactive ((,class (:box (:line-width 4 :color ,base00+1 :style nil) 166 | :background ,base00+1 :foreground ,base02 167 | :height ,(or apropospriate-mode-line-height 1.0))))) 168 | `(mode-line-emphasis ((,class (:foreground ,base02 :slant italic)))) 169 | `(mode-line-highlight ((,class (:foreground ,base02 :box nil)))) 170 | `(powerline-active1 ((,class (:background ,base00 :height ,(or apropospriate-mode-line-height 1.0))))) 171 | `(powerline-active2 ((,class (:background ,base00+1 :height ,(or apropospriate-mode-line-height 1.0))))) 172 | `(powerline-inactive1 ((,class (:background ,base00+1 :height ,(or apropospriate-mode-line-height 1.0))))) 173 | `(powerline-inactive2 ((,class (:background ,base00+1 :height ,(or apropospriate-mode-line-height 1.0))))) 174 | `(alert-trivial-face ((,class (:inherit nil :foreground nil :background unspecified)))) 175 | `(anzu-mode-line ((,class (:foreground ,yellow)))) 176 | `(persp-selected-face ((,class (:foreground ,base03)))) 177 | `(mm-command-output ((,class (:foreground unspecified :background unspecified)))) 178 | `(spaceline-highlight-face ((,class (:background ,light-emphasis :foreground ,base03)))) 179 | `(spaceline-evil-normal ((,class (:background ,yellow :foreground ,base00)))) 180 | `(spaceline-evil-insert ((,class (:background ,red :foreground ,base00)))) 181 | `(spaceline-evil-emacs ((,class (:background ,cyan-1 :foreground ,base00)))) 182 | `(spaceline-evil-replace ((,class (:background ,brown :foreground ,base00)))) 183 | `(spaceline-evil-visual ((,class (:background ,green :foreground ,base00)))) 184 | `(spaceline-evil-motion ((,class (:background ,purple :foreground ,base00)))) 185 | `(spaceline-unmodified ((,class (:background ,orange-1 :foreground ,base00)))) 186 | `(spaceline-modified ((,class (:background ,cyan-1 :foreground ,base00)))) 187 | `(spaceline-read-only ((,class (:background ,purple :foreground ,base00)))) 188 | `(match ((,class (:foreground ,yellow :background ,base00+1 :weight bold)))) 189 | `(isearch ((,class (:inherit match)))) 190 | `(query-replace ((,class (:inherit isearch)))) 191 | `(anzu-replace-to ((,class (:foreground ,yellow :background ,base00+1)))) 192 | `(lazy-highlight ((,class (:foreground ,yellow)))) 193 | `(isearch-lazy-highlight-face ((,class (:foreground ,yellow)))) 194 | `(isearch-fail ((,class (:inherit font-lock-warning-face)))) 195 | `(regex-tool-matched-face ((,class (:foreground nil :background unspecified :inherit match)))) 196 | `(ag-match-face ((,class (:inherit isearch-lazy-highlight-face)))) 197 | `(custom-state ((,class (:foreground ,green)))) 198 | `(visible-mark-active ((,class (:foreground unspecified :background ,light-emphasis)))) 199 | `(visible-mark-face1 ((,class (:background ,light-emphasis-1)))) 200 | `(visible-mark-face2 ((,class (:background ,light-emphasis-2)))) 201 | `(ido-subdir ((,class (:foreground ,brown)))) 202 | `(ido-first-match ((,class (:inherit match)))) 203 | `(ido-only-match ((,class (:inherit ido-first-match)))) 204 | `(ido-indicator ((,class (:foreground ,red :background ,base00+1)))) 205 | `(ido-virtual ((,class (:foreground ,cyan)))) 206 | `(ido-vertical-match-face ((,class (:foreground ,yellow)))) 207 | `(vertico-current ((,class (:background ,highlight-line-color)))) 208 | `(grizzl-selection-face ((,class (:inherit match)))) 209 | `(orderless-match-face-0 ((,class (:foreground ,blue :background ,base00-1 :weight bold)))) 210 | `(orderless-match-face-1 ((,class (:foreground ,purple :background ,base00-1 :weight bold)))) 211 | `(orderless-match-face-2 ((,class (:foreground ,green :background ,base00-1 :weight bold)))) 212 | `(orderless-match-face-3 ((,class (:foreground ,yellow :background ,base00-1 :weight bold)))) 213 | `(lsp-ui-doc-background ((,class (:background ,base00-2)))) 214 | `(lsp-ui-doc-header ((,class (:background ,base00-2 :foreground ,purple)))) 215 | `(lsp-ui-sideline-symbol ((,class (:background ,base00-1 :foreground ,base03 :box nil)))) 216 | `(lsp-ui-sideline-current-symbol ((,class (:background ,base00-1 :foreground ,purple :box nil)))) 217 | `(lsp-ui-sideline-code-action ((,class (:background ,base00-1 :foreground ,base02)))) 218 | `(lsp-ui-sideline-symbol-info ((,class (:background ,base00-1 :foreground ,base02)))) 219 | `(lsp-ui-peek-peek ((,class (:background ,base00-1)))) 220 | `(lsp-ui-peek-list ((,class (:background ,base00-1)))) 221 | `(lsp-ui-peek-filename ((,class (:background ,base03)))) 222 | `(lsp-ui-peek-line-number ((,class (:background ,base02)))) 223 | `(lsp-ui-peek-highlight ((,class (:background ,base00+1 :foreground ,light-emphasis)))) 224 | `(lsp-ui-peek-header ((,class (:background ,base00-1 :foreground ,light-emphasis)))) 225 | `(lsp-ui-peek-selection ((,class (:background ,base00-1 :inherit secondary-selection)))) 226 | `(ivy-current-match ((,class (:foreground unspecified :background ,light-emphasis)))) 227 | `(ivy-confirm-face ((,class (:foreground ,green)))) 228 | `(ivy-match-required-face ((,class (:foreground ,red)))) 229 | `(ivy-remote ((,class (:foreground ,cyan)))) 230 | `(ivy-virtual ((,class (:foreground ,cyan)))) 231 | `(ivy-minibuffer-match-face-1 ((,class (:foreground nil :background unspecified :underline (:style line :color ,base02))))) 232 | 233 | `(ivy-minibuffer-match-face-2 ((,class (:foreground ,yellow :background unspecified :underline (:style line :color ,base02))))) 234 | `(ivy-minibuffer-match-face-3 ((,class (:foreground ,yellow :background unspecified :underline (:style line :color ,base02))))) 235 | `(ivy-minibuffer-match-face-4 ((,class (:foreground ,yellow :background unspecified :underline (:style line :color ,base02))))) 236 | `(swiper-match-face-1 ((,class (:inherit ivy-minibuffer-match-face-1)))) 237 | `(swiper-match-face-2 ((,class (:inherit ivy-minibuffer-match-face-2)))) 238 | `(swiper-match-face-3 ((,class (:inherit ivy-minibuffer-match-face-3)))) 239 | `(swiper-match-face-4 ((,class (:inherit ivy-minibuffer-match-face-4)))) 240 | `(swiper-line-face ((,class (:background ,highlight-line-color)))) 241 | `(wgrep-face ((,class (:background ,base00+2)))) 242 | `(wgrep-file-face ((,class (:background ,base00+1)))) 243 | `(wgrep-delete-face ((,class (:foreground ,red)))) 244 | `(wgrep-reject-face ((,class (:foreground ,red)))) 245 | `(wgrep-done-face ((,class (:foreground ,green)))) 246 | `(guide-key/highlight-command-face ((,class (:foreground ,yellow)))) 247 | `(guide-key/key-face ((,class (:foreground ,pink-1)))) 248 | `(guide-key/prefix-command-face ((,class (:foreground ,cyan)))) 249 | `(which-key-key-face ((,class (:foreground ,pink-1)))) 250 | `(which-key-command-description-face ((,class (:foreground ,base03)))) 251 | `(which-key-special-key-face ((,class (:inherit which-key-key-face :inverse-video nil)))) 252 | `(tabbar-default ((,class (:inherit default :foreground ,base02 :background "black" :box (:line-width 4 :color ,base00 :style nil))))) 253 | `(tabbar-button ((,class (:height 0.8 :box (:line-width 4 :color ,base00-2 :style nil))))) 254 | `(tabbar-unselected ((,class (:inherit tabbar-button :background ,base00-2)))) 255 | `(tabbar-modified ((,class (:inherit tabbar-unselected)))) 256 | `(tabbar-selected ((,class (:inherit tabbar-button :box (:line-width 4 :color ,base00 :style nil))))) 257 | `(tabbar-separator ((,class (:inherit tabbar-selected)))) 258 | `(lsp-face-highlight-read ((,class (:inherit highlight-symbol-face)))) 259 | `(lsp-face-highlight-textual ((,class (:inherit highlight-symbol-face)))) 260 | `(lsp-face-highlight-write ((,class (:inherit highlight-symbol-face :background ,base00+2)))) 261 | `(embark-keybinding ((,class (:foreground ,pink-1)))) 262 | `(transient-key ((,class (:foreground ,pink-1)))) 263 | `(transient-separator ((,class (:background ,base00-2)))) 264 | `(transient-red ((,class (:foreground ,red)))) 265 | `(transient-blue ((,class (:foreground ,blue)))) 266 | `(transient-amaranth ((,class (:foreground ,purple)))) 267 | `(transient-pink ((,class (:foreground ,pink)))) 268 | `(transient-teal ((,class (:foreground ,teal)))) 269 | `(transient-enabled-suffix ((,class (:foreground ,green :background ,base00-2)))) 270 | `(transient-disabled-suffix ((,class (:foreground ,red :background ,base00-2)))) 271 | `(transient-posframe ((,class (:background ,base00-2)))) 272 | `(transient-posframe-border ((,class (:background ,base00-2)))) 273 | `(mini-popup-default ((,class (:background ,base00-2)))) 274 | `(mini-popup-border ((,class (:background ,base00-2)))) 275 | `(shr-code ((,class (:inherit default :background ,base00-1)))) 276 | `(shr-selected-link ((,class (:background ,base00-2)))) 277 | `(vertico-posframe ((,class (:background ,base00-2)))) 278 | `(vertico-posframe-border ((,class (:background ,base00-2)))) 279 | `(vertico-posframe-border-2 ((,class (:background ,base00-1)))) 280 | `(vertico-posframe-border-3 ((,class (:background ,base00-1)))) 281 | `(vertico-posframe-border-4 ((,class (:background ,base00-1)))) 282 | `(vertico-posframe-border-fallback ((,class (:background ,base00-1)))) 283 | `(ivy-posframe ((,class :background ,base00-2 :foreground ,base03))) 284 | `(which-key-posframe ((,class :background ,base00-2 :foreground ,base03))) 285 | `(which-key-posframe-border ((,class :background ,base00-2))) 286 | `(company-posframe-quickhelp ((,class :background ,base00-2 :foreground ,base03))) 287 | `(frog-menu-prompt-face ((,class :foreground ,base03))) 288 | `(frog-menu-actions-face ((,class :foreground ,base03))) 289 | `(frog-menu-posframe-background-face ((,class :background ,base00-2))) 290 | `(frog-menu-action-keybinding-face ((,class :inherit avy-lead-face))) 291 | `(ivy-posframe-border ((,class :background ,base00-2))) 292 | `(eldoc-box-body ((,class :background ,base00-2))) 293 | `(eldoc-box-border ((,class :background ,base00-2))) 294 | `(solaire-default-face ((,class :background ,base00-1))) 295 | `(solaire-line-number-face ((,class :background ,base00-2))) 296 | `(inf-ruby-result-overlay-face ((,class (:background ,base00-2 :foreground ,base03)))) 297 | `(company-tooltip ((,class (:background ,base00-2 :foreground ,base02)))) 298 | `(company-tooltip-selection ((,class (:background ,base00-1 :foreground ,base03)))) 299 | `(company-tooltip-common ((,class (:inherit company-tooltip)))) 300 | `(company-tooltip-common-selection ((,class (:inherit company-tooltip-selection)))) 301 | `(company-tooltip-search ((,class (:foreground ,yellow)))) 302 | `(company-echo-common ((,class (:inherit company-tooltip :foreground ,yellow)))) 303 | `(company-scrollbar-bg ((,class (:background ,base00+1)))) 304 | `(company-scrollbar-fg ((,class (:background ,base00+3)))) 305 | `(company-tooltip-annotation ((,class (:inherit company-tooltip :foreground ,base01)))) 306 | `(company-preview ((,class (:background ,base00 :foreground ,base02)))) 307 | `(company-preview-common ((,class (:foreground ,base02)))) 308 | `(company-preview-search ((,class (:background ,base00)))) 309 | `(corfu-default ((,class (:background ,base00-2 :foreground ,base02)))) 310 | `(corfu-current ((,class (:background ,highlight-line-color :foreground ,base03)))) 311 | `(corfu-bar ((,class (:background ,base00+1 :foreground ,base00+3)))) 312 | `(corfu-border ((,class (:background ,base00-2 :foreground ,base03)))) 313 | `(tempel-field ((,class (:background ,base00-2 :foreground ,base03)))) 314 | `(tempel-form ((,class (:background ,base00-2 :foreground ,base03)))) 315 | `(tempel-default ((,class (:background ,base00-2 :foreground ,base03)))) 316 | `(ac-completion-face ((,class :inherit company-preview))) 317 | `(popper-echo-area ((,class :foreground ,base03))) 318 | `(tooltip ((,class (:background ,base00-1 :foreground ,base03)))) 319 | `(popup-tip-face ((,class (:inherit tooltip)))) 320 | `(popup-face ((,class (:inherit company-tooltip)))) 321 | `(popup-menu-mouse-face ((,class (:inherit popup-face)))) 322 | `(popup-menu-selection-face ((,class (:inherit company-tooltip-selection)))) 323 | `(popup-isearch-match ((,class (:foreground ,yellow :background unspecified)))) 324 | `(popup-scroll-bar-foreground-face ((,class (:inherit company-scrollbar-fg)))) 325 | `(popup-scroll-bar-background-face ((,class (:inherit company-scrollbar-bg)))) 326 | `(tab-bar ((,class (:background ,base00-2)))) 327 | `(tab-line ((,class (:background ,base00-2)))) 328 | `(tab-line-tab ((,class (:foreground ,base02 :background ,base00-2 :box (:line-width 4 :color ,base00-2 :style nil))))) 329 | `(tab-line-tab-inactive ((,class (:foreground ,base02 :background ,base00-2 :box (:line-width 4 :color ,base00-2 :style nil) :inverse-video nil)))) 330 | `(tab-line-tab-inactive-alternate ((,class (:background ,base00-2)))) 331 | `(tab-line-tab-current ((,class (:foreground ,base03 :background ,base00 :box (:line-width 4 :color ,base00 :style nil))))) 332 | `(tab-line-highlight ((,class (:background ,highlight-line-color :box (:line-width 4 :color ,highlight-line-color :style nil))))) 333 | `(tab-line-close-highlight ((,class (:color ,red)))) 334 | `(tab-bar-tab ((,class (:background ,base00 :box (:line-width 4 :color ,base00 :style nil))))) 335 | `(tab-bar-tab-inactive ((,class (:foreground ,base02 :background ,base00-2)))) 336 | `(flymake-warnline ((,class (:underline ,orange :background ,base00+1)))) 337 | `(flymake-errline ((,class (:underline ,red :background ,base00+1)))) 338 | `(flycheck-error ((,class (:underline (:style wave :color ,red) :inherit unspecified)))) 339 | `(flycheck-info ((,class (:underline (:style wave :color ,green) :inherit unspecified)))) 340 | `(flycheck-warning ((,class (:underline (:style wave :color ,orange) :inherit unspecified)))) 341 | `(flycheck-inline-error ((,class (:foreground ,base03 :background ,base00-1 :inherit unspecified)))) 342 | `(flycheck-inline-warning ((,class (:foreground ,base03 :background ,base00-1 :inherit unspecified)))) 343 | `(flycheck-inline-info ((,class (:foreground ,base03 :background ,base00-1 :inherit unspecified)))) 344 | `(flymake-error ((,class (:underline (:style wave :color ,red) :inherit unspecified)))) 345 | `(flymake-warning ((,class (:underline (:style wave :color ,orange) :inherit unspecified)))) 346 | `(flymake-note ((,class (:underline (:style wave :color ,green) :inherit unspecified)))) 347 | `(flymake-diagnostic-at-point-posframe-background-face ((,class (:background ,base00-2)))) 348 | `(swoop-face-target-words ((,class (:foreground ,yellow)))) 349 | `(swoop-face-target-line ((,class (:background ,base01)))) 350 | `(swoop-face-line-buffer-name ((,class (:inherit header-line :foreground ,base02)))) 351 | `(swoop-face-header-format-line ((,class (:inherit swoop-face-line-buffer-name :foreground ,purple)))) 352 | `(swoop-face-line-number ((,class (:foreground ,base02)))) 353 | `(helm-swoop-target-word-face ((,class (:foreground ,yellow)))) 354 | `(helm-swoop-target-line-face ((,class (:background ,base00+2)))) 355 | `(helm-swoop-target-line-block-face ((,class (:background ,base00+1)))) 356 | `(helm-swoop-line-number-face ((,class (:foreground ,base01)))) 357 | `(helm-match ((,class (:foreground ,yellow-1)))) 358 | `(helm-source-header ((,class (:family inherit :inherit header-line :foreground ,purple)))) 359 | `(helm-visible-mark ((,class (:background ,green)))) 360 | `(helm-header ((,class (:inherit header-line)))) 361 | `(helm-candidate-number ((,class (:background unspecified)))) 362 | `(helm-selection ((,class (:background ,base00+2)))) 363 | `(helm-selection-line ((,class (:inherit helm-selection)))) 364 | `(helm-separator ((,class (:foreground ,base01)))) 365 | `(helm-action ((,class (:underline nil)))) 366 | `(helm-prefarg ((,class (:foreground ,green)))) 367 | `(helm-buffer-saved-out ((,class (:foreground ,red)))) 368 | `(helm-buffer-not-saved ((,class (:foreground ,red)))) 369 | `(helm-buffer-size ((,class (:foreground ,base02)))) 370 | `(helm-buffer-process ((,class (:foreground ,base02)))) 371 | `(helm-buffer-directory ((,class (:foreground ,brown)))) 372 | `(helm-M-x-key ((,class (:foreground ,base02)))) 373 | `(helm-ff-prefix ((,class (:foreground ,yellow)))) 374 | `(helm-ff-executable ((,class (:foreground ,green)))) 375 | `(helm-ff-directory ((,class (:inherit helm-buffer-directory)))) 376 | `(helm-ff-symlink ((,class (:foreground ,brown)))) 377 | `(helm-ff-invalid-symlink ((,class (:inherit helm-ff-symlink :underline (:style wave :color ,red))))) 378 | `(helm-grep-match ((,class (:inherit match)))) 379 | `(helm-grep-file ((,class (:foreground ,base01)))) 380 | `(helm-grep-lineno ((,class (:foreground ,base02)))) 381 | `(helm-grep-running ((,class (:inherit compilation-mode-line-run)))) 382 | `(helm-grep-finish ((,class (:inherit success)))) 383 | `(helm-visible-mark ((,class (:inverse-video t)))) 384 | `(helm-ls-git-added-modified-face ((,class (:foreground ,cyan)))) 385 | `(helm-ls-git-conflict-face ((,class (:foreground ,purple-1)))) 386 | `(helm-ls-git-deleted-and-staged-face ((,class (:foreground ,base02)))) 387 | `(helm-ls-git-deleted-not-staged-face ((,class (:foreground ,orange)))) 388 | `(helm-ls-git-modified-and-staged-face ((,class (:foreground ,orange-1)))) 389 | `(helm-ls-git-modified-not-staged-face ((,class (:foreground ,orange-1)))) 390 | `(helm-ls-git-renamed-modified-face ((,class (:foreground ,orange-1)))) 391 | `(helm-ls-git-untracked-face ((,class (:foreground ,blue)))) 392 | `(helm-css-scss-target-line-face ((,class (:background ,base00 :foreground ,yellow)))) 393 | `(helm-css-scss-selector-depth-face-1 ((,class (:foreground ,yellow-1)))) 394 | `(helm-css-scss-selector-depth-face-2 ((,class (:foreground ,orange)))) 395 | `(helm-css-scss-selector-depth-face-3 ((,class (:foreground ,yellow-1)))) 396 | `(helm-css-scss-selector-depth-face-4 ((,class (:foreground ,orange)))) 397 | `(helm-css-scss-selector-depth-face-5 ((,class (:foreground ,yellow-1)))) 398 | `(helm-css-scss-selector-depth-face-6 ((,class (:foreground ,orange)))) 399 | `(counsel-css-selector-depth-face-1 ((,class (:foreground ,yellow-1)))) 400 | `(counsel-css-selector-depth-face-2 ((,class (:foreground ,orange)))) 401 | `(counsel-css-selector-depth-face-3 ((,class (:foreground ,yellow-1)))) 402 | `(counsel-css-selector-depth-face-4 ((,class (:foreground ,orange)))) 403 | `(counsel-css-selector-depth-face-5 ((,class (:foreground ,yellow-1)))) 404 | `(counsel-css-selector-depth-face-6 ((,class (:foreground ,orange)))) 405 | `(show-paren-match ((,class (:background unspecified :underline (:style line :color ,pink))))) 406 | `(show-paren-mismatch ((,class (:background unspecified :foreground ,red :inverse-video t :underline (:style line :color ,red))))) 407 | `(highlight-symbol-face ((,class (:foreground unspecified :background unspecified :underline (:style line :color ,base02))))) 408 | `(symbol-overlay-temp-face ((,class (:foreground unspecified :background unspecified :underline (:style line :color ,base02))))) 409 | `(symbol-overlay-default-face ((,class (:foreground unspecified :background unspecified :underline (:style line :color ,base02))))) 410 | `(sp-show-pair-match-face ((,class (:inherit show-paren-match)))) 411 | `(sp-show-pair-mismatch-face ((,class (:inherit show-paren-mismatch)))) 412 | `(rainbow-delimiters-depth-1-face ((,class (:foreground ,purple-1)))) 413 | `(rainbow-delimiters-depth-2-face ((,class (:foreground ,indigo-1)))) 414 | `(rainbow-delimiters-depth-3-face ((,class (:foreground ,cyan-1)))) 415 | `(rainbow-delimiters-depth-4-face ((,class (:foreground ,blue-1)))) 416 | `(rainbow-delimiters-depth-5-face ((,class (:foreground ,teal-1)))) 417 | `(rainbow-delimiters-depth-6-face ((,class (:foreground ,pink-1)))) 418 | `(rainbow-delimiters-depth-7-face ((,class (:foreground ,purple)))) 419 | `(rainbow-delimiters-depth-8-face ((,class (:foreground ,indigo)))) 420 | `(rainbow-delimiters-depth-9-face ((,class (:foreground ,cyan)))) 421 | `(rainbow-delimiters-depth-10-face ((,class (:foreground ,blue)))) 422 | `(rainbow-delimiters-depth-11-face ((,class (:foreground ,teal)))) 423 | `(rainbow-delimiters-depth-12-face ((,class (:foreground ,pink)))) 424 | `(rainbow-delimiters-mismatched-face ((,class (:foreground ,red)))) 425 | `(rainbow-delimiters-unmatched-face ((,class (:foreground ,red)))) 426 | `(highlight-blocks-depth-1-face ((,class (:background ,base00-1)))) 427 | `(highlight-blocks-depth-2-face ((,class (:background ,base00-2)))) 428 | `(highlight-blocks-depth-3-face ((,class (:background ,base00-3)))) 429 | `(highlight-blocks-depth-4-face ((,class (:background ,base00-3)))) 430 | `(highlight-blocks-depth-5-face ((,class (:background ,base00-3)))) 431 | `(highlight-blocks-depth-6-face ((,class (:background ,base00-3)))) 432 | `(highlight-blocks-depth-7-face ((,class (:background ,base00-3)))) 433 | `(highlight-blocks-depth-8-face ((,class (:background ,base00-3)))) 434 | `(highlight-blocks-depth-9-face ((,class (:background ,base00-3)))) 435 | `(flx-highlight-face ((,class (:foreground ,yellow)))) 436 | `(diff-added ((,class (:foreground ,green)))) 437 | `(diff-changed ((,class (:foreground ,blue)))) 438 | `(diff-removed ((,class (:foreground ,red)))) 439 | `(diff-header ((,class (:background ,base00+1)))) 440 | `(diff-file-header ((,class (:foreground ,base01)))) 441 | `(diff-hunk-header ((,class (:foreground ,base01)))) 442 | `(git-gutter:added ((,class (:foreground ,base01)))) 443 | `(git-gutter:deleted ((,class (:foreground ,base01)))) 444 | `(git-gutter:modified ((,class (:foreground ,base01)))) 445 | `(diff-hl-insert ((,class (:foreground ,green :background ,base00+1)))) 446 | `(diff-hl-unknown ((,class (:foreground ,orange-1 :background ,base00+1)))) 447 | `(diff-hl-delete ((,class (:foreground ,red-1 :background ,base00+1)))) 448 | `(diff-hl-change ((,class (:foreground ,blue-1 :background ,base00+1)))) 449 | `(eldoc-highlight-function-argument ((,class (:foreground ,green)))) 450 | `(undo-tree-visualizer-default-face ((,class (:foreground ,base03)))) 451 | `(undo-tree-visualizer-current-face ((,class (:foreground ,green :weight bold)))) 452 | `(undo-tree-visualizer-active-branch-face ((,class (:foreground ,red)))) 453 | `(undo-tree-visualizer-register-face ((,class (:foreground ,yellow)))) 454 | `(erm-syn-errline ((,class (:box nil :underline (:style wave :color ,red))))) 455 | `(erm-syn-warnline ((,class (:box nil :underline (:style wave :color ,orange))))) 456 | `(dirvish-hl-line ((,class (:background ,base00-1)))) 457 | `(dired-directory ((,class (:foreground ,brown)))) 458 | `(dired-header ((,class (:inherit header-line)))) 459 | `(dired-subtree-depth-1-face ((,class (:background ,base00-1)))) 460 | `(dired-subtree-depth-2-face ((,class (:background ,base00-2)))) 461 | `(dired-subtree-depth-3-face ((,class (:background ,base00-2)))) 462 | `(dired-subtree-depth-4-face ((,class (:background ,base00-3)))) 463 | `(dired-subtree-depth-5-face ((,class (:background ,base00-3)))) 464 | `(dired-subtree-depth-6-face ((,class (:background ,base00-3)))) 465 | `(diredp-compressed-file-suffix ((,class (:foreground ,blue)))) 466 | `(diredp-dir-heading ((,class (:inherit dired-header)))) 467 | `(diredp-dir-priv ((,class (:foreground ,cyan :background unspecified)))) 468 | `(diredp-exec-priv ((,class (:foreground ,blue :background unspecified)))) 469 | `(diredp-executable-tag ((,class (:foreground ,red :background unspecified)))) 470 | `(diredp-file-name ((,class (:foreground ,orange)))) 471 | `(diredp-file-suffix ((,class (:foreground ,green)))) 472 | `(diredp-flag-mark-line ((,class (:background unspecified :inherit highlight)))) 473 | `(diredp-ignored-file-name ((,class (:foreground ,base03)))) 474 | `(diredp-link-priv ((,class (:background unspecified :foreground ,purple)))) 475 | `(diredp-mode-line-flagged ((,class (:foreground ,red)))) 476 | `(diredp-mode-line-marked ((,class (:foreground ,green)))) 477 | `(diredp-no-priv ((,class (:background unspecified)))) 478 | `(diredp-number ((,class (:foreground ,orange-1)))) 479 | `(diredp-other-priv ((,class (:background unspecified :foreground ,purple)))) 480 | `(diredp-rare-priv ((,class (:foreground ,red :background unspecified)))) 481 | `(diredp-read-priv ((,class (:foreground ,green :background unspecified)))) 482 | `(diredp-symlink ((,class (:foreground ,purple)))) 483 | `(diredp-write-priv ((,class (:foreground ,yellow :background unspecified)))) 484 | `(magit-process-ok ((,class (:foreground ,green)))) 485 | `(magit-process-ng ((,class (:foreground ,red)))) 486 | `(magit-tag ((,class (:foreground ,cyan-1)))) 487 | `(magit-log-author ((,class (:foreground ,base02)))) 488 | `(magit-log-date ((,class (:foreground ,base02)))) 489 | `(magit-log-graph ((,class (:foreground ,base02)))) 490 | `(magit-log-head-label-head ((,class (:box nil :background ,base00+1 :foreground ,green-1)))) 491 | `(magit-log-head-label-remote ((,class (:box nil :background ,base00+1 :foreground ,green-1)))) 492 | `(magit-log-head-label-local ((,class (:box nil :background ,base00+1 :foreground ,green-1)))) 493 | `(magit-log-head-label-tags ((,class (:box nil :background ,base00+1 :foreground ,green-1)))) 494 | `(magit-log-head-label-patches ((,class (:box nil :background ,base00+1 :foreground ,green-1)))) 495 | `(magit-hash ((,class (:foreground ,cyan)))) 496 | `(magit-branch ((,class (:background ,base00+1 :foreground ,green-1)))) 497 | `(magit-branch-local ((,class (:foreground ,green-1)))) 498 | `(magit-branch-remote ((,class (:foreground ,green-1)))) 499 | `(magit-branch-label ((,class (:foreground ,green-1)))) 500 | `(magit-branch-current ((,class (:foreground ,green-1)))) 501 | `(magit-head ((,class (:foreground ,indigo)))) 502 | `(magit-section-highlight ((,class (:inherit highlight)))) 503 | `(magit-section-heading ((,class (:foreground ,purple)))) 504 | `(magit-dimmed ((,class (:background ,base00-2)))) 505 | `(magit-refname ((,class (:foreground ,orange)))) 506 | `(magit-diff-added ((,class (:foreground ,green :background unspecified)))) 507 | `(magit-diff-removed ((,class (:foreground ,red :background unspecified)))) 508 | `(magit-diff-context ((,class (:foreground unspecified :background unspecified)))) 509 | `(diff-refine-added ((,class (:foreground ,green :weight bold :background ,base00-1)))) 510 | `(diff-refine-changed ((,class (:foreground ,green :weight bold :background ,base00-1)))) 511 | `(diff-refine-removed ((,class (:foreground ,red :weight bold :background ,base00-1)))) 512 | `(magit-diff-added-highlight ((,class (:foreground ,green :background ,base00-2)))) 513 | `(magit-diff-removed-highlight ((,class (:foreground ,red :background ,base00-2)))) 514 | `(magit-diff-context-highlight ((,class (:foreground unspecified :background ,base00-2)))) 515 | `(magit-diffstat-added ((,class (:foreground ,green :background unspecified)))) 516 | `(magit-diffstat-removed ((,class (:foreground ,red :background unspecified)))) 517 | `(magit-cherry-unmatched ((,class (:foreground ,cyan)))) 518 | `(magit-cherry-equivalent ((,class (:foreground ,purple)))) 519 | `(magit-blame-heading ((,class (:foreground unspecified :background unspecified)))) 520 | `(magit-diff-hunk-heading ((,class (:foreground ,base01)))) 521 | `(magit-diff-hunk-heading-highlight ((,class (:inherit magit-diff-hunk-heading :background ,base00-2)))) 522 | `(magit-diff-hunk-heading-selection ((,class (:foreground unspecified :background ,base00-2)))) 523 | `(magit-diff-lines-heading ((,class (:background unspecified)))) 524 | `(magit-popup-argument ((,class (:foreground ,orange)))) 525 | `(magit-popup-disabled-argument ((,class (:foreground ,base01)))) 526 | `(magit-item-highlight ((,class (:background ,highlight-line-color)))) 527 | `(blamer-face ((,class (:foreground ,base02)))) 528 | `(git-commit-summary ((,class (:foreground ,base03)))) 529 | `(git-timemachine-minibuffer-detail-face ((,class (:foreground ,orange)))) 530 | `(smerge-markers ((,class (:inherit highlight)))) 531 | `(smerge-upper ((,class (:background ,base00-1)))) 532 | `(smerge-lower ((,class (:background ,base00-1)))) 533 | `(smerge-refined-removed ((,class (:foreground ,red :background ,base00-1)))) 534 | `(smerge-refined-added ((,class (:foreground ,green :background ,base00-1)))) 535 | `(ediff-current-diff-A ((,class (:background ,base00-2 :inverse-video nil :extend t)))) 536 | `(ediff-current-diff-Ancestor ((,class (:inherit ediff-current-diff-A)))) 537 | `(ediff-current-diff-B ((,class (:inherit ediff-current-diff-A)))) 538 | `(ediff-current-diff-C ((,class (:inherit ediff-current-diff-A)))) 539 | `(ediff-fine-diff-A ((,class (:background ,base00 :stipple nil :extend t)))) 540 | `(ediff-fine-diff-Ancestor ((,class (:inherit ediff-fine-diff-A)))) 541 | `(ediff-fine-diff-B ((,class (:inherit ediff-fine-diff-A)))) 542 | `(ediff-fine-diff-C ((,class (:inherit ediff-fine-diff-A )))) 543 | `(ediff-even-diff-A ((,class (:background ,base00+1 :stipple nil :extend t)))) 544 | `(ediff-even-diff-Ancestor ((,class (:inherit ediff-even-diff-A)))) 545 | `(ediff-even-diff-B ((,class (:inherit ediff-even-diff-A)))) 546 | `(ediff-even-diff-C ((,class (:inherit ediff-even-diff-A)))) 547 | `(ediff-odd-diff-A ((,class (:inherit ediff-even-diff-A)))) 548 | `(ediff-odd-diff-Ancestor ((,class (:inherit ediff-odd-diff-A)))) 549 | `(ediff-odd-diff-B ((,class (:inherit ediff-odd-diff-A)))) 550 | `(ediff-odd-diff-C ((,class (:inherit ediff-odd-diff-A)))) 551 | `(compilation-info ((,class (:foreground ,base02 :underline t)))) 552 | `(compilation-column-number ((,class (:foreground ,base02)))) 553 | `(compilation-line-number ((,class (:foreground ,base02)))) 554 | `(compilation-message-face ((,class (:foreground ,blue)))) 555 | `(compilation-mode-line-exit ((,class (:inherit nil :foreground unspecified :background unspecified)))) 556 | `(compilation-mode-line-fail ((,class (:inherit nil :foreground unspecified :background unspecified)))) 557 | `(compilation-mode-line-run ((,class (:inherit nil :foreground unspecified :background unspecified)))) 558 | `(outline-1 ((,class (:foreground ,base03)))) 559 | `(org-date ((,class (:foreground ,purple)))) 560 | `(org-done ((,class (:foreground ,green)))) 561 | `(org-checkbox ((,class (:foreground ,purple)))) 562 | `(org-agenda-structure ((,class (:foreground ,purple)))) 563 | `(org-agenda-date ((,class (:foreground ,blue :underline nil)))) 564 | `(org-agenda-done ((,class (:foreground ,green)))) 565 | `(org-agenda-dimmed-todo-face ((,class (:foreground ,base03)))) 566 | `(org-code ((,class (:foreground ,orange-1)))) 567 | `(org-column ((,class (:background ,base00+1)))) 568 | `(org-column-title ((,class (:background ,base00 :weight bold :underline t)))) 569 | `(org-document-info ((,class (:foreground ,cyan)))) 570 | `(org-document-info-keyword ((,class (:foreground ,green)))) 571 | `(org-document-title ((,class (:weight bold :foreground ,orange :height 1.44)))) 572 | `(org-ellipsis ((,class (:foreground ,base03)))) 573 | `(org-footnote ((,class (:foreground ,cyan)))) 574 | `(org-formula ((,class (:foreground ,red)))) 575 | `(org-hide ((,class (:foreground ,base02)))) 576 | `(org-link ((,class (:inherit link)))) 577 | `(org-scheduled ((,class (:foreground ,green)))) 578 | `(org-scheduled-previously ((,class (:foreground ,orange)))) 579 | `(org-scheduled-today ((,class (:foreground ,green)))) 580 | `(org-special-keyword ((,class (:foreground ,orange)))) 581 | `(org-table ((,class (:foreground ,purple)))) 582 | `(org-todo ((,class (:foreground ,red)))) 583 | `(org-upcoming-deadline ((,class (:foreground ,orange)))) 584 | `(org-warning ((,class (:foreground ,red)))) 585 | `(org-block ((,class (:foreground ,orange :background ,base00+1)))) 586 | `(org-meta-line ((,class (:inherit font-lock-comment-face)))) 587 | `(org-block-end-line ((,class (:inherit font-lock-comment-face)))) 588 | `(org-block-end-line ((,class (:inherit font-lock-comment-face)))) 589 | `(org-block-background ((,class (:background ,base00+1)))) 590 | `(markdown-url-face ((,class (:inherit link)))) 591 | `(markdown-link-face ((,class (:foreground ,blue :underline t)))) 592 | `(js2-warning ((,class (:inherit flycheck-warning)))) 593 | `(js2-error ((,class (:foreground nil :inherit flycheck-error)))) 594 | `(js2-external-variable ((,class (:foreground ,orange)))) 595 | `(js2-function-param ((,class (:foreground ,indigo)))) 596 | `(js2-instance-member ((,class (:foreground ,blue)))) 597 | `(js2-private-function-call ((,class (:foreground ,pink)))) 598 | `(js3-warning-face ((,class (:inherit js2-warning)))) 599 | `(js3-error-face ((,class (:inherit js2-error)))) 600 | `(js3-external-variable-face ((,class (:inherit js2-external-variable)))) 601 | `(js3-function-param-face ((,class (:inherit js2-function-param)))) 602 | `(js3-instance-member-face ((,class (:inherit js2-instance-member)))) 603 | `(js3-private-function-call-face ((,class (:inherit js2-private-function-call)))) 604 | `(js3-jsdoc-tag-face ((,class (:foreground ,orange)))) 605 | `(js3-jsdoc-type-face ((,class (:foreground ,cyan)))) 606 | `(js3-jsdoc-value-face ((,class (:foreground ,orange-1)))) 607 | `(js3-jsdoc-html-tag-name-face ((,class (:foreground ,blue)))) 608 | `(js3-jsdoc-html-tag-delimiter-face ((,class (:foreground ,green)))) 609 | `(erb-face ((,class (:background ,base00+1 :foreground ,base03)))) 610 | `(erb-delim-face ((,class (:background ,base00+1 :foreground ,red)))) 611 | `(erb-exec-face ((,class (:background ,base00+1 :foreground ,base02)))) 612 | `(erb-exec-delim-face ((,class (:background ,base00+1 :foreground ,red)))) 613 | `(erb-out-face ((,class (:background ,base00+1 :foreground ,base03)))) 614 | `(erb-out-delim-face ((,class (:background ,base00+1 :foreground ,red)))) 615 | `(erb-comment-face ((,class (:background ,base00+1 :foreground ,base02)))) 616 | `(erb-comment-delim-face ((,class (:background ,base00+1 :foreground ,base01)))) 617 | `(web-mode-error-face ((,class (:inherit error)))) 618 | `(web-mode-symbol-face ((,class (:inherit font-lock-constant-face)))) 619 | `(web-mode-doctype-face ((,class (:inherit font-lock-comment-face)))) 620 | `(web-mode-html-tag-face ((,class (:inherit font-lock-function-name-face)))) 621 | `(web-mode-html-tag-bracket-face ((,class (:foreground ,purple)))) 622 | `(web-mode-html-attr-name-face ((,class (:inherit font-lock-variable-name-face)))) 623 | `(web-mode-current-element-highlight-face ((,class (:inherit highlight-symbol-face)))) 624 | `(web-mode-current-column-highlight-face ((,class (:inherit hl-line)))) 625 | `(pulse-highlight-start-face ((,class (:background ,flashing-color)))) 626 | `(goggles-changed ((,class (:background ,flashing-color)))) 627 | `(goggles-removed ((,class (:background ,flashing-color)))) 628 | `(goggles-added ((,class (:background ,flashing-color)))) 629 | `(eshell-prompt ((,class (:foreground ,green :weight bold)))) 630 | `(eshell-ls-archive ((,class (:foreground ,teal)))) 631 | `(eshell-ls-backup ((,class (:inherit font-lock-comment-face)))) 632 | `(eshell-ls-clutter ((,class (:inherit font-lock-comment-face)))) 633 | `(eshell-ls-directory ((,class (:foreground ,brown)))) 634 | `(eshell-ls-executable ((,class (:foreground ,red)))) 635 | `(eshell-ls-unreadable ((,class (:inherit font-lock-comment-face)))) 636 | `(eshell-ls-missing ((,class (:inherit font-lock-warning-face)))) 637 | `(eshell-ls-product ((,class (:inherit font-lock-doc-face)))) 638 | `(eshell-ls-special ((,class (:foreground ,orange)))) 639 | `(eshell-ls-symlink ((,class (:foreground ,purple)))) 640 | `(ansi-color-black ((,class (:foreground ,base03)))) 641 | `(ansi-color-bright-black ((,class (:foreground ,base03)))) 642 | `(ansi-color-red ((,class (:foreground ,red)))) 643 | `(ansi-color-bright-red ((,class (:foreground ,red-1)))) 644 | `(ansi-color-green ((,class (:foreground ,green)))) 645 | `(ansi-color-bright-green ((,class (:foreground ,green-1)))) 646 | `(ansi-color-yellow ((,class (:foreground ,yellow)))) 647 | `(ansi-color-bright-yellow ((,class (:foreground ,yellow-1)))) 648 | `(ansi-color-blue ((,class (:foreground ,blue)))) 649 | `(ansi-color-bright-blue ((,class (:foreground ,blue-1)))) 650 | `(ansi-color-magenta ((,class (:foreground ,purple)))) 651 | `(ansi-color-bright-magenta ((,class (:foreground ,purple-1)))) 652 | `(ansi-color-cyan ((,class (:foreground ,cyan)))) 653 | `(ansi-color-bright-cyan ((,class (:foreground ,cyan-1)))) 654 | `(ansi-color-white ((,class (:foreground ,base00)))) 655 | `(ansi-color-bright-white ((,class (:foreground ,base00-1)))) 656 | `(term ((,class (:foreground ,base03)))) 657 | `(term-color-black ((,class (:foreground ,base03)))) 658 | `(term-color-red ((,class (:foreground ,red)))) 659 | `(term-color-green ((,class (:foreground ,green)))) 660 | `(term-color-yellow ((,class (:foreground ,yellow)))) 661 | `(term-color-blue ((,class (:foreground ,blue)))) 662 | `(term-color-magenta ((,class (:foreground ,purple)))) 663 | `(term-color-cyan ((,class (:foreground ,cyan)))) 664 | `(term-color-white ((,class (:foreground ,base00)))) 665 | `(erc-action-face ((,class (:inherit erc-default-face)))) 666 | `(erc-bold-face ((,class (:weight bold)))) 667 | `(erc-current-nick-face ((,class (:foreground ,blue :weight bold)))) 668 | `(erc-dangerous-host-face ((,class (:inherit font-lock-warning-face)))) 669 | `(erc-default-face ((,class (:foreground ,base03)))) 670 | `(erc-direct-msg-face ((,class (:inherit erc-default)))) 671 | `(erc-error-face ((,class (:inherit font-lock-warning-face)))) 672 | `(erc-fool-face ((,class (:inherit erc-default)))) 673 | `(erc-highlight-face ((,class (:inherit hover-highlight)))) 674 | `(erc-input-face ((,class (:foreground ,yellow)))) 675 | `(erc-keyword-face ((,class (:foreground ,blue)))) 676 | `(erc-nick-default-face ((,class (:foreground ,yellow :weight bold)))) 677 | `(erc-my-nick-face ((,class (:foreground ,red :weight bold)))) 678 | `(erc-nick-msg-face ((,class (:inherit erc-default)))) 679 | `(erc-notice-face ((,class (:foreground ,green)))) 680 | `(erc-pal-face ((,class (:foreground ,orange)))) 681 | `(erc-prompt-face ((,class (:foreground ,orange :background ,base00 :weight bold)))) 682 | `(erc-timestamp-face ((,class (:foreground ,green)))) 683 | `(erc-underline-face ((,class (:underline t)))) 684 | `(bm-face ((,class (:inherit secondary-selection)))) 685 | `(bm-persistent-face ((,class (:inherit secondary-selection)))) 686 | `(bm-fringe-face ((,class (:inherit fringe)))) 687 | `(bm-fringe-persistent-face ((,class (:inherit fringe)))) 688 | `(neo-dir-link-face ((,class (:foreground ,brown)))) 689 | `(neo-expand-btn-face ((,class (:foreground ,base02)))) 690 | `(neo-header-face ((,class (:inherit header-line)))) 691 | `(neo-file-link-face ((,class (:foreground ,base03)))) 692 | `(neo-root-dir-face ((,class (:foreground ,base02)))) 693 | `(org-ellipsis ((,class (:inherit font-lock-keyword-face)))) 694 | `(flyspell-incorrect ((,class (:underline (:style wave :color ,red))))) 695 | `(flyspell-duplicate ((,class (:underline (:style wave :color ,orange))))) 696 | `(org-level-1 ((,class (:inherit header-line :height ,(if apropospriate-org-level-resizing 1.3 1.0))))) 697 | `(org-level-2 ((,class (:inherit header-line :height ,(if apropospriate-org-level-resizing 1.2 1.0))))) 698 | `(org-level-3 ((,class (:inherit header-line :height ,(if apropospriate-org-level-resizing 1.1 1.0))))) 699 | `(org-level-4 ((,class (:inherit header-line)))) 700 | `(org-level-5 ((,class (:inherit header-line)))) 701 | `(org-level-6 ((,class (:inherit header-line)))) 702 | `(org-level-7 ((,class (:inherit header-line)))) 703 | `(org-level-8 ((,class (:inherit header-line)))) 704 | `(hydra-face-red ((,class (:foreground ,pink-1 :bold t)))) 705 | `(hydra-face-blue ((,class (:foreground ,blue :bold t)))) 706 | `(hydra-face-amaranth ((,class (:foreground ,red-1 :bold t)))) 707 | `(hydra-face-pink ((,class (:foreground ,pink :bold t)))) 708 | `(hydra-face-teal ((,class (:foreground ,cyan :bold t)))) 709 | `(hi-yellow ((,class (:inherit highlight :foreground ,yellow :inverse-video t)))) 710 | `(hi-pink ((,class (:inherit highlight :foreground ,pink :inverse-video t)))) 711 | `(hi-green ((,class (:inherit highlight :foreground ,green :inverse-video t)))) 712 | `(hi-blue ((,class (:inherit highlight :foreground ,blue :inverse-video t)))) 713 | `(hi-black-b ((,class (:inherit highlight :foreground ,light-emphasis :inverse-video t :bold t)))) 714 | `(hi-blue-b ((,class (:inherit hi-blue :bold t)))) 715 | `(hi-green-b ((,class (:inherit hi-green :bold t)))) 716 | `(hi-red-b ((,class (:inherit highlight :foreground ,red :inverse-video t :bold t)))) 717 | `(hi-black-hb ((,class (:inherit hi-black-b :height 1.2)))) 718 | `(vr/match-0 ((,class (:background ,light-emphasis-1)))) 719 | `(vr/match-1 ((,class (:background ,light-emphasis-2)))) 720 | `(vr/group-0 ((,class (:foreground ,red :bold t)))) 721 | `(vr/group-1 ((,class (:foreground ,orange :bold t)))) 722 | `(vr/group-2 ((,class (:foreground ,green :bold t)))) 723 | `(vr/match-separator-face ((,class (:foreground ,red :bold t)))) 724 | `(yafolding-ellipsis-face ((,class (:inherit font-lock-comment-face))))) 725 | 726 | (custom-theme-set-variables 727 | theme-name 728 | `(diff-hl-show-hunk-posframe-internal-border-color ,base00-2) 729 | `(evil-emacs-state-cursor '(,red hbar)) 730 | `(evil-insert-state-cursor '(,red bar)) 731 | `(evil-normal-state-cursor '(,yellow box)) 732 | `(evil-visual-state-cursor '(,green box)) 733 | `(pos-tip-foreground-color ,base03) 734 | `(pos-tip-background-color ,base00-1) 735 | `(mlscroll-in-color ,base00+2) 736 | `(mlscroll-out-color ,base00) 737 | `(highlight-indent-guides-auto-enabled nil) 738 | `(highlight-symbol-foreground-color ,base03) 739 | `(highlight-symbol-colors '(,yellow 740 | ,green 741 | ,cyan 742 | ,blue 743 | ,purple 744 | ,orange)) 745 | `(vc-annotate-color-map '((20 . ,red) 746 | (40 . ,orange-1) 747 | (60 . ,orange) 748 | (80 . ,yellow-1) 749 | (100 . ,yellow) 750 | (120 . ,green) 751 | (140 . ,green) 752 | (160 . ,green) 753 | (180 . ,green) 754 | (200 . ,green-1) 755 | (220 . ,green-1) 756 | (240 . ,cyan) 757 | (260 . ,cyan) 758 | (280 . ,cyan-1) 759 | (300 . ,cyan-1) 760 | (320 . ,blue) 761 | (340 . ,blue) 762 | (360 . ,blue-1))) 763 | `(vc-annotate-very-old-color ,base02) 764 | `(beacon-color ,flashing-color) 765 | `(highlight-tail-colors 766 | '((,flashing-color . 0) (,base00 . 100))) 767 | `(tabbar-background-color ,base00-2) 768 | `(indent-bars-color '(highlight :face-bg t :blend 0.123)) 769 | `(ansi-color-names-vector 770 | [,base00 ,red-1 ,green ,yellow ,blue ,purple ,cyan ,base03])))) 771 | 772 | ;;;###autoload 773 | (and load-file-name 774 | (boundp 'custom-theme-load-path) 775 | (add-to-list 'custom-theme-load-path 776 | (file-name-as-directory 777 | (file-name-directory load-file-name)))) 778 | 779 | (provide 'apropospriate-theme) 780 | ;; Local Variables: 781 | ;; no-byte-compile: t 782 | ;; eval: (when (require 'rainbow-mode nil t) (rainbow-mode 1)) 783 | ;; fill-column: 105 784 | ;; End: 785 | ;;; apropospriate-theme.el ends here 786 | -------------------------------------------------------------------------------- /dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymondo/apropospriate-theme/1e8daa3e21e44a2fbc138db6fb38a915b4288479/dark.png -------------------------------------------------------------------------------- /light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waymondo/apropospriate-theme/1e8daa3e21e44a2fbc138db6fb38a915b4288479/light.png --------------------------------------------------------------------------------