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

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

[nongnu] elpa/moe-theme bc1d575a93 324/352: monokai: Give up 256 color


From: ELPA Syncer
Subject: [nongnu] elpa/moe-theme bc1d575a93 324/352: monokai: Give up 256 color
Date: Fri, 7 Jan 2022 04:00:01 -0500 (EST)

branch: elpa/moe-theme
commit bc1d575a936a274860e6f253a4cae6516c59bac7
Author: onohiroko <azazabc123@gmail.com>
Commit: onohiroko <azazabc123@gmail.com>

    monokai: Give up 256 color
---
 moe-theme-flavours.el | 67 +++++++++++++++++++++++++++------------------------
 1 file changed, 36 insertions(+), 31 deletions(-)

diff --git a/moe-theme-flavours.el b/moe-theme-flavours.el
index 2ae36360c6..2f76e522a0 100644
--- a/moe-theme-flavours.el
+++ b/moe-theme-flavours.el
@@ -103,39 +103,44 @@
 ;; ======================================================
 (defun moe-theme-flavour-monokai ()
   (interactive)
-  (let ((monokai-256-foreground "#F5F5F5")
-        (monokai-256-background "#1B1E1C")
-        (monokai-256-yellow   "#CDC673")
-        (monokai-256-orange   "#FF8C00")
-        (monokai-256-red      "#FF1493")
-        (monokai-256-magenta  "#D700D7")
-        (monokai-256-violet   "#AF87FF")
-        (monokai-256-blue     "#5FD7FF")
-        (monokai-256-cyan     "#5FFFFF")
-        (monokai-256-green    "#87D700")
-        (monokai-256-gray     "#3D3D3D")
-        (monokai-256-comments "#8B8878")
-        )
-    (setq moe-dark-bg monokai-256-background)
-    (setq moe-dark-fg monokai-256-foreground)
-    (setq moe-dark-builtin monokai-256-red)
-    (setq moe-dark-comment-delimiter monokai-256-comments)
-    (setq moe-dark-comment monokai-256-comments)
-    (setq moe-dark-constant monokai-256-violet)
-    (setq moe-dark-doc monokai-256-yellow)
-    (setq moe-dark-doc-string monokai-256-cyan)
-    (setq moe-dark-function-name monokai-256-green)
-    (setq moe-dark-keyword monokai-256-red)
-    (setq moe-dark-negation-char monokai-256-yellow)
-    (setq moe-dark-preprocessor monokai-256-red)
-    (setq moe-dark-regexp-grouping-construct monokai-256-yellow)
-    (setq moe-dark-regexp-grouping-backslash monokai-256-violet)
-    (setq moe-dark-string monokai-256-yellow)
-    (setq moe-dark-type monokai-256-blue)
-    (setq moe-dark-variable-name monokai-256-orange)
-    (setq moe-dark-warning monokai-256-orange)
+  (let ((monokai-yellow "#E6DB74")
+        (monokai-orange "#FD971F")
+        (monokai-red "#F92672")
+        (monokai-magenta "#FD5FF0")
+        (monokai-blue "#66D9EF")
+        (monokai-green "#A6E22E")
+        (monokai-cyan "#A1EFE4")
+        (monokai-violet "#AE81FF")
+        (monokai-gray "#64645E")
+        (monokai-foreground "#F8F8F2")
+        (monokai-background "#272722")
+        (monokai-comments "#75715E")
+        (monokai-emphasis "#F8F8F0")
+        (monokai-line-number "#8F908A")
+        (monokai-highlight "#49483E")
+        (monokai-highlight-alt "#3E3D31")
+        (monokai-highlight-line "#3C3D37"))
+    (setq moe-dark-bg monokai-background)
+    (setq moe-dark-fg monokai-foreground)
+    (setq moe-dark-builtin monokai-red)
+    (setq moe-dark-comment-delimiter monokai-comments)
+    (setq moe-dark-comment monokai-comments)
+    (setq moe-dark-constant monokai-violet)
+    (setq moe-dark-doc monokai-yellow)
+    (setq moe-dark-doc-string monokai-cyan)
+    (setq moe-dark-function-name monokai-green)
+    (setq moe-dark-keyword monokai-red)
+    (setq moe-dark-negation-char monokai-yellow)
+    (setq moe-dark-preprocessor monokai-red)
+    (setq moe-dark-regexp-grouping-construct monokai-yellow)
+    (setq moe-dark-regexp-grouping-backslash monokai-violet)
+    (setq moe-dark-string monokai-yellow)
+    (setq moe-dark-type monokai-blue)
+    (setq moe-dark-variable-name monokai-orange)
+    (setq moe-dark-warning monokai-orange)
     (moe-theme-reload-by-background-brightness)))
 
 
+
 (provide 'moe-theme-flavours)
 ;;; moe-theme-flavours.el ends here



reply via email to

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