2019-05-14 23:06:58 +00:00
|
|
|
;;; inheritance-dark-theme --- Summary:
|
|
|
|
;;;
|
|
|
|
;;; A bare-bones version of the monokai-dark theme.
|
|
|
|
;;;
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(deftheme inheritance
|
|
|
|
"Theme to make various packages use inherited values for
|
|
|
|
styling from other packages.")
|
|
|
|
|
|
|
|
(custom-theme-set-variables
|
|
|
|
'inheritance
|
|
|
|
'(agda2-highlight-face-groups (quote default-faces)))
|
|
|
|
|
|
|
|
(require 'color)
|
|
|
|
|
|
|
|
(custom-theme-set-faces
|
|
|
|
'inheritance
|
2019-06-05 13:52:02 +00:00
|
|
|
'(agda2-highlight-confluence-problem-face ((t (:inherit flycheck-error))))
|
|
|
|
'(agda2-highlight-keyword-face ((t (:inherit font-lock-keyword-face))))
|
|
|
|
'(company-preview ((t (:inherit shadow))))
|
|
|
|
'(company-preview-common ((t (:inherit company-preview))))
|
|
|
|
'(company-preview-search ((t (:inherit company-preview))))
|
2019-05-14 23:06:58 +00:00
|
|
|
'(company-scrollbar-bg ((t (:inherit mode-line-inactive))))
|
|
|
|
'(company-scrollbar-fg ((t (:inherit mode-line))))
|
|
|
|
'(company-tooltip ((t (:inherit default))))
|
|
|
|
'(company-tooltip-common ((t (:inherit shadow))))
|
|
|
|
'(company-tooltip-selection ((t (:inherit highlight))))
|
2019-06-05 13:52:02 +00:00
|
|
|
'(custom-group-tag ((t (:inherit variable-pitch))))
|
|
|
|
'(custom-group-tag-1 ((t (:inherit variable-pitch))))
|
2019-05-24 07:23:50 +00:00
|
|
|
'(ediff-even-diff-A ((t (:inherit lazy))))
|
|
|
|
'(ediff-even-diff-B ((t (:inherit lazy))))
|
|
|
|
'(ediff-even-diff-C ((t (:inherit lazy))))
|
|
|
|
'(ediff-odd-diff-A ((t (:inherit lazy-highlight))))
|
|
|
|
'(ediff-odd-diff-B ((t (:inherit lazy-highlight))))
|
|
|
|
'(ediff-odd-diff-C ((t (:inherit lazy-highlight))))
|
2019-06-05 13:52:02 +00:00
|
|
|
'(fringe ((t (:inherit \1))))
|
2019-05-14 23:06:58 +00:00
|
|
|
'(ido-indicator ((t (:inherit highlight :width condensed))))
|
|
|
|
'(ido-only-match ((t (:inherit highlight))))
|
2019-05-24 07:23:50 +00:00
|
|
|
'(ido-subdir ((t (:inherit default))))
|
2019-05-14 23:06:58 +00:00
|
|
|
'(js2-error ((t (:inherit error))))
|
|
|
|
'(js2-external-variable ((t (:inherit font-lock-builtin-face))))
|
|
|
|
'(js2-function-param ((t (:inherit font-lock-variable-name-face))))
|
|
|
|
'(js2-instance-member ((t (:inherit font-lock-variable-name-face))))
|
|
|
|
'(js2-jsdoc-html-tag-delimiter ((t (:inherit basic))))
|
|
|
|
'(js2-jsdoc-type ((t (:inherit font-lock-type-face))))
|
2019-05-24 07:23:50 +00:00
|
|
|
; The built-in warning is not appropriate here. It's too strong.
|
2019-06-05 13:52:02 +00:00
|
|
|
'(js2-warning ((t (:inherit flycheck-warning))))
|
|
|
|
'(magit-bisect-bad ((t (:foreground "red"))))
|
|
|
|
'(magit-branch-upstream ((t (:inherit magit-branch-remote :slant italic))))
|
|
|
|
'(show-paren-match-expression ((t (:inherit lazy-highlight))))
|
|
|
|
'(smerge-refined-added ((t (:inherit smerge-refined-change :background "#338033"))))
|
2020-05-25 07:27:59 +00:00
|
|
|
'(smerge-refined-removed ((t (:inherit smerge-refined-change :background "#803333"))))
|
|
|
|
'(typescript-primitive-face ((t (:inherit font-lock-type-face))))
|
|
|
|
'(typescript-this-face ((t (:inherit font-lock-constant-face)))))
|
2019-05-14 23:06:58 +00:00
|
|
|
|
|
|
|
(provide-theme 'inheritance)
|
|
|
|
;;; inheritance-theme.el ends here
|