blob: 9822ed2e554e30192c0d72cac9cf791bea5fce11 (
plain)
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
42
43
44
45
46
47
48
49
50
|
(deftheme simple-light
"minimalistic theme for simplicity.
Follows the philosphy of there should only be 3 main colours.
1 for code, 1 for comments, and 1 for strings.
These rules guarantee a theme will be simple and usable.")
(custom-theme-set-faces
'simple-light
`(default ((t (:foreground "gray10" :background "gray90"))))
`(cursor ((t (:background "black"))))
`(region ((t (:background "gray65"))))
`(highlight ((t (:background "gray80"))))
`(font-lock-builtin-face ((t (:foreground "gray10"))))
`(font-lock-comment-face ((t (:foreground "gray50"))))
`(font-lock-doc-face ((t (:foreground "forest green"))))
`(font-lock-function-name-face ((t (:foreground "gray10"))))
`(font-lock-keyword-face ((t (:foreground "gray10"))))
`(font-lock-string-face ((t (:foreground "forest green"))))
`(font-lock-type-face ((t (:foreground "gray10"))))
`(font-lock-variable-name-face ((t (:foreground "gray10"))))
`(font-lock-constant-face ((t (:foreground "gray10"))))
`(mode-line ((t (:background "gray75"))))
`(error ((t (:foreground "firebrick"))))
;; org
`(org-table ((t (:background "gray80" :foreground "gray10"))))
`(org-block ((t (:background "gray80" :foreground "gray10"))))
`(org-document-title ((t (:foreground "gray10"))))
`(org-hide ((t (:foreground "gray90"))))
`(org-document-info ((t (:foreground "gray10"))))
;; eshell
`(eshell-prompt ((t (:foreground "firebrick"))))
`(eshell-ls-symlink ((t (:foreground "dark cyan"))))
`(eshell-ls-directory ((t (:foreground "royal blue"))))
;; dired
`(dired-directory ((t (:foreground "blue"))))
`(dired-symlink ((t (:foreground "dark cyan"))))
;; vertico
`(vertico-current ((t (:background "gray65"))))
;; ido
`(ido-subdir ((t (:foreground "dark cyan"))))
;; iedit
`(iedit-occurrence ((t (:background "navy")))))
;;;###autoload
(when load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide-theme 'simple-light)
|