diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-02-28 13:53:19 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-02-28 13:54:26 -0500 |
commit | 4fb3e466416c6b7cc2d296d7e39faaae7f1ee64b (patch) | |
tree | caa0e9d968733e3e99c8c75588bc3376c470a34d /.emacs.d/themes/ryanakca-theme.el | |
parent | Drop any reference to mew mail (diff) |
X emacs doesn't handle xterm colours (color-NNN), switch to hex
Diffstat (limited to '.emacs.d/themes/ryanakca-theme.el')
-rw-r--r-- | .emacs.d/themes/ryanakca-theme.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.emacs.d/themes/ryanakca-theme.el b/.emacs.d/themes/ryanakca-theme.el index 5742167..994c203 100644 --- a/.emacs.d/themes/ryanakca-theme.el +++ b/.emacs.d/themes/ryanakca-theme.el @@ -3,7 +3,7 @@ (custom-theme-set-faces 'ryanakca - '(default ((t (:inherit nil :stipple nil :background "color-232" :foreground "color-255" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 83 :width normal :foundry "unknown" :family "Inconsolata")))) + '(default ((t (:inherit nil :stipple nil :background "#080808" :foreground "#eeeeee" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 83 :width normal :foundry "unknown" :family "Inconsolata")))) '(cursor ((t (:background "green" :foreground "black")))) '(fixed-pitch ((t (:family "courier")))) '(variable-pitch ((t (:family "helv")))) @@ -15,8 +15,8 @@ '(secondary-selection ((t (:foreground "#f6f3e8" :background "#333366")))) '(trailing-whitespace ((t (:background "#a40000")))) '(font-lock-builtin-face ((t (:foreground "LightCoral")))) - '(font-lock-comment-delimiter-face ((t (:inherit font-lock-comment-face :foreground "color-27")))) - '(font-lock-comment-face ((t (:foreground "color-27" :slant oblique)))) + '(font-lock-comment-delimiter-face ((t (:inherit font-lock-comment-face :foreground "#005fff")))) + '(font-lock-comment-face ((t (:foreground "#005fff" :slant oblique)))) '(font-lock-constant-face ((t (:foreground "orchid" :weight bold)))) '(font-lock-doc-face ((t (:slant oblique :foreground "moccasin" :inherit (font-lock-string-face))))) '(font-lock-function-name-face ((t (:foreground "deep sky blue" :weight bold :height 1.1)))) @@ -30,8 +30,8 @@ '(font-lock-variable-name-face ((t (:weight bold :foreground "SeaGreen2")))) '(font-lock-warning-face ((t (:inherit error :foreground "red" :weight bold)))) '(button ((t (:weight bold :underline t :box (:line-width 2 :color "grey" :style released-button) :foreground "#f6f3e8" :background "#333333" :inherit (link))))) - '(link ((t (:foreground "color-159" :underline t)))) - '(link-visited ((t (:underline t :foreground "color-153" :inherit link)))) + '(link ((t (:foreground "#afffff" :underline t)))) + '(link-visited ((t (:underline t :foreground "#afd7ff" :inherit link)))) '(fringe ((t (:foreground "Wheat" :background "black")))) '(header-line ((t (:height 0.9 :box (:line-width -1 :color "grey20" :style released-button) :inverse-video t :foreground "#e7f6da" :background "#303030" :inherit (mode-line))))) '(tooltip ((t (:family "helv" :foreground "black" :background "lightyellow" :inherit (variable-pitch))))) @@ -40,7 +40,7 @@ '(mode-line-emphasis ((t (:weight bold)))) '(mode-line-highlight ((t (:box (:line-width 2 :color "grey40" :style released-button))))) '(mode-line-inactive ((t (:height 0.9 :weight light :box (:line-width 1 :color "gray40" :style nil) :foreground "black" :background "gray40" :inherit (mode-line))))) - '(isearch ((t (:background "color-183" :foreground "color-52")))) + '(isearch ((t (:background "#d7afff" :foreground "#5f0000")))) '(isearch-fail ((((class color) (min-colors 88) (background light)) (:background "RosyBrown1")) (((class color) (min-colors 88) (background dark)) (:background "red4")) (((class color) (min-colors 16)) (:background "red")) (((class color) (min-colors 8)) (:background "red")) (((class color grayscale)) (:foreground "grey")) (t (:inverse-video t)))) '(lazy-highlight ((t (:foreground "white" :background "cadetblue")))) '(match ((t (:background "DeepPink4")))) |