emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/monokai-theme ec28161 043/207: Merge pull request #28 from


From: ELPA Syncer
Subject: [nongnu] elpa/monokai-theme ec28161 043/207: Merge pull request #28 from chptx/master
Date: Thu, 21 Oct 2021 18:07:28 -0400 (EDT)

branch: elpa/monokai-theme
commit ec28161d0a1b240a040919cfaab0f63dc7b534d3
Merge: fb21e20 72ba937
Author: Kelvin Smith <onekelvinsmith@gmail.com>
Commit: Kelvin Smith <onekelvinsmith@gmail.com>

    Merge pull request #28 from chptx/master
    
    fix issue #26
---
 monokai-theme.el | 98 ++++++++++++++++++++++++++++----------------------------
 1 file changed, 49 insertions(+), 49 deletions(-)

diff --git a/monokai-theme.el b/monokai-theme.el
index 0c3642d..67e2b02 100644
--- a/monokai-theme.el
+++ b/monokai-theme.el
@@ -4556,54 +4556,54 @@ Also affects 'linum-mode' background."
 
    ;; syslog-mode
    `(syslog-ip-face
-     '((,class (:background unspecified
-                            :foreground ,yellow))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-yellow))))
+     ((,class (:background unspecified
+                           :foreground ,yellow))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-yellow))))
 
    `(syslog-hour-face
-     '((,class (:background unspecified
-                            :foreground ,green))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-green))))
+     ((,class (:background unspecified
+                           :foreground ,green))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-green))))
 
    `(syslog-error-face
-     '((,class (:background unspecified
-                            :foreground ,red
-                            :weight bold))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-red
-                                     :weight bold))))
+     ((,class (:background unspecified
+                           :foreground ,red
+                           :weight bold))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-red
+                                    :weight bold))))
 
    `(syslog-warn-face
-     '((,class (:background unspecified
-                            :foreground ,orange
-                            :weight bold))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-orange
-                                     :weight bold))))
+     ((,class (:background unspecified
+                           :foreground ,orange
+                           :weight bold))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-orange
+                                    :weight bold))))
 
    `(syslog-info-face
-     '((,class (:background unspecified
-                            :foreground ,blue
-                            :weight bold))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-blue
-                                     :weight bold))))
+     ((,class (:background unspecified
+                           :foreground ,blue
+                           :weight bold))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-blue
+                                    :weight bold))))
 
    `(syslog-debug-face
-     '((,class (:background unspecified
-                            :foreground ,cyan
-                            :weight bold))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-cyan
-                                     :weight bold))))
+     ((,class (:background unspecified
+                           :foreground ,cyan
+                           :weight bold))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-cyan
+                                    :weight bold))))
 
    `(syslog-su-face
-     '((,class (:background unspecified
-                            :foreground ,magenta))
-       (,terminal-class (:background unspecified
-                                     :foreground ,terminal-magenta))))
+     ((,class (:background unspecified
+                           :foreground ,magenta))
+      (,terminal-class (:background unspecified
+                                    :foreground ,terminal-magenta))))
 
    ;; table
    `(table-cell
@@ -4661,11 +4661,11 @@ Also affects 'linum-mode' background."
       (,terminal-class (:foreground ,terminal-monokai-emph
                                     :background ,terminal-monokai-fg))))
 
-   '(term-default-fg-color
+   `(term-default-fg-color
      ((,class (:inherit term-color-white))
       (,terminal-class (:inherit term-color-white))))
 
-   '(term-default-bg-color
+   `(term-default-bg-color
      ((,class (:inherit term-color-black))
       (,terminal-class (:inherit term-color-black))))
 
@@ -5334,12 +5334,12 @@ Also affects 'linum-mode' background."
    `(magit-diff-use-overlays nil)
 
    ;; highlight-changes
-   `(highlight-changes-colors '(,magenta ,violet))
+   `(highlight-changes-colors (,magenta ,violet))
 
    ;; highlight-tail
    `(highlight-tail-colors
-     '((,monokai-hl . 0)(,green-lc . 20)(,cyan-lc . 30)(,blue-lc . 50)
-       (,yellow-lc . 60)(,orange-lc . 70)(,magenta-lc . 85)(,monokai-hl . 
100)))
+     ((,monokai-hl . 0)(,green-lc . 20)(,cyan-lc . 30)(,blue-lc . 50)
+      (,yellow-lc . 60)(,orange-lc . 70)(,magenta-lc . 85)(,monokai-hl . 100)))
 
 
    ;; vc
@@ -5367,14 +5367,14 @@ Also affects 'linum-mode' background."
 
    ;; weechat
    `(weechat-color-list
-     '(unspecified ,monokai-bg ,monokai-hl
-                   ,red-d ,red
-                   ,green-d ,green
-                   ,yellow-d ,yellow
-                   ,blue-d ,blue
-                   ,magenta-d ,magenta
-                   ,cyan-d ,cyan
-                   ,monokai-fg ,monokai-emph))))
+     (unspecified ,monokai-bg ,monokai-hl
+                  ,red-d ,red
+                  ,green-d ,green
+                  ,yellow-d ,yellow
+                  ,blue-d ,blue
+                  ,magenta-d ,magenta
+                  ,cyan-d ,cyan
+                  ,monokai-fg ,monokai-emph))))
 
 ;;;###autoload
 (when (and (boundp 'custom-theme-load-path) load-file-name)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]