diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-11-30 16:11:31 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-11-30 16:11:31 -0500 |
commit | 5615a4e90e59b69a8b3208d5d07f1f301073327d (patch) | |
tree | a5b84d936ccb72a03e5c3b4113f087db16e1ab7e | |
parent | a5d38715ae75b1ba6c80fde88b25ea5a7a82cee3 (diff) | |
parent | c87e65fe389b2598a133aa794dfe0fc58abc4731 (diff) | |
download | emacs.d-5615a4e90e59b69a8b3208d5d07f1f301073327d.tar.gz |
Merge branch 'stekene-theme'
-rw-r--r-- | Cask | 1 | ||||
-rw-r--r-- | custom.el | 4 | ||||
-rw-r--r-- | lisp/init-appearance.el | 38 |
3 files changed, 40 insertions, 3 deletions
@@ -42,6 +42,7 @@ (depends-on "s") (depends-on "smex") (depends-on "stan-mode") +(depends-on "stekene-theme") (depends-on "subr+") (depends-on "wrap-region") (depends-on "yaml-mode") @@ -9,6 +9,4 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. - '(dired-subtree-depth-1-face ((t (:background "gray80")))) - '(dired-subtree-depth-2-face ((t (:background "gray90")))) - '(dired-subtree-depth-3-face ((t (:background "gray95"))))) +) diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el index 9f2553a..31518e1 100644 --- a/lisp/init-appearance.el +++ b/lisp/init-appearance.el @@ -11,5 +11,43 @@ (column-number-mode t) (size-indication-mode t) +(load-theme 'stekene-light t) + +(custom-theme-set-faces + 'stekene-light + '(default ((t (:background "white")))) + '(outline-1 ((t (:inherit font-lock-function-name-face)))) + '(outline-2 ((t (:inherit font-lock-doc-face)))) + '(outline-3 ((t (:inherit font-lock-constant-face)))) + '(org-todo ((t (:foreground "#ba2727" :background "gray85")))) + '(org-done ((t (:foreground "#557755" :background "gray85")))) + '(org-date ((t (:inherit font-lock-builtin-face)))) + '(org-upcoming-deadline ((t (:inherit font-lock-constant-face)))) + '(org-warning ((t (:inherit font-lock-string-face)))) + '(org-agenda-date-today ((t (:weight semi-bold)))) + '(org-agenda-date-weekend ((t (:inherit org-agenda-date)))) + '(org-agenda-structure ((t (:foreground "gray40")))) + '(org-agenda-date ((t (:inherit default)))) + '(org-scheduled ((t (:inherit font-lock-string-face)))) + '(org-agenda-calendar-event ((t (:inherit font-lock-function-name-face)))) + '(gnus-group-mail-1-empty ((t (:inherit font-lock-string-face)))) + '(gnus-group-mail-2-empty ((t (:inherit font-lock-function-name-face)))) + '(gnus-group-mail-3-empty ((t (:inherit font-lock-type-face)))) + '(gnus-group-mail-1 ((t (:inherit gnus-group-mail-1-empty :weight semi-bold)))) + '(gnus-group-mail-2 ((t (:inherit gnus-group-mail-2-empty :weight semi-bold)))) + '(gnus-group-mail-3 ((t (:inherit gnus-group-mail-3-empty :weight semi-bold)))) + '(gnus-subject ((t (:inherit font-lock-doc-face)))) + '(gnus-button ((t (:inherit default)))) + '(gnus-cite-1 ((t (:inherit font-lock-function-name-face)))) + '(gnus-cite-2 ((t (:inherit font-lock-string-face)))) + '(gnus-header-name ((t (:inherit font-lock-constant-face)))) + '(gnus-header-content ((t (:inherit default)))) + ;; Darken a bit (was gray40). + '(font-lock-keyword-face ((t (:foreground "gray33"))))) + +(custom-set-faces + '(dired-subtree-depth-1-face ((t (:background "gray80")))) + '(dired-subtree-depth-2-face ((t (:background "gray90")))) + '(dired-subtree-depth-3-face ((t (:background "gray95"))))) (provide 'init-appearance) |