47 lines
2.0 KiB
EmacsLisp
47 lines
2.0 KiB
EmacsLisp
;;; my-base16-dark-theme.el --- Base16 Dark Theme -*- lexical-binding: t -*-
|
|
|
|
;;; Commentary:
|
|
;; A green base16 dark theme base on solarized-theme
|
|
|
|
;;; Code:
|
|
|
|
(require 'solarized)
|
|
(require 'my-base16-palette)
|
|
(eval-when-compile
|
|
(require 'solarized-palettes))
|
|
|
|
(deftheme my-base16-dark "A Base16 dark theme using Solarized framework.")
|
|
|
|
(solarized-with-color-variables-with-palette
|
|
'dark
|
|
'my-base16-dark
|
|
my-base16-dark-core-palette
|
|
'((custom-theme-set-faces
|
|
theme-name
|
|
`(org-level-2 ((,class (:foreground ,green :height 1.05))))
|
|
`(org-level-3 ((,class (:foreground ,blue))))
|
|
`(org-level-6 ((,class (:foreground ,green))))
|
|
`(org-level-8 ((,class (:foreground ,blue))))
|
|
`(org-done ((,class (:foreground ,green :weight bold))))
|
|
`(org-headline-done ((,class (:foreground ,green))))
|
|
`(org-block-begin-line ((,class (:foreground ,base01 :underline t :slant italic :extend t))))
|
|
`(org-block-end-line ((,class (:foreground ,base01 :overline t :slant italic :extend t))))
|
|
`(org-priority ((,class (:foreground ,green :weight bold))))
|
|
`(org-checkbox ((,class (:foreground ,base0 :weight bold))))
|
|
`(font-lock-keyword-face ((,class (:foreground ,cyan :weight bold))))
|
|
`(font-lock-doc-face ((,class (:foreground ,green :slant normal))))
|
|
`(font-lock-string-face ((,class (:foreground ,green))))
|
|
`(dashboard-footer-face ((,class (:foreground ,blue))))
|
|
`(dashboard-text-banner ((,class (:foreground ,green))))
|
|
`(dashboard-heading ((,class (:foreground ,green :weight bold))))
|
|
`(dirvish-file-time ((,class (:foreground ,base01))))
|
|
`(dired-header ((,class (:foreground ,green))))
|
|
`(mode-line ((,class (:foreground ,base0 :background ,base02))))
|
|
`(mode-line-inactive ((,class (:foreground ,base01 :background ,base03))))
|
|
`(jinx-misspelled ((,class (:underline (:style dashes :color ,yellow)))))
|
|
`(vertico-current ((,class (:background ,base02 :extend t :underline nil)))))))
|
|
|
|
(provide-theme 'my-base16-dark)
|
|
|
|
;;; my-base16-dark-theme.el ends here
|