Refinements and fixes

This commit is contained in:
Protesilaos Stavrou 2019-07-30 10:29:12 +03:00
parent 6e1f665c05
commit 8cd8edfcdd
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
2 changed files with 24 additions and 12 deletions

View file

@ -34,7 +34,7 @@
'modus-operandi
'(default ((t (:foreground "#000000" :background "#ffffff"))))
'(cursor ((t (:background "#000000"))))
'(italic ((t (:foreground "#8b3800"))))
'(italic ((t (:foreground "#8b3800" :slant italic))))
'(warning ((t (:foreground "#8b3800" :weight bold))))
'(escape-glyph ((t (:weight bold :foreground "#714900"))))
'(homoglyph ((t (:foreground "#714900"))))
@ -90,18 +90,24 @@
'(completions-common-part ((t nil)))
'(completions-first-difference ((t (:inherit (bold)))))
'(line-number ((t (:foreground "#5f4d4f" :background "#f3f1f3"))))
'(line-number-current-line ((t (:foreground "#000000" :weight bold)))))
'(line-number-current-line ((t (:foreground "#000000" :weight bold))))
'(markdown-header-face ((t (:weight bold))))
'(markdown-pre-face ((t (:background "#f6f6f6" :foreground "#770044"))))
'(markdown-inline-code-face ((t (:inherit (markdown-pre-face)))))
'(markdown-blockquote-face ((t (:background "#f3f3f3"))))
'(sh-heredoc ((t (:inherit (font-lock-string-face)))))
'(sh-quoted-exec ((t (:inherit (font-lock-builtin-face)))))
'(diff-added ((t (:foreground "#004400" :background "#f3fff3"))))
'(diff-added ((t (:foreground "#006000" :background "#f0fff0"))))
'(diff-indicator-added ((t (:inherit (diff-added)))))
'(diff-changed ((t (:foreground "#555500" :background "#fffef3"))))
'(diff-changed ((t (:foreground "#665500" :background "#ffffee"))))
'(diff-indicator-changed ((t (:inherit (diff-changed)))))
'(diff-removed ((t (:foreground "#880000" :background "#ffe0e0"))))
'(diff-indicator-removed ((t (:inherit (diff-removed)))))
'(diff-file-header ((t (:foreground "#000000" :background "#f3f1f3" :weight bold))))
'(diff-function ((t (:inherit (diff-file-header) :weight normal))))
'(diff-header ((t (:inherit (diff-function)))))
'(diff-hunk-header ((t (:inherit (diff-function)))))
'(diff-index-header ((t (:inherit (diff-file-header) :weight normal))))
)
(provide-theme 'modus-operandi)

View file

@ -90,18 +90,24 @@
'(completions-common-part ((t nil)))
'(completions-first-difference ((t (:inherit (bold)))))
'(line-number ((t (:foreground "#c4bdaf" :background "#202020"))))
'(line-number-current-line ((t (:foreground "#fff4f0" :weight bold)))))
'(line-number-current-line ((t (:foreground "#fff4f0" :weight bold))))
'(markdown-header-face ((t (:weight bold))))
'(markdown-pre-face ((t (:background "#252525" :foreground "#eecccc"))))
'(markdown-inline-code-face ((t (:inherit (markdown-pre-face)))))
'(markdown-blockquote-face ((t (:background "#333333"))))
'(sh-heredoc ((t (:inherit (font-lock-string-face)))))
'(sh-quoted-exec ((t (:inherit (font-lock-builtin-face)))))
'(diff-added ((t (:foreground "#004400" :background "#f3fff3"))))
'(diff-added ((t (:background "#003000" :foreground "#66cc66"))))
'(diff-indicator-added ((t (:inherit (diff-added)))))
'(diff-changed ((t (:foreground "#555500" :background "#fffef3"))))
'(diff-changed ((t (:background "#605500" :foreground "#ffff66"))))
'(diff-indicator-changed ((t (:inherit (diff-changed)))))
'(diff-file-header ((t (:foreground "#000000" :background "#f3f1f3" :weight bold))))
'(diff-removed ((t (:background "#440000" :foreground "#ff8888"))))
'(diff-indicator-removed ((t (:inherit (diff-removed)))))
'(diff-file-header ((t (:background "#333333" :foreground "#f3f1f3" :weight bold))))
'(diff-function ((t (:inherit (diff-file-header) :weight normal))))
'(diff-header ((t (:inherit (diff-function)))))
'(diff-hunk-header ((t (:inherit (diff-function)))))
'(diff-index-header ((t (:inherit (diff-file-header) :weight normal))))
)
(provide-theme 'modus-vivendi)