.emacs.d/themes/db-dark-theme.el

38 lines
2.2 KiB
EmacsLisp
Raw Normal View History

2017-12-02 13:09:56 +01:00
(deftheme db-dark
2019-04-07 14:15:03 +02:00
"To be used as an additional theme on top of a dark theme.
Known to work well with the `solarized-dark theme.")
2017-07-16 18:07:00 +02:00
(custom-theme-set-faces
2017-12-02 13:09:56 +01:00
'db-dark
2017-07-16 18:07:00 +02:00
'(aw-leading-char-face ((t (:foreground "red" :height 1.0))))
'(cursor ((t (:background "red" :foreground "#002b36" :inverse-video t :weight ultra-bold))))
'(emms-browser-artist-face ((t (:foreground "RoyalBlue1"))))
'(emms-browser-composer-face ((t (:foreground "RoyalBlue1"))))
'(emms-browser-performer-face ((t (:foreground "#aaaaff"))))
'(emms-browser-track-face ((t (:foreground "DodgerBlue3" :height 1.0))))
'(emms-playlist-selected-face ((t (:foreground "medium sea green"))))
'(org-agenda-date ((t (:background "#002b36" :foreground "#586e75" :inverse-video nil :box (:line-width 2 :color "#002b36") :overline nil :slant normal :weight bold :height 1.2))))
'(org-agenda-dimmed-todo-face ((t nil)))
'(org-agenda-structure ((t (:foreground "#93a1a1" :inverse-video nil :box (:line-width 2 :color "#002b36") :underline nil :slant normal :weight bold :height 1.1))))
'(org-clock-overlay ((t (:background "black"))))
'(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal))))
2017-07-16 18:07:00 +02:00
'(org-headline-done ((t (:foreground "#859900"))))
'(outline-4 ((t (:inherit org-level-4))))
'(flyspell-duplicate ((t (:underline (:color "orange red" :style wave)))))
'(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))
'(gnus-group-mail-2 ((t (:inherit outline-4 :weight normal))))
'(gnus-group-mail-3 ((t (:inherit outline-5 :weight normal))))
2017-07-16 18:07:00 +02:00
'(gnus-group-news-3 ((t (:inherit outline-5 :weight normal))))
'(gnus-summary-high-ancient ((t (:foreground "#268bd2" :weight normal))))
'(gnus-summary-high-read ((t (:foreground "#859900" :weight normal))))
'(gnus-summary-high-unread ((t (:foreground "#839496" :weight normal))))
'(gnus-summary-low-ancient ((t (:foreground "dim gray"))))
'(gnus-summary-low-unread ((t (:foreground "dim gray"))))
2020-12-04 17:40:55 +01:00
'(default ((t (:height 107 :family "DejaVu Sans Mono"))))
2020-06-27 11:08:17 +02:00
'(fixed-pitch ((t (:family "DejaVu Sans Mono"))))
'(variable-pitch ((t (:weight normal :height 1.3 :family "Bitstream Vera Serif")))))
2017-07-16 18:07:00 +02:00
(message "Loaded db-dark theme.")
2017-12-02 13:09:56 +01:00
(provide-theme 'db-dark)