summaryrefslogtreecommitdiff
path: root/.emacs.d/blueish-theme.el
blob: 632d75132189f73215bda983f0570d3a5d2f753c (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;; ---------------------------
;;
;; Blueish: a blueish theme.
;;
;; Based on the fogus theme from sublime-themes.
;;
;; ----------------------------

(unless (>= emacs-major-version 24)
  (error "requires Emacs 24 or later."))

(deftheme blueish
  "A blueish theme")

(custom-theme-set-faces
   'blueish

   ;; ----------------- Frame stuff --------------------
   `(default ((((type graphic)) (:background "#091419" :foreground "#c0d0d6"))))
   `(cursor  ((t (:background "#F8F8F0"))))
   `(hl-line ((t (:background "#666666"))))
   `(modeline ((t (:background "#183c66" :foreground "white"))))
   '(mode-line-inactive ((t (:background "#2f2f3b" :foreground "#d0dfe6" :box nil))))
   `(mode-line ((t (:box nil :foreground "white" :background "#183c66"))))
   `(fringe ((((type graphic)) (:background "#14191f"))))
   ;; Dir-ed search prompt
   `(minibuffer-prompt ((default (:foreground "white"))))
   ;; Highlight region color
   `(region ((t (:foreground "#FFE792" :background "#1b232c"))))

   ;; ---------------- Code Highlighting ---------------
   ;; Builtin
   `(font-lock-builtin-face ((t (:foreground "#6ee2ff"))))
   ;; Comments
   `(font-lock-comment-face ((t (:foreground "#709999"))))
   ;; Function names
   `(font-lock-function-name-face ((t (:foreground "#effbff"))))
   ;; Keywords
   `(font-lock-keyword-face ((t (:foreground "#748aa6"))))
   ;; Strings
   `(font-lock-string-face ((t (:foreground "#6ea0d0"))))
   ;; Variables
   `(font-lock-variable-name-face ((t (:foreground "#d0dfe6"))))
   `(font-lock-type-face ((t (:foreground "#95cc5e"))))
   `(font-lock-warning-face ((t (:foreground "white" :bold t))))

   ;; ---------------- Package Specific Stuff -----------
   ;; circe
   `(circe-my-message-face ((t (:foreground "#d0ffff"))))
   ;; ido
   `(ido-only-match ((t (:foreground "#66ff66"))))
   `(ido-subdir ((t (:foreground "#ffaaaa"))))
   ;; mail
   `(message-header-name ((t (:foreground "#66FF99"))))
   ;; w3m
   '(w3m-form ((t (:foreground "#ffdddd" :underline t))))
   '(w3m-form-button ((t (:background "#363b40" :foreground "#c0c4c8" :box (:line-width 2 :color "#202020" :style released-button)))))
   )


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

(provide-theme 'blueish)

;; Local Variables:
;; no-byte-compile: t
;; End: