forked from coderifous/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy-colors.el
44 lines (35 loc) · 1.13 KB
/
my-colors.el
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
;;; Pretty colors
(add-to-list 'load-path (expand-file-name "~/.emacs.d/vendor/color-theme"))
(require 'color-theme)
(eval-after-load "color-theme"
'(progn
(color-theme-initialize)
(color-theme-hober)))
;; (load-file "~/.emacs.d/vendor/color-theme-arjen/color-theme-arjen.el")
;; (require 'color-theme-arjen)
(load-file "~/.emacs.d/vendor/color-theme-ir-black/color-theme-ir-black.el")
;; (color-theme-reset-faces)
;; My current favorite color-theme
(color-theme-ir-black)
;; (color-theme-arjen)
;; Color-schemes that I thought were pleasing to the eye. Most others are
;; pretty ugly.
;; Dark Backgrounds
;; (color-theme-classic)
;; (color-theme-dark-laptop)
;; (color-theme-clarity)
;; (color-theme-goldenrod)
;; (color-theme-billw)
;; (color-theme-gnome2)
;; Light Backgrounds
;; (color-theme-sitaramv-nt)
;; (color-theme-pierson)
;; (color-theme-rotor)
;; (color-theme-emacs-21)
;; (color-theme-gtk-ide)
;; Cursor and region color overrides after switching to Emacs 23 on OSX
;; (set-cursor-color "#014C88")
(set-cursor-color "#666666")
(blink-cursor-mode)
(set-face-foreground 'region nil)
(set-face-background 'region "#3D2101")