summary refs log tree commit diff
path: root/emacs.d/lib/basic-theme.el
blob: 66c8ad1043c8bf33e9e92b8b296d307e133695cc (plain) (blame)
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
51
52
53
54
55
56
57
58
59
;;; basic-theme.el --- Black and light yellow theme without syntax highlighting

;;; Code:

(deftheme basic)

(defvar basic-faces
  `(default
    font-lock-builtin-face
    font-lock-constant-face
    font-lock-function-name-face
    font-lock-keyword-face
    font-lock-negation-char-face
    font-lock-preprocessor-face
    font-lock-regexp-grouping-backslash
    font-lock-regexp-grouping-construct
    font-lock-string-face
    font-lock-type-face
    font-lock-variable-name-face
    font-lock-warning-face
    fringe
    sh-quoted-exec))

(let ((bg          "#fdfaf5")
      (fg          "#000000")
      (highlight   "#fffaaa")
      (modeline-fg "#ffffff")
      (modeline-bg "#e0ebf5"))

  (apply 'custom-theme-set-faces 'basic
         `(default   ((t (:foreground ,fg :background ,bg))))
         `(cursor    ((t (:background ,fg :foreground ,bg))))
         `(highlight ((t (:background ,highlight))))

         `(whitespace-indentation ((t (:background "LightYellow" :foreground "lightgray"))))

         `(mode-line           ((t (:foreground: ,fg :background ,modeline-bg))))
         `(mode-line-inactive  ((t (:foreground "grey20" :background "grey90"))))

         `(show-paren-match ((t (:background "turquoise"))))
         `(hl-line ((t (:background "grey90"))))

         `(font-lock-comment-face           ((t (:foreground ,fg :weight bold))))
         `(font-lock-comment-delimiter-face ((t (:foreground ,fg :weight bold))))
         `(font-lock-doc-face               ((t (:foreground ,fg :weight bold))))
         `(font-lock-doc-string-face        ((t (:foreground ,fg :weight bold))))

         `(region ((t (:background ,highlight :foreground ,fg))))

         (mapcar (lambda (n) `(,n ((t (:background ,bg :foreground ,fg))))) basic-faces)))

;;;###autoload
(when load-file-name
  (add-to-list 'custom-theme-load-path
               (file-name-as-directory (file-name-directory load-file-name))))

(provide-theme 'basic)

;;; basic-theme.el ends here