branch: elpa/moe-theme
commit ab51320cbc6156b807aa133b43b84fb3bc32aa04
Author: kuanyui <[email protected]>
Commit: kuanyui <[email protected]>
1. Some bugs fix
---
README.md | 8 ++------
moe-dark-theme.el | 29 ++++++++++++++++-------------
moe-light-theme.el | 5 ++++-
3 files changed, 22 insertions(+), 20 deletions(-)
diff --git a/README.md b/README.md
index ca57fcfc01..0d3a731c90 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,12 @@
<link href="markdown.css" rel="stylesheet"></link>
# moe-theme
Just another Emacs theme.
-
+
This theme supports Emacs 24 native theme.
#
> I am a blockquote
-## Warranty and License
-This theme is made by an Emacs user who don't understand programming at all
(truly); so,
-*I WILL NOT PROVIDE ANY WARRANTY FOR THIS FREE SOFTWARE.*
**bold**
-*italic*
+*A quick black tux jumps over the lazy dog*
This theme (include pictures) is released under GPL v3.
## Requirements
@@ -25,7 +22,6 @@ Download the one you prefer to `~/.emacs.d/themes`.Then, add
these to your init
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
;;Emacs24之後的theme路徑指定
(load-theme 'moe-dark t)
(enable-theme 'moe-dark)
-
Or you can load theme just by adding:
diff --git a/moe-dark-theme.el b/moe-dark-theme.el
index 2296f0b9f3..65006f5941 100644
--- a/moe-dark-theme.el
+++ b/moe-dark-theme.el
@@ -117,7 +117,7 @@ Moe, moe, chew!")
`(org-scheduled-previously ((,class (:foreground ,red-1))))
`(org-scheduled-today ((,class (:foreground ,blue-1))))
`(org-special-keyword ((,class (:foreground ,yellow-2))))
- `(org-table ((,class (:foreground ,green-2))))
+ `(org-table ((,class (:foreground ,white-1 :background ,black-3))))
`(org-time-grid ((,class (:foreground ,orange-2))))
`(org-upcoming-deadline ((,class (:inherit font-lock-keyword-face))))
`(org-warning ((,class (:bold t :foreground ,red-3 :weight bold))))
@@ -147,18 +147,21 @@ Moe, moe, chew!")
`(undo-tree-visualizer-register-face ((,class (:foreground ,yellow-2))))
;; Markdown-mode
- `(markdown-blockquote-face ((,class (:foreground ,red-2 :italic t))))
+ `(markdown-blockquote-face ((,class (:foreground ,orange-2 :background
,black-3 :italic t))))
`(markdown-bold-face ((,class (:foreground ,white-1 :bold t))))
`(markdown-comment-face ((,class (:foreground ,black-2 :italic t))))
- `(markdown-header-face-1 ((,class (:foreground ,yellow-1 :bold t :height
2.0))))
- `(markdown-header-face-2 ((,class (:foreground ,yellow-1 :bold t :height
1.5))))
- `(markdown-header-face-3 ((,class (:foreground ,yellow-1 :bold t :height
1.2))))
- `(markdown-header-face-4 ((,class (:foreground ,yellow-1 :bold t))))
- `(markdown-header-face-5 ((,class (:foreground ,yellow-1 :bold t))))
- `(markdown-header-face-6 ((,class (:foreground ,yellow-1 :bold t))))
+ `(markdown-header-delimiter-face ((,class (:foreground ,green-3 :bold t))))
+ `(markdown-header-face ((,class (:foreground ,green-2 :bold t))))
+ `(markdown-header-rule-face ((,class (:foreground ,green-2 :bold t))))
+ `(markdown-header-face-1 ((,class (:foreground ,green-2 :bold t :height
2.0))))
+ `(markdown-header-face-2 ((,class (:foreground ,green-2 :bold t :height
1.5))))
+ `(markdown-header-face-3 ((,class (:foreground ,green-2 :bold t :height
1.2))))
+ `(markdown-header-face-4 ((,class (:foreground ,green-2 :bold t))))
+ `(markdown-header-face-5 ((,class (:foreground ,green-2 :bold t))))
+ `(markdown-header-face-6 ((,class (:foreground ,green-2 :bold t))))
`(markdown-link-face ((,class (:foreground ,magenta-1 :underline t))))
- `(markdown-inline-code-face ((,class (:foreground ,blue-1))))
- `(markdown-italic-face ((,class (:foreground ,white-1 :italic t))))
+ `(markdown-inline-code-face ((,class (:foreground ,blue-1 :background
,black-3))))
+ `(markdown-italic-face ((,class (:foreground ,white-1 :italic t :underline
,white-1))))
`(markdown-list-face ((,class (:foreground ,green-2 :bold t))))
`(markdown-math-face ((,class (:foreground ,magenta-1))))
`(markdown-missing-link-face ((,class (:foreground ,red-1 :bold t))))
@@ -241,12 +244,12 @@ Moe, moe, chew!")
`(diredp-date-time ((,class (:foreground ,blue-1 :background ,black-4))))
`(diredp-deletion ((,class (:foreground ,white-1, :background ,red-3))))
`(diredp-deletion-file-name ((,class (:foreground ,red-2))))
- `(diredp-dir-heading ((,class (:foreground ,black-5 :background ,white-1))))
- `(diredp-dir-priv ((,class (:foreground ,blue-1 :bold t))))
+ `(diredp-dir-heading ((,class (:foreground ,black-5 :background ,green-2))))
+ `(diredp-dir-priv ((,class (:foreground ,blue-1 :background ,black-5 :bold
t))))
`(diredp-display-msg ((,class (:foreground ,orange-2))))
`(diredp-executable-tag ((,class (:foreground ,green-2))))
`(diredp-file-name ((,class (:foreground ,white-1))))
- `(diredp-file-suffix ((,class (:foreground ,yellow-0))))
+ `(diredp-file-suffix ((,class (:foreground ,orange-2))))
`(diredp-flag-mark ((,class (:foreground ,white-1 :background ,magenta-3
:bold t))))
`(diredp-flag-mark-line ((,class (:foreground ,black-5 :background
,magenta-1))))
`(diredp-ignored-file-name ((,class (:foreground ,black-2))))
diff --git a/moe-light-theme.el b/moe-light-theme.el
index fa337d1c66..e9ef7a52d0 100644
--- a/moe-light-theme.el
+++ b/moe-light-theme.el
@@ -150,6 +150,9 @@ Moe, moe, chew!")
`(markdown-blockquote-face ((,class (:foreground ,green-3 :background
,green-00 :italic t))))
`(markdown-bold-face ((,class (:foreground ,black-5 :bold t))))
`(markdown-comment-face ((,class (:foreground ,white-3 :italic t))))
+ `(markdown-header-delimiter-face ((,class (:foreground ,orange-3 :bold t))))
+ `(markdown-header-face ((,class (:foreground ,orange-2 :bold t))))
+ `(markdown-header-rule-face ((,class (:foreground ,orange-2 :bold t))))
`(markdown-header-face-1 ((,class (:foreground ,orange-2 :bold t :height
2.0))))
`(markdown-header-face-2 ((,class (:foreground ,orange-2 :bold t :height
1.5))))
`(markdown-header-face-3 ((,class (:foreground ,orange-2 :bold t :height
1.2))))
@@ -158,7 +161,7 @@ Moe, moe, chew!")
`(markdown-header-face-6 ((,class (:foreground ,orange-2 :bold t))))
`(markdown-link-face ((,class (:foreground ,magenta-1 :bold t :underline
,magenta-1))))
`(markdown-inline-code-face ((,class (:foreground ,blue-3 :background
,blue-00))))
- `(markdown-italci-face ((,class (:foreground ,black-5 :italic t))))
+ `(markdown-italic-face ((,class (:foreground ,black-5 :italic t :underline
,black-5))))
`(markdown-list-face ((,class (:foreground ,black-5 :bold t))))
`(markdown-math-face ((,class (:foreground ,purple-2))))
`(markdown-missing-link-face ((,class (:foreground ,red-1 :bold t))))