Skip to content

Commit

Permalink
Don’t use off-black color
Browse files Browse the repository at this point in the history
(it’s too light and I’ve gotten used to the pitch black.)
  • Loading branch information
Nikolai Weibull committed Aug 4, 2012
1 parent ba11206 commit 0573f32
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions dircolors
Expand Up @@ -20,8 +20,8 @@ ENDCODE 


# 1.2.1 General # 1.2.1 General


NORMAL 8 NORMAL 0
FILE 8 FILE 0
DIR 12 DIR 12
LINK 14 LINK 14
FIFO 11 FIFO 11
Expand Down
15 changes: 8 additions & 7 deletions share/emacs/site-lisp/themes/now-theme.el
Expand Up @@ -4,6 +4,7 @@
(let ((custom--inhibit-theme-enable nil) ; Work around broken custom-theme-set-faces/theme-enable/face-spec-recalc (let ((custom--inhibit-theme-enable nil) ; Work around broken custom-theme-set-faces/theme-enable/face-spec-recalc
(class '((class color) (min-colors 89))) (class '((class color) (min-colors 89)))
(gui '((type x w32 mac))) (gui '((type x w32 mac)))
(black "#000000")
(red "#951616") (red "#951616")
(green "#257325") (green "#257325")
(blue "#2f5a9b") (blue "#2f5a9b")
Expand All @@ -29,11 +30,11 @@
`(compilation-column-number ((,class (:inherit compilation-line-number)))) `(compilation-column-number ((,class (:inherit compilation-line-number))))
`(compilation-info ((,class (:foreground ,light-blue)))) `(compilation-info ((,class (:foreground ,light-blue))))
`(compilation-line-number ((,class (:foreground ,brown)))) ; TODO Use (nil) instead `(compilation-line-number ((,class (:foreground ,brown)))) ; TODO Use (nil) instead
`(cursor ((,class (:foreground ,off-white :background ,off-black)))) `(cursor ((,class (:foreground ,off-white :background ,black))))
`(custom-button ((,gui (:box (:line-width 1 :color "#656a6f") :background "#e9ebed" :foreground ,off-black)))) `(custom-button ((,gui (:box (:line-width 1 :color "#656a6f") :background "#e9ebed" :foreground ,black))))
`(custom-button-mouse ((,gui (:box (:line-width 1 :color "#478cba") :background "#e9ebed" :foreground ,off-black)))) `(custom-button-mouse ((,gui (:box (:line-width 1 :color "#478cba") :background "#e9ebed" :foreground ,black))))
`(custom-button-pressed ((,gui (:box (:line-width 1 :color "#35576d") :background "#d4d6da" :foreground ,off-black)))) `(custom-button-pressed ((,gui (:box (:line-width 1 :color "#35576d") :background "#d4d6da" :foreground ,black))))
`(default ((,gui (:foreground ,off-black :background ,off-white)))) `(default ((,gui (:foreground ,black :background ,off-white))))
`(diff-added ((,class (:foreground ,green)))) `(diff-added ((,class (:foreground ,green))))
`(diff-context ((,class (nil)))) `(diff-context ((,class (nil))))
`(diff-file-header ((,class (:inherit diff-header)))) `(diff-file-header ((,class (:inherit diff-header))))
Expand All @@ -59,10 +60,10 @@
`(fringe ((,class (:background "grey95")))) `(fringe ((,class (:background "grey95"))))
`(header-line ((,class (:inherit mode-line)))) `(header-line ((,class (:inherit mode-line))))
`(highlight ((,class (:foreground ,off-white :background ,blue)))) `(highlight ((,class (:foreground ,off-white :background ,blue))))
`(isearch ((,class (:foreground ,off-black :background ,lighter-yellow)))) `(isearch ((,class (:foreground ,black :background ,lighter-yellow))))
`(isearch-fail ((,class (:inherit error)))) `(isearch-fail ((,class (:inherit error))))
`(italic ((,class (nil)))) `(italic ((,class (nil))))
`(lazy-highlight ((,class (:foreground ,off-black :background ,light-yellow)))) `(lazy-highlight ((,class (:foreground ,black :background ,light-yellow))))
`(minibuffer-prompt ((,class (nil)))) `(minibuffer-prompt ((,class (nil))))
`(match ((,class (:inherit isearch)))) `(match ((,class (:inherit isearch))))
`(mode-line ((,class (:box nil :background "grey70")))) `(mode-line ((,class (:box nil :background "grey70"))))
Expand Down

0 comments on commit 0573f32

Please sign in to comment.