Updated theme layout to easily extend by package

This commit is contained in:
Felipe Martín 2015-08-17 20:38:56 +02:00
parent 699f7bbc8d
commit 67429defec
2 changed files with 523 additions and 429 deletions

View File

@ -3,11 +3,10 @@
;; Copyright (C) 2014 , Felipe Martin ;; Copyright (C) 2014 , Felipe Martin
;; Author: Felipe Martin ;; Author: Felipe Martin
;; Email: fmartingr@gmail.com ;; Email: me@fmartingr.com
;; URL: https://gitlab.com/fmartingr/emacs-gameboy-theme ;; URL: https://gitlab.com/fmartingr/emacs-gameboy-theme
;; Version: 0.1 ;; Version: 0.1
;; Package-Requires: ((emacs "24")) ;; Package-Requires: ((emacs "24"))
;; Created with emacs-theme-generator, https://github.com/mswift42/theme-creator.
;; This program is free software: you can redistribute it and/or modify ;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by ;; it under the terms of the GNU General Public License as published by
@ -25,220 +24,268 @@
;; This file is not part of Emacs. ;; This file is not part of Emacs.
;;; Commentary: ;;; Commentary:
;; With some help from: emacs-theme-generator, https://github.com/mswift42/theme-creator.
;;; Code: ;;; Code:
(deftheme gameboy-grayscale) (deftheme gameboy-grayscale "Gameboy (grayscale)")
(let ((class '((class color) (min-colors 89)))
(fg1 "#000000") ;;; Color palette
(fg2 "#191919") (let ((class '((class color) (min-colors 89)))
(fg3 "#2a2a2a") (fg1 "#000000")
(fg4 "#3b3b3b") (fg2 "#191919")
(bg1 "#ffffff") (fg3 "#2a2a2a")
(bg2 "#e8e8e8") (fg4 "#3b3b3b")
(bg3 "#d1d1d1") (bg1 "#ffffff")
(bg4 "#bbbbbb") (bg2 "#e8e8e8")
(key2 "#818181") (bg3 "#d1d1d1")
(key3 "#666666") (bg4 "#bbbbbb")
(builtin "#bfbfbf") (key2 "#818181")
(keyword "#737373") (key3 "#666666")
(const "#737373") (builtin "#bfbfbf")
(comment "#bfbfbf") (keyword "#737373")
(func "#bfbfbf") (const "#737373")
(str "#bfbfbf") (comment "#bfbfbf")
(type "#bfbfbf") (func "#bfbfbf")
(var "#737373") (str "#bfbfbf")
(warning "#bfbfbf")) (type "#bfbfbf")
(custom-theme-set-faces (var "#737373")
(warning "#bfbfbf"))
(custom-theme-set-faces
'gameboy-grayscale 'gameboy-grayscale
`(default ((,class (:background ,bg1 :foreground ,fg1))))
`(font-lock-builtin-face ((,class (:foreground ,builtin)))) ;;; Basic
`(font-lock-comment-face ((,class (:foreground ,comment)))) `(default ((,class (:background ,bg1 :foreground ,fg1))))
`(font-lock-negation-char-face ((,class (:foreground ,const)))) `(default-italic ((,class (:italic t))))
`(font-lock-reference-face ((,class (:foreground ,const)))) `(link ((,class (:foreground ,const :underline t))))
`(font-lock-constant-face ((,class (:foreground ,const)))) `(warning ((,class (:foreground ,warning))))
`(font-lock-doc-face ((,class (:foreground ,comment)))) `(info-quoted-name ((,class (:foreground ,builtin))))
`(font-lock-function-name-face ((,class (:foreground ,func :bold t)))) `(info-string ((,class (:foreground ,str))))
`(font-lock-keyword-face ((,class (:bold ,class :foreground ,keyword)))) `(trailing-whitespace ((,class :foreground nil :background ,warning)))
`(font-lock-string-face ((,class (:foreground ,str))))
`(font-lock-type-face ((,class (:foreground ,type )))) ;;; Font lock
`(font-lock-variable-name-face ((,class (:foreground ,var)))) `(font-lock-builtin-face ((,class (:foreground ,builtin))))
`(font-lock-warning-face ((,class (:foreground ,warning :background ,bg2)))) `(font-lock-comment-face ((,class (:foreground ,comment))))
`(region ((,class (:background ,fg1 :foreground ,bg1)))) `(font-lock-negation-char-face ((,class (:foreground ,const))))
`(highlight ((,class (:foreground ,fg3 :background ,bg3)))) `(font-lock-reference-face ((,class (:foreground ,const))))
`(hl-line ((,class (:background ,bg2)))) `(font-lock-constant-face ((,class (:foreground ,const))))
`(fringe ((,class (:background ,bg2 :foreground ,fg4)))) `(font-lock-doc-face ((,class (:foreground ,comment))))
`(cursor ((,class (:background ,bg3)))) `(font-lock-function-name-face ((,class (:foreground ,func :bold t))))
`(show-paren-match-face ((,class (:background ,warning)))) `(font-lock-keyword-face ((,class (:bold ,class :foreground ,keyword))))
`(isearch ((,class (:bold t :foreground ,warning :background ,bg3)))) `(font-lock-string-face ((,class (:foreground ,str))))
`(mode-line ((,class (:box (:line-width 1 :color nil) :bold t :foreground ,fg4 :background ,bg2)))) `(font-lock-type-face ((,class (:foreground ,type ))))
`(mode-line-inactive ((,class (:box (:line-width 1 :color nil :style pressed-button) :foreground ,key3 :background ,bg1 :weight normal)))) `(font-lock-variable-name-face ((,class (:foreground ,var))))
`(mode-line-buffer-id ((,class (:bold t :foreground ,func :background nil)))) `(font-lock-warning-face ((,class (:foreground ,warning :background ,bg2))))
`(mode-line-highlight ((,class (:foreground ,keyword :box nil :weight bold))))
`(mode-line-emphasis ((,class (:foreground ,fg1)))) ;;; Regions
`(vertical-border ((,class (:foreground ,fg3)))) `(region ((,class (:background ,fg1 :foreground ,bg1))))
`(minibuffer-prompt ((,class (:bold t :foreground ,keyword)))) `(highlight ((,class (:foreground ,fg3 :background ,bg3))))
`(default-italic ((,class (:italic t)))) `(hl-line ((,class (:background ,bg2))))
`(link ((,class (:foreground ,const :underline t)))) `(fringe ((,class (:background ,bg2 :foreground ,fg4))))
`(org-code ((,class (:foreground ,fg2)))) `(cursor ((,class (:background ,bg3))))
`(org-hide ((,class (:foreground ,fg4)))) `(show-paren-match-face ((,class (:background ,warning))))
`(org-level-1 ((,class (:bold t :foreground ,fg2 :height 1.1)))) `(isearch ((,class (:bold t :foreground ,warning :background ,bg3))))
`(org-level-2 ((,class (:bold nil :foreground ,fg3))))
`(org-level-3 ((,class (:bold t :foreground ,fg4)))) ;;; Modeline
`(org-level-4 ((,class (:bold nil :foreground ,bg4)))) `(mode-line ((,class (:box (:line-width 1 :color nil) :bold t :foreground ,fg4 :background ,bg2))))
`(org-date ((,class (:underline t :foreground ,var) ))) `(mode-line-inactive ((,class (:box (:line-width 1 :color nil :style pressed-button) :foreground ,key3 :background ,bg1 :weight normal))))
`(org-footnote ((,class (:underline t :foreground ,fg4)))) `(mode-line-buffer-id ((,class (:bold t :foreground ,func :background nil))))
`(org-link ((,class (:underline t :foreground ,type )))) `(mode-line-highlight ((,class (:foreground ,keyword :box nil :weight bold))))
`(org-special-keyword ((,class (:foreground ,func)))) `(mode-line-emphasis ((,class (:foreground ,fg1))))
`(org-block ((,class (:foreground ,fg3))))
`(org-quote ((,class (:inherit org-block :slant italic)))) ;;; UI
`(org-verse ((,class (:inherit org-block :slant italic)))) `(vertical-border ((,class (:foreground ,fg3))))
`(org-todo ((,class (:box (:line-width 1 :color ,fg3) :foreground ,keyword :bold t)))) `(minibuffer-prompt ((,class (:bold t :foreground ,keyword))))
`(org-done ((,class (:box (:line-width 1 :color ,bg3) :bold t :foreground ,bg4))))
`(org-warning ((,class (:underline t :foreground ,warning)))) ;;; org-mode
`(org-agenda-structure ((,class (:weight bold :foreground ,fg3 :box (:color ,fg4) :background ,bg3)))) `(org-code ((,class (:foreground ,fg2))))
`(org-agenda-date ((,class (:foreground ,var :height 1.1 )))) `(org-hide ((,class (:foreground ,fg4))))
`(org-agenda-date-weekend ((,class (:weight normal :foreground ,fg4)))) `(org-level-1 ((,class (:bold t :foreground ,fg2 :height 1.1))))
`(org-agenda-date-today ((,class (:weight bold :foreground ,keyword :height 1.4)))) `(org-level-2 ((,class (:bold nil :foreground ,fg3))))
`(org-agenda-done ((,class (:foreground ,bg4)))) `(org-level-3 ((,class (:bold t :foreground ,fg4))))
`(org-scheduled ((,class (:foreground ,type)))) `(org-level-4 ((,class (:bold nil :foreground ,bg4))))
`(org-scheduled-today ((,class (:foreground ,func :weight bold :height 1.2)))) `(org-date ((,class (:underline t :foreground ,var) )))
`(org-ellipsis ((,class (:foreground ,builtin)))) `(org-footnote ((,class (:underline t :foreground ,fg4))))
`(org-verbatim ((,class (:foreground ,fg4)))) `(org-link ((,class (:underline t :foreground ,type ))))
`(org-document-info-keyword ((,class (:foreground ,func)))) `(org-special-keyword ((,class (:foreground ,func))))
`(font-latex-bold-face ((,class (:foreground ,type)))) `(org-block ((,class (:foreground ,fg3))))
`(font-latex-italic-face ((,class (:foreground ,key3 :italic t)))) `(org-quote ((,class (:inherit org-block :slant italic))))
`(font-latex-string-face ((,class (:foreground ,str)))) `(org-verse ((,class (:inherit org-block :slant italic))))
`(font-latex-match-reference-keywords ((,class (:foreground ,const)))) `(org-todo ((,class (:box (:line-width 1 :color ,fg3) :foreground ,keyword :bold t))))
`(font-latex-match-variable-keywords ((,class (:foreground ,var)))) `(org-done ((,class (:box (:line-width 1 :color ,bg3) :bold t :foreground ,bg4))))
`(ido-only-match ((,class (:foreground ,warning)))) `(org-warning ((,class (:underline t :foreground ,warning))))
`(org-sexp-date ((,class (:foreground ,fg4)))) `(org-agenda-structure ((,class (:weight bold :foreground ,fg3 :box (:color ,fg4) :background ,bg3))))
`(ido-first-match ((,class (:foreground ,keyword :bold t)))) `(org-agenda-date ((,class (:foreground ,var :height 1.1 ))))
`(gnus-header-content ((,class (:foreground ,keyword)))) `(org-agenda-date-weekend ((,class (:weight normal :foreground ,fg4))))
`(gnus-header-from ((,class (:foreground ,var)))) `(org-agenda-date-today ((,class (:weight bold :foreground ,keyword :height 1.4))))
`(gnus-header-name ((,class (:foreground ,type)))) `(org-agenda-done ((,class (:foreground ,bg4))))
`(gnus-header-subject ((,class (:foreground ,func :bold t)))) `(org-scheduled ((,class (:foreground ,type))))
`(mu4e-view-url-number-face ((,class (:foreground ,type)))) `(org-scheduled-today ((,class (:foreground ,func :weight bold :height 1.2))))
`(mu4e-cited-1-face ((,class (:foreground ,fg2)))) `(org-ellipsis ((,class (:foreground ,builtin))))
`(mu4e-cited-7-face ((,class (:foreground ,fg3)))) `(org-verbatim ((,class (:foreground ,fg4))))
`(mu4e-header-marks-face ((,class (:foreground ,type)))) `(org-document-info-keyword ((,class (:foreground ,func))))
`(ffap ((,class (:foreground ,fg4))))
`(js2-private-function-call ((,class (:foreground ,const)))) ;;; Latex
`(js2-jsdoc-html-tag-delimiter ((,class (:foreground ,str)))) `(font-latex-bold-face ((,class (:foreground ,type))))
`(js2-jsdoc-html-tag-name ((,class (:foreground ,key2)))) `(font-latex-italic-face ((,class (:foreground ,key3 :italic t))))
`(js2-external-variable ((,class (:foreground ,type )))) `(font-latex-string-face ((,class (:foreground ,str))))
`(js2-function-param ((,class (:foreground ,const)))) `(font-latex-match-reference-keywords ((,class (:foreground ,const))))
`(js2-jsdoc-value ((,class (:foreground ,str)))) `(font-latex-match-variable-keywords ((,class (:foreground ,var))))
`(js2-private-member ((,class (:foreground ,fg3))))
`(js3-warning-face ((,class (:underline ,keyword)))) ;;; ido
`(js3-error-face ((,class (:underline ,warning)))) `(ido-only-match ((,class (:foreground ,warning))))
`(js3-external-variable-face ((,class (:foreground ,var)))) `(org-sexp-date ((,class (:foreground ,fg4))))
`(js3-function-param-face ((,class (:foreground ,key3)))) `(ido-first-match ((,class (:foreground ,keyword :bold t))))
`(js3-jsdoc-tag-face ((,class (:foreground ,keyword))))
`(js3-instance-member-face ((,class (:foreground ,const)))) ;;; gnus
`(warning ((,class (:foreground ,warning)))) `(gnus-header-content ((,class (:foreground ,keyword))))
`(ac-completion-face ((,class (:underline t :foreground ,keyword)))) `(gnus-header-from ((,class (:foreground ,var))))
`(info-quoted-name ((,class (:foreground ,builtin)))) `(gnus-header-name ((,class (:foreground ,type))))
`(info-string ((,class (:foreground ,str)))) `(gnus-header-subject ((,class (:foreground ,func :bold t))))
`(icompletep-determined ((,class :foreground ,builtin)))
`(undo-tree-visualizer-current-face ((,class :foreground ,builtin))) ;;; mu4e
`(undo-tree-visualizer-default-face ((,class :foreground ,fg2))) `(mu4e-view-url-number-face ((,class (:foreground ,type))))
`(undo-tree-visualizer-unmodified-face ((,class :foreground ,var))) `(mu4e-cited-1-face ((,class (:foreground ,fg2))))
`(undo-tree-visualizer-register-face ((,class :foreground ,type))) `(mu4e-cited-7-face ((,class (:foreground ,fg3))))
`(slime-repl-inputed-output-face ((,class (:foreground ,type)))) `(mu4e-header-marks-face ((,class (:foreground ,type))))
`(trailing-whitespace ((,class :foreground nil :background ,warning)))
`(rainbow-delimiters-depth-1-face ((,class :foreground ,fg1))) ;;; ffap
`(rainbow-delimiters-depth-2-face ((,class :foreground ,type))) `(ffap ((,class (:foreground ,fg4))))
`(rainbow-delimiters-depth-3-face ((,class :foreground ,var)))
`(rainbow-delimiters-depth-4-face ((,class :foreground ,const))) ;;; js2-mode
`(rainbow-delimiters-depth-5-face ((,class :foreground ,keyword))) `(js2-private-function-call ((,class (:foreground ,const))))
`(rainbow-delimiters-depth-6-face ((,class :foreground ,fg1))) `(js2-jsdoc-html-tag-delimiter ((,class (:foreground ,str))))
`(rainbow-delimiters-depth-7-face ((,class :foreground ,type))) `(js2-jsdoc-html-tag-name ((,class (:foreground ,key2))))
`(rainbow-delimiters-depth-8-face ((,class :foreground ,var))) `(js2-external-variable ((,class (:foreground ,type ))))
`(magit-item-highlight ((,class :background ,bg3))) `(js2-function-param ((,class (:foreground ,const))))
`(magit-section-heading ((,class (:foreground ,keyword :weight bold)))) `(js2-jsdoc-value ((,class (:foreground ,str))))
`(magit-hunk-heading ((,class (:background ,bg3)))) `(js2-private-member ((,class (:foreground ,fg3))))
`(magit-section-highlight ((,class (:background ,bg2))))
`(magit-hunk-heading-highlight ((,class (:background ,bg3)))) ;;; js3-mode
`(magit-diff-context-highlight ((,class (:background ,bg3 :foreground ,fg3)))) `(js3-warning-face ((,class (:underline ,keyword))))
`(magit-diffstat-added ((,class (:foreground ,type)))) `(js3-error-face ((,class (:underline ,warning))))
`(magit-diffstat-removed ((,class (:foreground ,var)))) `(js3-external-variable-face ((,class (:foreground ,var))))
`(magit-process-ok ((,class (:foreground ,func :weight bold)))) `(js3-function-param-face ((,class (:foreground ,key3))))
`(magit-process-ng ((,class (:foreground ,warning :weight bold)))) `(js3-jsdoc-tag-face ((,class (:foreground ,keyword))))
`(magit-branch ((,class (:foreground ,const :weight bold)))) `(js3-instance-member-face ((,class (:foreground ,const))))
`(magit-log-author ((,class (:foreground ,fg3))))
`(magit-hash ((,class (:foreground ,fg2)))) ;;; auto complete
`(magit-diff-file-header ((,class (:foreground ,fg2 :background ,bg3)))) `(ac-completion-face ((,class (:underline t :foreground ,keyword))))
`(lazy-highlight ((,class (:foreground ,fg2 :background ,bg3)))) `(icompletep-determined ((,class :foreground ,builtin)))
`(term ((,class (:foreground ,fg1 :background ,bg1))))
`(term-color-black ((,class (:foreground ,bg3 :background ,bg3)))) ;;; undo tree
`(term-color-blue ((,class (:foreground ,func :background ,func)))) `(undo-tree-visualizer-current-face ((,class :foreground ,builtin)))
`(term-color-red ((,class (:foreground ,keyword :background ,bg3)))) `(undo-tree-visualizer-default-face ((,class :foreground ,fg2)))
`(term-color-green ((,class (:foreground ,type :background ,bg3)))) `(undo-tree-visualizer-unmodified-face ((,class :foreground ,var)))
`(term-color-yellow ((,class (:foreground ,var :background ,var)))) `(undo-tree-visualizer-register-face ((,class :foreground ,type)))
`(term-color-magenta ((,class (:foreground ,builtin :background ,builtin))))
`(term-color-cyan ((,class (:foreground ,str :background ,str)))) ;;; Rainbow delimiters
`(term-color-white ((,class (:foreground ,fg2 :background ,fg2)))) `(rainbow-delimiters-depth-1-face ((,class :foreground ,fg1)))
`(rainbow-delimiters-unmatched-face ((,class :foreground ,warning))) `(rainbow-delimiters-depth-2-face ((,class :foreground ,type)))
`(helm-header ((,class (:foreground ,fg2 :background ,bg1 :underline nil :box nil)))) `(rainbow-delimiters-depth-3-face ((,class :foreground ,var)))
`(helm-source-header ((,class (:foreground ,keyword :background ,bg1 :underline nil :weight bold)))) `(rainbow-delimiters-depth-4-face ((,class :foreground ,const)))
`(helm-selection ((,class (:background ,bg2 :underline nil)))) `(rainbow-delimiters-depth-5-face ((,class :foreground ,keyword)))
`(helm-selection-line ((,class (:background ,bg2)))) `(rainbow-delimiters-depth-6-face ((,class :foreground ,fg1)))
`(helm-visible-mark ((,class (:foreground ,bg1 :background ,bg3)))) `(rainbow-delimiters-depth-7-face ((,class :foreground ,type)))
`(helm-candidate-number ((,class (:foreground ,bg1 :background ,fg1)))) `(rainbow-delimiters-depth-8-face ((,class :foreground ,var)))
`(helm-separator ((,class (:foreground ,type :background ,bg1)))) `(rainbow-delimiters-unmatched-face ((,class :foreground ,warning)))
`(helm-time-zone-current ((,class (:foreground ,builtin :background ,bg1))))
`(helm-time-zone-home ((,class (:foreground ,type :background ,bg1)))) ;;; magit
`(helm-buffer-not-saved ((,class (:foreground ,type :background ,bg1)))) `(magit-item-highlight ((,class :background ,bg3)))
`(helm-buffer-process ((,class (:foreground ,builtin :background ,bg1)))) `(magit-section-heading ((,class (:foreground ,keyword :weight bold))))
`(helm-buffer-saved-out ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-hunk-heading ((,class (:background ,bg3))))
`(helm-buffer-size ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-section-highlight ((,class (:background ,bg2))))
`(helm-ff-directory ((,class (:foreground ,func :background ,bg1 :weight bold)))) `(magit-hunk-heading-highlight ((,class (:background ,bg3))))
`(helm-ff-file ((,class (:foreground ,fg1 :background ,bg1 :weight normal)))) `(magit-diff-context-highlight ((,class (:background ,bg3 :foreground ,fg3))))
`(helm-ff-executable ((,class (:foreground ,key2 :background ,bg1 :weight normal)))) `(magit-diffstat-added ((,class (:foreground ,type))))
`(helm-ff-invalid-symlink ((,class (:foreground ,key3 :background ,bg1 :weight bold)))) `(magit-diffstat-removed ((,class (:foreground ,var))))
`(helm-ff-symlink ((,class (:foreground ,keyword :background ,bg1 :weight bold)))) `(magit-process-ok ((,class (:foreground ,func :weight bold))))
`(helm-ff-prefix ((,class (:foreground ,bg1 :background ,keyword :weight normal)))) `(magit-process-ng ((,class (:foreground ,warning :weight bold))))
`(helm-grep-cmd-line ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-branch ((,class (:foreground ,const :weight bold))))
`(helm-grep-file ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-log-author ((,class (:foreground ,fg3))))
`(helm-grep-finish ((,class (:foreground ,fg2 :background ,bg1)))) `(magit-hash ((,class (:foreground ,fg2))))
`(helm-grep-lineno ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-diff-file-header ((,class (:foreground ,fg2 :background ,bg3))))
`(helm-grep-match ((,class (:foreground nil :background nil :inherit helm-match))))
`(helm-grep-running ((,class (:foreground ,func :background ,bg1)))) ;;; lazy highlight
`(helm-moccur-buffer ((,class (:foreground ,func :background ,bg1)))) `(lazy-highlight ((,class (:foreground ,fg2 :background ,bg3))))
`(helm-source-go-package-godoc-description ((,class (:foreground ,str))))
`(helm-bookmark-w3m ((,class (:foreground ,type)))) ;;; term
`(company-echo-common ((,class (:foreground ,bg1 :background ,fg1)))) `(term ((,class (:foreground ,fg1 :background ,bg1))))
`(company-preview ((,class (:background ,bg1 :foreground ,key2)))) `(term-color-black ((,class (:foreground ,bg3 :background ,bg3))))
`(company-preview-common ((,class (:foreground ,bg2 :foreground ,fg3)))) `(term-color-blue ((,class (:foreground ,func :background ,func))))
`(company-preview-search ((,class (:foreground ,type :background ,bg1)))) `(term-color-red ((,class (:foreground ,keyword :background ,bg3))))
`(company-scrollbar-bg ((,class (:background ,bg3)))) `(term-color-green ((,class (:foreground ,type :background ,bg3))))
`(company-scrollbar-fg ((,class (:foreground ,keyword)))) `(term-color-yellow ((,class (:foreground ,var :background ,var))))
`(company-tooltip ((,class (:foreground ,fg2 :background ,bg1 :bold t)))) `(term-color-magenta ((,class (:foreground ,builtin :background ,builtin))))
`(company-tooltop-annotation ((,class (:foreground ,const)))) `(term-color-cyan ((,class (:foreground ,str :background ,str))))
`(company-tooltip-common ((,class ( :foreground ,fg3)))) `(term-color-white ((,class (:foreground ,fg2 :background ,fg2))))
`(company-tooltip-common-selection ((,class (:foreground ,str))))
`(company-tooltip-mouse ((,class (:inherit highlight)))) ;;; helm
`(company-tooltip-selection ((,class (:background ,bg3 :foreground ,fg3)))) `(helm-header ((,class (:foreground ,fg2 :background ,bg1 :underline nil :box nil))))
`(company-template-field ((,class (:inherit region)))) `(helm-source-header ((,class (:foreground ,keyword :background ,bg1 :underline nil :weight bold))))
`(web-mode-builtin-face ((,class (:inherit ,font-lock-builtin-face)))) `(helm-selection ((,class (:background ,bg2 :underline nil))))
`(web-mode-comment-face ((,class (:inherit ,font-lock-comment-face)))) `(helm-selection-line ((,class (:background ,bg2))))
`(web-mode-constant-face ((,class (:inherit ,font-lock-constant-face)))) `(helm-visible-mark ((,class (:foreground ,bg1 :background ,bg3))))
`(web-mode-keyword-face ((,class (:foreground ,keyword)))) `(helm-candidate-number ((,class (:foreground ,bg1 :background ,fg1))))
`(web-mode-doctype-face ((,class (:inherit ,font-lock-comment-face)))) `(helm-separator ((,class (:foreground ,type :background ,bg1))))
`(web-mode-function-name-face ((,class (:inherit ,font-lock-function-name-face)))) `(helm-time-zone-current ((,class (:foreground ,builtin :background ,bg1))))
`(web-mode-string-face ((,class (:foreground ,str)))) `(helm-time-zone-home ((,class (:foreground ,type :background ,bg1))))
`(web-mode-type-face ((,class (:inherit ,font-lock-type-face)))) `(helm-buffer-not-saved ((,class (:foreground ,type :background ,bg1))))
`(web-mode-html-attr-name-face ((,class (:foreground ,func)))) `(helm-buffer-process ((,class (:foreground ,builtin :background ,bg1))))
`(web-mode-html-attr-value-face ((,class (:foreground ,keyword)))) `(helm-buffer-saved-out ((,class (:foreground ,fg1 :background ,bg1))))
`(web-mode-warning-face ((,class (:inherit ,font-lock-warning-face)))) `(helm-buffer-size ((,class (:foreground ,fg1 :background ,bg1))))
`(web-mode-html-tag-face ((,class (:foreground ,builtin)))) `(helm-ff-directory ((,class (:foreground ,func :background ,bg1 :weight bold))))
`(jde-java-font-lock-package-face ((t (:foreground ,var)))) `(helm-ff-file ((,class (:foreground ,fg1 :background ,bg1 :weight normal))))
`(jde-java-font-lock-public-face ((t (:foreground ,keyword)))) `(helm-ff-executable ((,class (:foreground ,key2 :background ,bg1 :weight normal))))
`(jde-java-font-lock-private-face ((t (:foreground ,keyword)))) `(helm-ff-invalid-symlink ((,class (:foreground ,key3 :background ,bg1 :weight bold))))
`(jde-java-font-lock-constant-face ((t (:foreground ,const)))) `(helm-ff-symlink ((,class (:foreground ,keyword :background ,bg1 :weight bold))))
`(jde-java-font-lock-modifier-face ((t (:foreground ,key3)))) `(helm-ff-prefix ((,class (:foreground ,bg1 :background ,keyword :weight normal))))
`(jde-java-font-lock-number-face ((t (:foreground ,var)))))) `(helm-grep-cmd-line ((,class (:foreground ,fg1 :background ,bg1))))
`(helm-grep-file ((,class (:foreground ,fg1 :background ,bg1))))
`(helm-grep-finish ((,class (:foreground ,fg2 :background ,bg1))))
`(helm-grep-lineno ((,class (:foreground ,fg1 :background ,bg1))))
`(helm-grep-match ((,class (:foreground nil :background nil :inherit helm-match))))
`(helm-grep-running ((,class (:foreground ,func :background ,bg1))))
`(helm-moccur-buffer ((,class (:foreground ,func :background ,bg1))))
`(helm-source-go-package-godoc-description ((,class (:foreground ,str))))
`(helm-bookmark-w3m ((,class (:foreground ,type))))
;;; company
`(company-echo-common ((,class (:foreground ,bg1 :background ,fg1))))
`(company-preview ((,class (:background ,bg1 :foreground ,key2))))
`(company-preview-common ((,class (:foreground ,bg2 :foreground ,fg3))))
`(company-preview-search ((,class (:foreground ,type :background ,bg1))))
`(company-scrollbar-bg ((,class (:background ,bg3))))
`(company-scrollbar-fg ((,class (:foreground ,keyword))))
`(company-tooltip ((,class (:foreground ,fg2 :background ,bg1 :bold t))))
`(company-tooltop-annotation ((,class (:foreground ,const))))
`(company-tooltip-common ((,class ( :foreground ,fg3))))
`(company-tooltip-common-selection ((,class (:foreground ,str))))
`(company-tooltip-mouse ((,class (:inherit highlight))))
`(company-tooltip-selection ((,class (:background ,bg3 :foreground ,fg3))))
`(company-template-field ((,class (:inherit region))))
;;; web-mode
`(web-mode-builtin-face ((,class (:inherit ,font-lock-builtin-face))))
`(web-mode-comment-face ((,class (:inherit ,font-lock-comment-face))))
`(web-mode-constant-face ((,class (:inherit ,font-lock-constant-face))))
`(web-mode-keyword-face ((,class (:foreground ,keyword))))
`(web-mode-doctype-face ((,class (:inherit ,font-lock-comment-face))))
`(web-mode-function-name-face ((,class (:inherit ,font-lock-function-name-face))))
`(web-mode-string-face ((,class (:foreground ,str))))
`(web-mode-type-face ((,class (:inherit ,font-lock-type-face))))
`(web-mode-html-attr-name-face ((,class (:foreground ,func))))
`(web-mode-html-attr-value-face ((,class (:foreground ,keyword))))
`(web-mode-warning-face ((,class (:inherit ,font-lock-warning-face))))
`(web-mode-html-tag-face ((,class (:foreground ,builtin))))
;;; jde-java
`(jde-java-font-lock-package-face ((t (:foreground ,var))))
`(jde-java-font-lock-public-face ((t (:foreground ,keyword))))
`(jde-java-font-lock-private-face ((t (:foreground ,keyword))))
`(jde-java-font-lock-constant-face ((t (:foreground ,const))))
`(jde-java-font-lock-modifier-face ((t (:foreground ,key3))))
`(jde-java-font-lock-number-face ((t (:foreground ,var))))))
;;;###autoload ;;;###autoload
(when load-file-name (when load-file-name

View File

@ -7,7 +7,6 @@
;; URL: https://gitlab.com/fmartingr/emacs-gameboy-theme ;; URL: https://gitlab.com/fmartingr/emacs-gameboy-theme
;; Version: 0.1 ;; Version: 0.1
;; Package-Requires: ((emacs "24")) ;; Package-Requires: ((emacs "24"))
;; Created with emacs-theme-generator, https://github.com/mswift42/theme-creator.
;; This program is free software: you can redistribute it and/or modify ;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by ;; it under the terms of the GNU General Public License as published by
@ -25,230 +24,278 @@
;; This file is not part of Emacs. ;; This file is not part of Emacs.
;;; Commentary: ;;; Commentary:
;; With some help from: emacs-theme-generator, https://github.com/mswift42/theme-creator.
;;; Code: ;;; Code:
(deftheme gameboy-original) (deftheme gameboy-original "Gameboy (original)")
(let ((class '((class color) (min-colors 89)))
(fg1 "#0F380D") ;;; Color palette
(fg2 "#22461e") (let ((class '((class color) (min-colors 89)))
(fg3 "#34552f") (fg1 "#0F380D")
(fg4 "#466440") (fg2 "#22461e")
(bg1 "#9BBC0F") (fg3 "#34552f")
(bg2 "#8eab13") (fg4 "#466440")
(bg3 "#819b15") (bg1 "#9BBC0F")
(bg4 "#748b17") (bg2 "#8eab13")
(key2 "#457043") (bg3 "#819b15")
(key3 "#2a552a") (bg4 "#748b17")
(builtin "#2E602E") (key2 "#457043")
(keyword "#2E602E") (key3 "#2a552a")
(const "#2E602E") (builtin "#2E602E")
(comment "#8BAC0F") (keyword "#2E602E")
(func "#2E602E") (const "#2E602E")
(str "#0F380D") (comment "#8BAC0F")
(type "#2E602E") (func "#2E602E")
(var "#2E602E") (str "#0F380D")
(warning "#8BAC0F")) (type "#2E602E")
(custom-theme-set-faces (var "#2E602E")
(warning "#8BAC0F"))
(custom-theme-set-faces
'gameboy-original 'gameboy-original
;;; Basic
`(default ((,class (:background ,bg1 :foreground ,fg1)))) `(default ((,class (:background ,bg1 :foreground ,fg1))))
`(Font-lock-builtin-face ((,class (:foreground ,builtin)))) `(default-italic ((,class (:italic t))))
`(font-lock-comment-face ((,class (:foreground ,comment)))) `(link ((,class (:foreground ,const :underline t))))
`(font-lock-negation-char-face ((,class (:foreground ,const)))) `(warning ((,class (:foreground ,warning))))
`(font-lock-reference-face ((,class (:foreground ,const)))) `(info-quoted-name ((,class (:foreground ,builtin))))
`(font-lock-constant-face ((,class (:foreground ,const)))) `(info-string ((,class (:foreground ,str))))
`(font-lock-doc-face ((,class (:foreground ,comment)))) `(trailing-whitespace ((,class :foreground nil :background ,warning)))
`(font-lock-function-name-face ((,class (:foreground ,func :bold t))))
`(font-lock-keyword-face ((,class (:bold ,class :foreground ,keyword)))) ;;; Font lock
`(font-lock-string-face ((,class (:foreground ,str)))) `(font-lock-builtin-face ((,class (:foreground ,builtin))))
`(font-lock-type-face ((,class (:foreground ,type )))) `(font-lock-comment-face ((,class (:foreground ,comment))))
`(font-lock-variable-name-face ((,class (:foreground ,var)))) `(font-lock-negation-char-face ((,class (:foreground ,const))))
`(font-lock-warning-face ((,class (:foreground ,warning :background ,bg2)))) `(font-lock-reference-face ((,class (:foreground ,const))))
`(region ((,class (:background ,fg1 :foreground ,bg1)))) `(font-lock-constant-face ((,class (:foreground ,const))))
`(highlight ((,class (:foreground ,fg3 :background ,bg3)))) `(font-lock-doc-face ((,class (:foreground ,comment))))
`(hl-line ((,class (:background ,bg2)))) `(font-lock-function-name-face ((,class (:foreground ,func :bold t))))
`(fringe ((,class (:background ,bg2 :foreground ,fg4)))) `(font-lock-keyword-face ((,class (:bold ,class :foreground ,keyword))))
`(cursor ((,class (:background ,bg3)))) `(font-lock-string-face ((,class (:foreground ,str))))
`(show-paren-match-face ((,class (:background ,warning)))) `(font-lock-type-face ((,class (:foreground ,type ))))
`(isearch ((,class (:bold t :foreground ,warning :background ,bg3)))) `(font-lock-variable-name-face ((,class (:foreground ,var))))
`(mode-line ((,class (:box (:line-width 1 :color nil) :bold t :foreground ,fg4 :background ,bg2)))) `(font-lock-warning-face ((,class (:foreground ,warning :background ,bg2))))
`(mode-line-inactive ((,class (:box (:line-width 1 :color nil :style pressed-button) :foreground ,key3 :background ,bg1 :weight normal))))
`(mode-line-buffer-id ((,class (:bold t :foreground ,func :background nil)))) ;;; Regions
`(mode-line-highlight ((,class (:foreground ,keyword :box nil :weight bold)))) `(region ((,class (:background ,fg1 :foreground ,bg1))))
`(mode-line-emphasis ((,class (:foreground ,fg1)))) `(highlight ((,class (:foreground ,fg3 :background ,bg3))))
`(vertical-border ((,class (:foreground ,fg3)))) `(hl-line ((,class (:background ,bg2))))
`(minibuffer-prompt ((,class (:bold t :foreground ,keyword)))) `(fringe ((,class (:background ,bg2 :foreground ,fg4))))
`(default-italic ((,class (:italic t)))) `(cursor ((,class (:background ,bg3))))
`(link ((,class (:foreground ,const :underline t)))) `(show-paren-match-face ((,class (:background ,warning))))
`(org-code ((,class (:foreground ,fg2)))) `(isearch ((,class (:bold t :foreground ,warning :background ,bg3))))
`(org-hide ((,class (:foreground ,fg4))))
`(org-level-1 ((,class (:bold t :foreground ,fg2 :height 1.1)))) ;;; Modeline
`(org-level-2 ((,class (:bold nil :foreground ,fg3)))) `(mode-line ((,class (:box (:line-width 1 :color nil) :bold t :foreground ,fg4 :background ,bg2))))
`(org-level-3 ((,class (:bold t :foreground ,fg4)))) `(mode-line-inactive ((,class (:box (:line-width 1 :color nil :style pressed-button) :foreground ,key3 :background ,bg1 :weight normal))))
`(org-level-4 ((,class (:bold nil :foreground ,bg4)))) `(mode-line-buffer-id ((,class (:bold t :foreground ,func :background nil))))
`(org-date ((,class (:underline t :foreground ,var) ))) `(mode-line-highlight ((,class (:foreground ,keyword :box nil :weight bold))))
`(org-footnote ((,class (:underline t :foreground ,fg4)))) `(mode-line-emphasis ((,class (:foreground ,fg1))))
`(org-link ((,class (:underline t :foreground ,type ))))
`(org-special-keyword ((,class (:foreground ,func)))) ;;; UI
`(org-block ((,class (:foreground ,fg3)))) `(vertical-border ((,class (:foreground ,fg3))))
`(org-quote ((,class (:inherit org-block :slant italic)))) `(minibuffer-prompt ((,class (:bold t :foreground ,keyword))))
`(org-verse ((,class (:inherit org-block :slant italic))))
`(org-todo ((,class (:box (:line-width 1 :color ,fg3) :foreground ,keyword :bold t)))) ;;; org-mode
`(org-done ((,class (:box (:line-width 1 :color ,bg3) :bold t :foreground ,bg4)))) `(org-code ((,class (:foreground ,fg2))))
`(org-warning ((,class (:underline t :foreground ,warning)))) `(org-hide ((,class (:foreground ,fg4))))
`(org-agenda-structure ((,class (:weight bold :foreground ,fg3 :box (:color ,fg4) :background ,bg3)))) `(org-level-1 ((,class (:bold t :foreground ,fg2 :height 1.1))))
`(org-agenda-date ((,class (:foreground ,var :height 1.1 )))) `(org-level-2 ((,class (:bold nil :foreground ,fg3))))
`(org-agenda-date-weekend ((,class (:weight normal :foreground ,fg4)))) `(org-level-3 ((,class (:bold t :foreground ,fg4))))
`(org-agenda-date-today ((,class (:weight bold :foreground ,keyword :height 1.4)))) `(org-level-4 ((,class (:bold nil :foreground ,bg4))))
`(org-agenda-done ((,class (:foreground ,bg4)))) `(org-date ((,class (:underline t :foreground ,var) )))
`(org-scheduled ((,class (:foreground ,type)))) `(org-footnote ((,class (:underline t :foreground ,fg4))))
`(org-scheduled-today ((,class (:foreground ,func :weight bold :height 1.2)))) `(org-link ((,class (:underline t :foreground ,type ))))
`(org-ellipsis ((,class (:foreground ,builtin)))) `(org-special-keyword ((,class (:foreground ,func))))
`(org-verbatim ((,class (:foreground ,fg4)))) `(org-block ((,class (:foreground ,fg3))))
`(org-document-info-keyword ((,class (:foreground ,func)))) `(org-quote ((,class (:inherit org-block :slant italic))))
`(font-latex-bold-face ((,class (:foreground ,type)))) `(org-verse ((,class (:inherit org-block :slant italic))))
`(font-latex-italic-face ((,class (:foreground ,key3 :italic t)))) `(org-todo ((,class (:box (:line-width 1 :color ,fg3) :foreground ,keyword :bold t))))
`(font-latex-string-face ((,class (:foreground ,str)))) `(org-done ((,class (:box (:line-width 1 :color ,bg3) :bold t :foreground ,bg4))))
`(font-latex-match-reference-keywords ((,class (:foreground ,const)))) `(org-warning ((,class (:underline t :foreground ,warning))))
`(font-latex-match-variable-keywords ((,class (:foreground ,var)))) `(org-agenda-structure ((,class (:weight bold :foreground ,fg3 :box (:color ,fg4) :background ,bg3))))
`(ido-only-match ((,class (:foreground ,warning)))) `(org-agenda-date ((,class (:foreground ,var :height 1.1 ))))
`(org-sexp-date ((,class (:foreground ,fg4)))) `(org-agenda-date-weekend ((,class (:weight normal :foreground ,fg4))))
`(ido-first-match ((,class (:foreground ,keyword :bold t)))) `(org-agenda-date-today ((,class (:weight bold :foreground ,keyword :height 1.4))))
`(gnus-header-content ((,class (:foreground ,keyword)))) `(org-agenda-done ((,class (:foreground ,bg4))))
`(gnus-header-from ((,class (:foreground ,var)))) `(org-scheduled ((,class (:foreground ,type))))
`(gnus-header-name ((,class (:foreground ,type)))) `(org-scheduled-today ((,class (:foreground ,func :weight bold :height 1.2))))
`(gnus-header-subject ((,class (:foreground ,func :bold t)))) `(org-ellipsis ((,class (:foreground ,builtin))))
`(mu4e-view-url-number-face ((,class (:foreground ,type)))) `(org-verbatim ((,class (:foreground ,fg4))))
`(mu4e-cited-1-face ((,class (:foreground ,fg2)))) `(org-document-info-keyword ((,class (:foreground ,func))))
`(mu4e-cited-7-face ((,class (:foreground ,fg3))))
`(mu4e-header-marks-face ((,class (:foreground ,type)))) ;;; Latex
`(ffap ((,class (:foreground ,fg4)))) `(font-latex-bold-face ((,class (:foreground ,type))))
`(js2-private-function-call ((,class (:foreground ,const)))) `(font-latex-italic-face ((,class (:foreground ,key3 :italic t))))
`(js2-jsdoc-html-tag-delimiter ((,class (:foreground ,str)))) `(font-latex-string-face ((,class (:foreground ,str))))
`(js2-jsdoc-html-tag-name ((,class (:foreground ,key2)))) `(font-latex-match-reference-keywords ((,class (:foreground ,const))))
`(js2-external-variable ((,class (:foreground ,type )))) `(font-latex-match-variable-keywords ((,class (:foreground ,var))))
`(js2-function-param ((,class (:foreground ,const))))
`(js2-jsdoc-value ((,class (:foreground ,str)))) ;;; ido
`(js2-private-member ((,class (:foreground ,fg3)))) `(ido-only-match ((,class (:foreground ,warning))))
`(js3-warning-face ((,class (:underline ,keyword)))) `(org-sexp-date ((,class (:foreground ,fg4))))
`(js3-error-face ((,class (:underline ,warning)))) `(ido-first-match ((,class (:foreground ,keyword :bold t))))
`(js3-external-variable-face ((,class (:foreground ,var))))
`(js3-function-param-face ((,class (:foreground ,key3)))) ;;; gnus
`(js3-jsdoc-tag-face ((,class (:foreground ,keyword)))) `(gnus-header-content ((,class (:foreground ,keyword))))
`(js3-instance-member-face ((,class (:foreground ,const)))) `(gnus-header-from ((,class (:foreground ,var))))
`(warning ((,class (:foreground ,warning)))) `(gnus-header-name ((,class (:foreground ,type))))
`(ac-completion-face ((,class (:underline t :foreground ,keyword)))) `(gnus-header-subject ((,class (:foreground ,func :bold t))))
`(info-quoted-name ((,class (:foreground ,builtin))))
`(info-string ((,class (:foreground ,str)))) ;;; mu4e
`(icompletep-determined ((,class :foreground ,builtin))) `(mu4e-view-url-number-face ((,class (:foreground ,type))))
`(undo-tree-visualizer-current-face ((,class :foreground ,builtin))) `(mu4e-cited-1-face ((,class (:foreground ,fg2))))
`(undo-tree-visualizer-default-face ((,class :foreground ,fg2))) `(mu4e-cited-7-face ((,class (:foreground ,fg3))))
`(undo-tree-visualizer-unmodified-face ((,class :foreground ,var))) `(mu4e-header-marks-face ((,class (:foreground ,type))))
`(undo-tree-visualizer-register-face ((,class :foreground ,type)))
`(slime-repl-inputed-output-face ((,class (:foreground ,type)))) ;;; ffap
`(trailing-whitespace ((,class :foreground nil :background ,warning))) `(ffap ((,class (:foreground ,fg4))))
`(rainbow-delimiters-depth-1-face ((,class :foreground ,fg1)))
`(rainbow-delimiters-depth-2-face ((,class :foreground ,type))) ;;; js2-mode
`(rainbow-delimiters-depth-3-face ((,class :foreground ,var))) `(js2-private-function-call ((,class (:foreground ,const))))
`(rainbow-delimiters-depth-4-face ((,class :foreground ,const))) `(js2-jsdoc-html-tag-delimiter ((,class (:foreground ,str))))
`(rainbow-delimiters-depth-5-face ((,class :foreground ,keyword))) `(js2-jsdoc-html-tag-name ((,class (:foreground ,key2))))
`(rainbow-delimiters-depth-6-face ((,class :foreground ,fg1))) `(js2-external-variable ((,class (:foreground ,type ))))
`(rainbow-delimiters-depth-7-face ((,class :foreground ,type))) `(js2-function-param ((,class (:foreground ,const))))
`(rainbow-delimiters-depth-8-face ((,class :foreground ,var))) `(js2-jsdoc-value ((,class (:foreground ,str))))
`(magit-item-highlight ((,class :background ,bg3))) `(js2-private-member ((,class (:foreground ,fg3))))
`(magit-section-heading ((,class (:foreground ,keyword :weight bold))))
`(magit-hunk-heading ((,class (:background ,bg3)))) ;;; js3-mode
`(magit-section-highlight ((,class (:background ,bg2)))) `(js3-warning-face ((,class (:underline ,keyword))))
`(magit-hunk-heading-highlight ((,class (:background ,bg3)))) `(js3-error-face ((,class (:underline ,warning))))
`(magit-diff-context-highlight ((,class (:background ,bg3 :foreground ,fg3)))) `(js3-external-variable-face ((,class (:foreground ,var))))
`(magit-diffstat-added ((,class (:foreground ,type)))) `(js3-function-param-face ((,class (:foreground ,key3))))
`(magit-diffstat-removed ((,class (:foreground ,var)))) `(js3-jsdoc-tag-face ((,class (:foreground ,keyword))))
`(magit-process-ok ((,class (:foreground ,func :weight bold)))) `(js3-instance-member-face ((,class (:foreground ,const))))
`(magit-process-ng ((,class (:foreground ,warning :weight bold))))
`(magit-branch ((,class (:foreground ,const :weight bold)))) ;;; auto complete
`(magit-log-author ((,class (:foreground ,fg3)))) `(ac-completion-face ((,class (:underline t :foreground ,keyword))))
`(magit-hash ((,class (:foreground ,fg2)))) `(icompletep-determined ((,class :foreground ,builtin)))
`(magit-diff-file-header ((,class (:foreground ,fg2 :background ,bg3))))
`(lazy-highlight ((,class (:foreground ,fg2 :background ,bg3)))) ;;; undo tree
`(term ((,class (:foreground ,fg1 :background ,bg1)))) `(undo-tree-visualizer-current-face ((,class :foreground ,builtin)))
`(term-color-black ((,class (:foreground ,bg3 :background ,bg3)))) `(undo-tree-visualizer-default-face ((,class :foreground ,fg2)))
`(term-color-blue ((,class (:foreground ,func :background ,func)))) `(undo-tree-visualizer-unmodified-face ((,class :foreground ,var)))
`(term-color-red ((,class (:foreground ,keyword :background ,bg3)))) `(undo-tree-visualizer-register-face ((,class :foreground ,type)))
`(term-color-green ((,class (:foreground ,type :background ,bg3))))
`(term-color-yellow ((,class (:foreground ,var :background ,var)))) ;;; Rainbow delimiters
`(term-color-magenta ((,class (:foreground ,builtin :background ,builtin)))) `(rainbow-delimiters-depth-1-face ((,class :foreground ,fg1)))
`(term-color-cyan ((,class (:foreground ,str :background ,str)))) `(rainbow-delimiters-depth-2-face ((,class :foreground ,type)))
`(term-color-white ((,class (:foreground ,fg2 :background ,fg2)))) `(rainbow-delimiters-depth-3-face ((,class :foreground ,var)))
`(rainbow-delimiters-unmatched-face ((,class :foreground ,warning))) `(rainbow-delimiters-depth-4-face ((,class :foreground ,const)))
`(helm-header ((,class (:foreground ,fg2 :background ,bg1 :underline nil :box nil)))) `(rainbow-delimiters-depth-5-face ((,class :foreground ,keyword)))
`(helm-source-header ((,class (:foreground ,keyword :background ,bg1 :underline nil :weight bold)))) `(rainbow-delimiters-depth-6-face ((,class :foreground ,fg1)))
`(helm-selection ((,class (:background ,bg2 :underline nil)))) `(rainbow-delimiters-depth-7-face ((,class :foreground ,type)))
`(helm-selection-line ((,class (:background ,bg2)))) `(rainbow-delimiters-depth-8-face ((,class :foreground ,var)))
`(helm-visible-mark ((,class (:foreground ,bg1 :background ,bg3)))) `(rainbow-delimiters-unmatched-face ((,class :foreground ,warning)))
`(helm-candidate-number ((,class (:foreground ,bg1 :background ,fg1))))
`(helm-separator ((,class (:foreground ,type :background ,bg1)))) ;;; magit
`(helm-time-zone-current ((,class (:foreground ,builtin :background ,bg1)))) `(magit-item-highlight ((,class :background ,bg3)))
`(helm-time-zone-home ((,class (:foreground ,type :background ,bg1)))) `(magit-section-heading ((,class (:foreground ,keyword :weight bold))))
`(helm-buffer-not-saved ((,class (:foreground ,type :background ,bg1)))) `(magit-hunk-heading ((,class (:background ,bg3))))
`(helm-buffer-process ((,class (:foreground ,builtin :background ,bg1)))) `(magit-section-highlight ((,class (:background ,bg2))))
`(helm-buffer-saved-out ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-hunk-heading-highlight ((,class (:background ,bg3))))
`(helm-buffer-size ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-diff-context-highlight ((,class (:background ,bg3 :foreground ,fg3))))
`(helm-ff-directory ((,class (:foreground ,func :background ,bg1 :weight bold)))) `(magit-diffstat-added ((,class (:foreground ,type))))
`(helm-ff-file ((,class (:foreground ,fg1 :background ,bg1 :weight normal)))) `(magit-diffstat-removed ((,class (:foreground ,var))))
`(helm-ff-executable ((,class (:foreground ,key2 :background ,bg1 :weight normal)))) `(magit-process-ok ((,class (:foreground ,func :weight bold))))
`(helm-ff-invalid-symlink ((,class (:foreground ,key3 :background ,bg1 :weight bold)))) `(magit-process-ng ((,class (:foreground ,warning :weight bold))))
`(helm-ff-symlink ((,class (:foreground ,keyword :background ,bg1 :weight bold)))) `(magit-branch ((,class (:foreground ,const :weight bold))))
`(helm-ff-prefix ((,class (:foreground ,bg1 :background ,keyword :weight normal)))) `(magit-log-author ((,class (:foreground ,fg3))))
`(helm-grep-cmd-line ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-hash ((,class (:foreground ,fg2))))
`(helm-grep-file ((,class (:foreground ,fg1 :background ,bg1)))) `(magit-diff-file-header ((,class (:foreground ,fg2 :background ,bg3))))
`(helm-grep-finish ((,class (:foreground ,fg2 :background ,bg1))))
`(helm-grep-lineno ((,class (:foreground ,fg1 :background ,bg1)))) ;;; lazy highlight
`(helm-grep-match ((,class (:foreground nil :background nil :inherit helm-match)))) `(lazy-highlight ((,class (:foreground ,fg2 :background ,bg3))))
`(helm-grep-running ((,class (:foreground ,func :background ,bg1))))
`(helm-moccur-buffer ((,class (:foreground ,func :background ,bg1)))) ;;; term
`(helm-source-go-package-godoc-description ((,class (:foreground ,str)))) `(term ((,class (:foreground ,fg1 :background ,bg1))))
`(helm-bookmark-w3m ((,class (:foreground ,type)))) `(term-color-black ((,class (:foreground ,bg3 :background ,bg3))))
`(company-echo-common ((,class (:foreground ,bg1 :background ,fg1)))) `(term-color-blue ((,class (:foreground ,func :background ,func))))
`(company-preview ((,class (:background ,bg1 :foreground ,key2)))) `(term-color-red ((,class (:foreground ,keyword :background ,bg3))))
`(company-preview-common ((,class (:foreground ,bg2 :foreground ,fg3)))) `(term-color-green ((,class (:foreground ,type :background ,bg3))))
`(company-preview-search ((,class (:foreground ,type :background ,bg1)))) `(term-color-yellow ((,class (:foreground ,var :background ,var))))
`(company-scrollbar-bg ((,class (:background ,bg3)))) `(term-color-magenta ((,class (:foreground ,builtin :background ,builtin))))
`(company-scrollbar-fg ((,class (:foreground ,keyword)))) `(term-color-cyan ((,class (:foreground ,str :background ,str))))
`(company-tooltip ((,class (:foreground ,fg2 :background ,bg1 :bold t)))) `(term-color-white ((,class (:foreground ,fg2 :background ,fg2))))
`(company-tooltop-annotation ((,class (:foreground ,const))))
`(company-tooltip-common ((,class ( :foreground ,fg3)))) ;;; helm
`(company-tooltip-common-selection ((,class (:foreground ,str)))) `(helm-header ((,class (:foreground ,fg2 :background ,bg1 :underline nil :box nil))))
`(company-tooltip-mouse ((,class (:inherit highlight)))) `(helm-source-header ((,class (:foreground ,keyword :background ,bg1 :underline nil :weight bold))))
`(company-tooltip-selection ((,class (:background ,bg3 :foreground ,fg3)))) `(helm-selection ((,class (:background ,bg2 :underline nil))))
`(company-template-field ((,class (:inherit region)))) `(helm-selection-line ((,class (:background ,bg2))))
`(web-mode-builtin-face ((,class (:inherit ,font-lock-builtin-face)))) `(helm-visible-mark ((,class (:foreground ,bg1 :background ,bg3))))
`(web-mode-comment-face ((,class (:inherit ,font-lock-comment-face)))) `(helm-candidate-number ((,class (:foreground ,bg1 :background ,fg1))))
`(web-mode-constant-face ((,class (:inherit ,font-lock-constant-face)))) `(helm-separator ((,class (:foreground ,type :background ,bg1))))
`(web-mode-keyword-face ((,class (:foreground ,keyword)))) `(helm-time-zone-current ((,class (:foreground ,builtin :background ,bg1))))
`(web-mode-doctype-face ((,class (:inherit ,font-lock-comment-face)))) `(helm-time-zone-home ((,class (:foreground ,type :background ,bg1))))
`(web-mode-function-name-face ((,class (:inherit ,font-lock-function-name-face)))) `(helm-buffer-not-saved ((,class (:foreground ,type :background ,bg1))))
`(web-mode-string-face ((,class (:foreground ,str)))) `(helm-buffer-process ((,class (:foreground ,builtin :background ,bg1))))
`(web-mode-type-face ((,class (:inherit ,font-lock-type-face)))) `(helm-buffer-saved-out ((,class (:foreground ,fg1 :background ,bg1))))
`(web-mode-html-attr-name-face ((,class (:foreground ,func)))) `(helm-buffer-size ((,class (:foreground ,fg1 :background ,bg1))))
`(web-mode-html-attr-value-face ((,class (:foreground ,keyword)))) `(helm-ff-directory ((,class (:foreground ,func :background ,bg1 :weight bold))))
`(web-mode-warning-face ((,class (:inherit ,font-lock-warning-face)))) `(helm-ff-file ((,class (:foreground ,fg1 :background ,bg1 :weight normal))))
`(web-mode-html-tag-face ((,class (:foreground ,builtin)))) `(helm-ff-executable ((,class (:foreground ,key2 :background ,bg1 :weight normal))))
`(jde-java-font-lock-package-face ((t (:foreground ,var)))) `(helm-ff-invalid-symlink ((,class (:foreground ,key3 :background ,bg1 :weight bold))))
`(jde-java-font-lock-public-face ((t (:foreground ,keyword)))) `(helm-ff-symlink ((,class (:foreground ,keyword :background ,bg1 :weight bold))))
`(jde-java-font-lock-private-face ((t (:foreground ,keyword)))) `(helm-ff-prefix ((,class (:foreground ,bg1 :background ,keyword :weight normal))))
`(jde-java-font-lock-constant-face ((t (:foreground ,const)))) `(helm-grep-cmd-line ((,class (:foreground ,fg1 :background ,bg1))))
`(jde-java-font-lock-modifier-face ((t (:foreground ,key3)))) `(helm-grep-file ((,class (:foreground ,fg1 :background ,bg1))))
`(jde-java-font-lock-number-face ((t (:foreground ,var)))))) `(helm-grep-finish ((,class (:foreground ,fg2 :background ,bg1))))
`(helm-grep-lineno ((,class (:foreground ,fg1 :background ,bg1))))
`(helm-grep-match ((,class (:foreground nil :background nil :inherit helm-match))))
`(helm-grep-running ((,class (:foreground ,func :background ,bg1))))
`(helm-moccur-buffer ((,class (:foreground ,func :background ,bg1))))
`(helm-source-go-package-godoc-description ((,class (:foreground ,str))))
`(helm-bookmark-w3m ((,class (:foreground ,type))))
;;; company
`(company-echo-common ((,class (:foreground ,bg1 :background ,fg1))))
`(company-preview ((,class (:background ,bg1 :foreground ,key2))))
`(company-preview-common ((,class (:foreground ,bg2 :foreground ,fg3))))
`(company-preview-search ((,class (:foreground ,type :background ,bg1))))
`(company-scrollbar-bg ((,class (:background ,bg3))))
`(company-scrollbar-fg ((,class (:foreground ,keyword))))
`(company-tooltip ((,class (:foreground ,fg2 :background ,bg1 :bold t))))
`(company-tooltop-annotation ((,class (:foreground ,const))))
`(company-tooltip-common ((,class ( :foreground ,fg3))))
`(company-tooltip-common-selection ((,class (:foreground ,str))))
`(company-tooltip-mouse ((,class (:inherit highlight))))
`(company-tooltip-selection ((,class (:background ,bg3 :foreground ,fg3))))
`(company-template-field ((,class (:inherit region))))
;;; web-mode
`(web-mode-builtin-face ((,class (:inherit ,font-lock-builtin-face))))
`(web-mode-comment-face ((,class (:inherit ,font-lock-comment-face))))
`(web-mode-constant-face ((,class (:inherit ,font-lock-constant-face))))
`(web-mode-keyword-face ((,class (:foreground ,keyword))))
`(web-mode-doctype-face ((,class (:inherit ,font-lock-comment-face))))
`(web-mode-function-name-face ((,class (:inherit ,font-lock-function-name-face))))
`(web-mode-string-face ((,class (:foreground ,str))))
`(web-mode-type-face ((,class (:inherit ,font-lock-type-face))))
`(web-mode-html-attr-name-face ((,class (:foreground ,func))))
`(web-mode-html-attr-value-face ((,class (:foreground ,keyword))))
`(web-mode-warning-face ((,class (:inherit ,font-lock-warning-face))))
`(web-mode-html-tag-face ((,class (:foreground ,builtin))))
;;; jde-java
`(jde-java-font-lock-package-face ((t (:foreground ,var))))
`(jde-java-font-lock-public-face ((t (:foreground ,keyword))))
`(jde-java-font-lock-private-face ((t (:foreground ,keyword))))
`(jde-java-font-lock-constant-face ((t (:foreground ,const))))
`(jde-java-font-lock-modifier-face ((t (:foreground ,key3))))
`(jde-java-font-lock-number-face ((t (:foreground ,var))))))
;;;###autoload ;;;###autoload
(when load-file-name (when load-file-name
(add-to-list 'custom-theme-load-path (add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name)))) (file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'gameboy-original) (provide-theme 'gameboy-original)
;; Local Variables: ;; Local Variables:
;; no-byte-compile: t ;; no-byte-compile: t
;; End: ;; End:
;;; gameboy-original-theme.el ends here ;;; gameboy-original-theme.el ends here