diff options
author | David Robillard <d@drobilla.net> | 2016-06-10 15:37:24 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-06-10 15:37:24 -0400 |
commit | 8466ca93cd9c1db7f2664e89987fa3378267f18b (patch) | |
tree | fc5a06818392b56d9de66dd591f1f763655c81fb | |
parent | f240948003ebcd01db3faf132603c4e11ca44191 (diff) | |
download | dotfiles-8466ca93cd9c1db7f2664e89987fa3378267f18b.tar.gz dotfiles-8466ca93cd9c1db7f2664e89987fa3378267f18b.tar.bz2 dotfiles-8466ca93cd9c1db7f2664e89987fa3378267f18b.zip |
Use more consistent colour names
-rw-r--r-- | emacs.d/init.el | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 024ed88..ece63e5 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -99,31 +99,31 @@ ;; If there is more than one, they won't work right. '(default ((t (:inherit nil :stipple nil :background "#141414" :foreground "#C3D1D1" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 120 :width normal :foundry "unknown" :family "DejaVu Sans Mono")))) '(bold ((t (:weight bold)))) - '(compilation-column-number ((t (:foreground "gray40")))) + '(compilation-column-number ((t (:foreground "grey40")))) '(cursor ((t (:background "grey80")))) '(diff-added ((t (:foreground "#859900")))) '(diff-file-header ((((class color) (min-colors 88) (background dark)) (:weight bold)))) '(diff-header ((((class color) (min-colors 88) (background dark)) (:foreground "#6C71C4")))) '(diff-refine-added ((t (:inherit diff-refine-change :foreground "green")))) - '(diff-refine-change ((t (:background "gray15")))) + '(diff-refine-change ((t (:background "grey15")))) '(diff-refine-removed ((t (:inherit diff-refine-change :foreground "red")))) '(diff-removed ((t (:foreground "#D30102")))) '(dired-directory ((t (:foreground "#268BD2")))) - '(diredp-compressed-file-suffix ((t (:foreground "gray50")))) + '(diredp-compressed-file-suffix ((t (:foreground "grey50")))) '(diredp-date-time ((t (:foreground "#6c71c4")))) '(diredp-dir-heading ((t (:foreground "#4E9A06")))) '(diredp-dir-name ((t (:foreground "#268BD2")))) '(diredp-dir-priv ((t (:foreground "#3465A4")))) '(diredp-exec-priv ((t (:foreground "#859900")))) - '(diredp-file-name ((t (:foreground "gray90")))) - '(diredp-file-suffix ((t (:foreground "gray70")))) + '(diredp-file-name ((t (:foreground "grey90")))) + '(diredp-file-suffix ((t (:foreground "grey70")))) '(diredp-ignored-file-name ((t (:foreground "#586E75")))) '(diredp-no-priv ((t nil))) - '(diredp-number ((t (:foreground "gray50")))) + '(diredp-number ((t (:foreground "grey50")))) '(diredp-rare-priv ((t (:foreground "#32E2E2")))) - '(diredp-read-priv ((t (:foreground "gray70")))) + '(diredp-read-priv ((t (:foreground "grey70")))) '(diredp-symlink ((t (:foreground "#32E2E2")))) - '(diredp-write-priv ((t (:foreground "gray90")))) + '(diredp-write-priv ((t (:foreground "grey90")))) '(erc-action-face ((t (:slant italic)))) '(erc-current-nick-face ((t (:foreground "#2AA198" :weight bold)))) '(erc-input-face ((t (:foreground "#CB4B16")))) @@ -134,6 +134,7 @@ '(erc-timestamp-face ((t (:foreground "#859900")))) '(error ((t (:foreground "#DC322F" :weight bold)))) '(escape-glyph ((((background dark)) (:foreground "cyan")))) + '(eshell-prompt ((t (:foreground "#859900" :weight bold)))) '(font-lock-comment-face ((t (:foreground "#6c71c4")))) '(font-lock-constant-face ((((class color) (min-colors 88) (background dark)) (:weight bold)))) '(font-lock-doc-face ((t (:inherit font-lock-string-face :foreground "#6C71C4")))) @@ -170,7 +171,7 @@ '(powerline-active2 ((t (:inherit mode-line :background "#2D3232")))) '(powerline-inactive2 ((t (:inherit mode-line-inactive :background "#272A2A")))) '(region ((t (:background "#455900")))) - '(smerge-refined-change ((t (:background "gray20")))) + '(smerge-refined-change ((t (:background "grey20")))) '(spaceline-highlight-face ((t (:background "#272A2A" :foreground "#FFFFFF" :inherit (quote mode-line))))) '(spaceline-modified ((t (:background "#A66" :foreground "#3E3D31" :inherit (quote mode-line))))) '(spaceline-unmodified ((t (:background "#777" :foreground "#3E3D31" :inherit (quote mode-line))))) |