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

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

[nongnu] elpa/moe-theme 06235c61f3 336/352: (Maybe) Fix background of fo


From: ELPA Syncer
Subject: [nongnu] elpa/moe-theme 06235c61f3 336/352: (Maybe) Fix background of font-lock. issue #103
Date: Fri, 7 Jan 2022 04:00:03 -0500 (EST)

branch: elpa/moe-theme
commit 06235c61f332763cd98f47f4e2c91cfdb4466180
Author: ono ono <azazabc123@gmail.com>
Commit: ono ono <azazabc123@gmail.com>

    (Maybe) Fix background of font-lock. issue #103
---
 moe-dark-theme.el  | 32 ++++++++++++++++----------------
 moe-light-theme.el | 32 ++++++++++++++++----------------
 2 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/moe-dark-theme.el b/moe-dark-theme.el
index e945ab89f4..1412af820b 100644
--- a/moe-dark-theme.el
+++ b/moe-dark-theme.el
@@ -74,22 +74,22 @@ Moe, moe, kyun!")
   (custom-theme-set-faces
    'moe-dark
    ;; Font lock faces
-   `(font-lock-builtin-face              ((,class (:foreground 
,moe-dark-builtin                  ))))
-   `(font-lock-comment-delimiter-face    ((,class (:foreground 
,moe-dark-comment-delimiter        :slant italic))))
-   `(font-lock-comment-face              ((,class (:foreground 
,moe-dark-comment                  :slant italic))))
-   `(font-lock-constant-face             ((,class (:foreground 
,moe-dark-constant                 ))))
-   `(font-lock-doc-face                  ((,class (:foreground ,moe-dark-doc   
                   ))))
-   `(font-lock-doc-string-face           ((,class (:foreground 
,moe-dark-doc-string               ))))
-   `(font-lock-function-name-face        ((,class (:foreground 
,moe-dark-function-name            ))))
-   `(font-lock-keyword-face              ((,class (:foreground 
,moe-dark-keyword                  ))))
-   `(font-lock-negation-char-face        ((,class (:foreground 
,moe-dark-negation-char            ))))
-   `(font-lock-preprocessor-face         ((,class (:foreground 
,moe-dark-preprocessor             ))))
-   `(font-lock-regexp-grouping-backslash ((,class (:foreground 
,moe-dark-regexp-grouping-backslash))))
-   `(font-lock-regexp-grouping-construct ((,class (:foreground 
,moe-dark-regexp-grouping-construct))))
-   `(font-lock-string-face               ((,class (:foreground 
,moe-dark-string                   ))))
-   `(font-lock-type-face                 ((,class (:foreground ,moe-dark-type  
                   ))))
-   `(font-lock-variable-name-face        ((,class (:foreground 
,moe-dark-variable-name            ))))
-   `(font-lock-warning-face              ((,class (:foreground 
,moe-dark-warning               :weight bold ))))
+   `(font-lock-builtin-face              ((,class (:background nil :foreground 
,moe-dark-builtin                  ))))
+   `(font-lock-comment-delimiter-face    ((,class (:background nil :foreground 
,moe-dark-comment-delimiter        :slant italic))))
+   `(font-lock-comment-face              ((,class (:background nil :foreground 
,moe-dark-comment                  :slant italic))))
+   `(font-lock-constant-face             ((,class (:background nil :foreground 
,moe-dark-constant                 ))))
+   `(font-lock-doc-face                  ((,class (:background nil :foreground 
,moe-dark-doc                      ))))
+   `(font-lock-doc-string-face           ((,class (:background nil :foreground 
,moe-dark-doc-string               ))))
+   `(font-lock-function-name-face        ((,class (:background nil :foreground 
,moe-dark-function-name            ))))
+   `(font-lock-keyword-face              ((,class (:background nil :foreground 
,moe-dark-keyword                  ))))
+   `(font-lock-negation-char-face        ((,class (:background nil :foreground 
,moe-dark-negation-char            ))))
+   `(font-lock-preprocessor-face         ((,class (:background nil :foreground 
,moe-dark-preprocessor             ))))
+   `(font-lock-regexp-grouping-backslash ((,class (:background nil :foreground 
,moe-dark-regexp-grouping-backslash))))
+   `(font-lock-regexp-grouping-construct ((,class (:background nil :foreground 
,moe-dark-regexp-grouping-construct))))
+   `(font-lock-string-face               ((,class (:background nil :foreground 
,moe-dark-string                   ))))
+   `(font-lock-type-face                 ((,class (:background nil :foreground 
,moe-dark-type                     ))))
+   `(font-lock-variable-name-face        ((,class (:background nil :foreground 
,moe-dark-variable-name            ))))
+   `(font-lock-warning-face              ((,class (:background nil :foreground 
,moe-dark-warning               :weight bold ))))
    ;; Ensure sufficient contrast on low-color terminals.
    `(default ((((class color) (min-colors 4096)) (:foreground ,moe-dark-fg 
:background ,moe-dark-bg))
              (((class color) (min-colors 256)) (:foreground ,moe-dark-fg 
:background ,moe-dark-bg))
diff --git a/moe-light-theme.el b/moe-light-theme.el
index 7722454a5f..fee6439bc4 100644
--- a/moe-light-theme.el
+++ b/moe-light-theme.el
@@ -74,22 +74,22 @@ Moe, moe, kyun!")
   (custom-theme-set-faces
    'moe-light
    ;; Font-lock faces
-   `(font-lock-builtin-face              ((,class (:foreground 
,moe-light-builtin                  ))))
-   `(font-lock-comment-delimiter-face    ((,class (:foreground 
,moe-light-comment-delimiter        :slant italic))))
-   `(font-lock-comment-face              ((,class (:foreground 
,moe-light-comment                  :slant italic))))
-   `(font-lock-constant-face             ((,class (:foreground 
,moe-light-constant                 ))))
-   `(font-lock-doc-face                  ((,class (:foreground ,moe-light-doc  
                    ))))
-   `(font-lock-doc-string-face           ((,class (:foreground 
,moe-light-doc-string               ))))
-   `(font-lock-function-name-face        ((,class (:foreground 
,moe-light-function-name            ))))
-   `(font-lock-keyword-face              ((,class (:foreground 
,moe-light-keyword                  ))))
-   `(font-lock-negation-char-face        ((,class (:foreground 
,moe-light-negation-char            ))))
-   `(font-lock-preprocessor-face         ((,class (:foreground 
,moe-light-preprocessor             ))))
-   `(font-lock-regexp-grouping-backslash ((,class (:foreground 
,moe-light-regexp-grouping-backslash))))
-   `(font-lock-regexp-grouping-construct ((,class (:foreground 
,moe-light-regexp-grouping-construct))))
-   `(font-lock-string-face               ((,class (:foreground 
,moe-light-string                   ))))
-   `(font-lock-type-face                 ((,class (:foreground ,moe-light-type 
                    ))))
-   `(font-lock-variable-name-face        ((,class (:foreground 
,moe-light-variable-name            ))))
-   `(font-lock-warning-face              ((,class (:foreground 
,moe-light-warning               :weight bold))))
+   `(font-lock-builtin-face              ((,class (:background nil :foreground 
,moe-light-builtin                  ))))
+   `(font-lock-comment-delimiter-face    ((,class (:background nil :foreground 
,moe-light-comment-delimiter        :slant italic))))
+   `(font-lock-comment-face              ((,class (:background nil :foreground 
,moe-light-comment                  :slant italic))))
+   `(font-lock-constant-face             ((,class (:background nil :foreground 
,moe-light-constant                 ))))
+   `(font-lock-doc-face                  ((,class (:background nil :foreground 
,moe-light-doc                      ))))
+   `(font-lock-doc-string-face           ((,class (:background nil :foreground 
,moe-light-doc-string               ))))
+   `(font-lock-function-name-face        ((,class (:background nil :foreground 
,moe-light-function-name            ))))
+   `(font-lock-keyword-face              ((,class (:background nil :foreground 
,moe-light-keyword                  ))))
+   `(font-lock-negation-char-face        ((,class (:background nil :foreground 
,moe-light-negation-char            ))))
+   `(font-lock-preprocessor-face         ((,class (:background nil :foreground 
,moe-light-preprocessor             ))))
+   `(font-lock-regexp-grouping-backslash ((,class (:background nil :foreground 
,moe-light-regexp-grouping-backslash))))
+   `(font-lock-regexp-grouping-construct ((,class (:background nil :foreground 
,moe-light-regexp-grouping-construct))))
+   `(font-lock-string-face               ((,class (:background nil :foreground 
,moe-light-string                   ))))
+   `(font-lock-type-face                 ((,class (:background nil :foreground 
,moe-light-type                     ))))
+   `(font-lock-variable-name-face        ((,class (:background nil :foreground 
,moe-light-variable-name            ))))
+   `(font-lock-warning-face              ((,class (:background nil :foreground 
,moe-light-warning               :weight bold))))
    ;; Ensure sufficient contrast on low-color terminals.
    `(default ((((class color) (min-colors 4096)) (:foreground ,moe-light-fg 
:background ,moe-light-bg))
               (((class color) (min-colors 256)) (:foreground ,moe-light-fg 
:background ,moe-light-bg))



reply via email to

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