simple-light-theme.el (1993B)
1 (deftheme simple-light 2 "minimalistic theme for simplicity. 3 4 Follows the philosphy of there should only be 3 main colours. 5 1 for code, 1 for comments, and 1 for strings. 6 These rules guarantee a theme will be simple and usable.") 7 8 (custom-theme-set-faces 9 'simple-light 10 `(default ((t (:foreground "gray10" :background "gray90")))) 11 `(cursor ((t (:background "black")))) 12 `(region ((t (:background "gray65")))) 13 `(highlight ((t (:background "gray80")))) 14 `(font-lock-builtin-face ((t (:foreground "gray10")))) 15 `(font-lock-comment-face ((t (:foreground "gray50")))) 16 `(font-lock-doc-face ((t (:foreground "forest green")))) 17 `(font-lock-function-name-face ((t (:foreground "gray10")))) 18 `(font-lock-keyword-face ((t (:foreground "gray10")))) 19 `(font-lock-string-face ((t (:foreground "forest green")))) 20 `(font-lock-type-face ((t (:foreground "gray10")))) 21 `(font-lock-variable-name-face ((t (:foreground "gray10")))) 22 `(font-lock-constant-face ((t (:foreground "gray10")))) 23 `(mode-line ((t (:background "gray75")))) 24 `(error ((t (:foreground "firebrick")))) 25 ;; org 26 `(org-table ((t (:background "gray80" :foreground "gray10")))) 27 `(org-block ((t (:background "gray80" :foreground "gray10")))) 28 `(org-document-title ((t (:foreground "gray10")))) 29 `(org-hide ((t (:foreground "gray90")))) 30 `(org-document-info ((t (:foreground "gray10")))) 31 ;; eshell 32 `(eshell-prompt ((t (:foreground "firebrick")))) 33 `(eshell-ls-symlink ((t (:foreground "dark cyan")))) 34 `(eshell-ls-directory ((t (:foreground "royal blue")))) 35 ;; dired 36 `(dired-directory ((t (:foreground "blue")))) 37 `(dired-symlink ((t (:foreground "dark cyan")))) 38 ;; vertico 39 `(vertico-current ((t (:background "gray65")))) 40 ;; ido 41 `(ido-subdir ((t (:foreground "dark cyan")))) 42 ;; iedit 43 `(iedit-occurrence ((t (:background "navy"))))) 44 45 ;;;###autoload 46 (when load-file-name 47 (add-to-list 'custom-theme-load-path 48 (file-name-as-directory (file-name-directory load-file-name)))) 49 50 (provide-theme 'simple-light)