-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisual.el
41 lines (37 loc) · 1.66 KB
/
visual.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(defun my-zenburn ()
"Apply Zenburn with my settings."
(interactive)
(add-to-list 'custom-theme-load-path
(concat emacs-dir "/site-lisp/zenburn"))
(require 'zenburn-theme)
(load-theme 'zenburn t)
(custom-set-faces
'(cursor ((t (:background "red") )) )
'(highlight-current-line-face ((t (:background "gray35"))))
'(org-checkbox ((t (:foreground nil :inherit org-todo))))
)
)
(defun my-solarized ()
"Apply Solarized light with my settings."
(interactive)
(load-theme 'solarized-light t)
(custom-set-faces
'(cursor ((t (:background "red" :foreground "red"))))
'(highlight-current-line-face ((t (:background "moccasin")))
'(mode-line ((t (:background "Black" :foreground "#a4a097" :inverse-video t :box nil :underline nil :slant normal :weight normal)))) )
'(mode-line ((t (:background "Black" :foreground "#a4a097" :inverse-video t :box nil :underline nil :slant normal :weight normal))))
'(mode-line-highlight ((t (:box (:line-width 2 :color "#d1cdc1" :style released-button)))))
'(mode-line-inactive ((t (:background "Brown" :foreground "#d1cdc1" :inverse-video t :box nil :underline nil :slant normal :weight normal))))
'(org-checkbox ((t (:background "#d6d0be" :foreground "#805c64" :box (:line-width 1 :style released-button)))))
'(org-link ((t (:foreground "#21867a" :underline t))))
)
)
(defun my-solarized-boot ()
"Apply Solarized light at startup time."
(interactive)
;; Hmm..?
(add-to-list 'custom-theme-load-path (concat emacs-dir "/site-lisp/solarized"))
(my-solarized) )
;; If modern, we'd like our color theme early.
(my-zenburn)
(provide 'visual)