public
Description: Dotfiles from the 'Murray' box
Homepage:
Clone URL: git://github.com/redpill/dotfiles-murray.git
dotfiles-murray / .emacs-files / emacs-redpill-theme.el
100644 19 lines (16 sloc) 0.351 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(eval-when-compile
  (require 'color-theme))
 
(defun color-theme-redpill ()
  "Deep Blue theme with #242424 background."
  (interactive)
  (color-theme-deep-blue)
  (let ((color-theme-is-cumulative t))
  (color-theme-install
   '(color-theme-redpill
     ;; General
      ((background-color . "#242424"))
    ))
  )
)
 
;;-- Test
(color-theme-redpill)