branch: elpa/moe-theme
commit da8fe2e0958c265fb75afd4d99f9674a33beb018
Author: kuanyui <[email protected]>
Commit: kuanyui <[email protected]>
Add face for hlinum.el.
---
moe-dark-theme.el | 3 ++-
moe-light-theme.el | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/moe-dark-theme.el b/moe-dark-theme.el
index 6972c7101c..9ba3e3faf9 100644
--- a/moe-dark-theme.el
+++ b/moe-dark-theme.el
@@ -30,7 +30,7 @@ Moe, moe, kyun!")
(custom-theme-set-faces
'moe-dark
;; Ensure sufficient contrast on low-color terminals.
- `(default ((((class color) (min-colors 4096)) ; Why the background under
gui becomes #2f2f2f?
+ `(default ((((class color) (min-colors 4096))
(:foreground ,white-1 :background ,black-5))
(((class color) (min-colors 256))
(:foreground ,white-1 :background ,black-5))
@@ -41,6 +41,7 @@ Moe, moe, kyun!")
;; Highlighting faces
`(fringe ((,class (:foreground ,black-3 :background ,black-2))))
`(linum ((,class (:foreground ,white-1 :background ,black-2))))
+ `(linum-highlight-face ((,class (:background ,white-1 :foreground
,black-2))))
`(highlight ((,class (:background ,black-3))))
`(hl-line ((,class (:background ,black-3))))
`(region ((,class (:foreground ,black-3 :background ,green-2))))
diff --git a/moe-light-theme.el b/moe-light-theme.el
index d5589526f0..13029ff963 100644
--- a/moe-light-theme.el
+++ b/moe-light-theme.el
@@ -41,6 +41,7 @@ Moe, moe, kyun!")
;; Highlighting faces
`(fringe ((,class (:foreground ,black-1 :background "#d7d7af"))))
`(linum ((,class (:foreground "#87875f" :background "#d7d7af"))))
+ `(linum-highlight-face ((,class (:background "#87875f" :foreground
"#d7d7af"))))
`(highlight ((,class (:background ,green-0))))
`(hl-line ((,class (:background ,green-00)))) ; Embedded strings of IM
(e.g. fcitx) would be very unreadable... orz
`(region ((,class (:foreground ,white-0 :background ,blue-1))))
@@ -463,7 +464,7 @@ Moe, moe, kyun!")
;; fix wrong default face
(if window-system
(progn
- (set-background-color "#ffffd7")
+ (set-background-color "#ffffe0")
(set-foreground-color "#5f5f5f")))
(provide-theme 'moe-light)