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

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

[nongnu] elpa/spacemacs-theme b4fb0f5196 034/336: Make cursor color more


From: ELPA Syncer
Subject: [nongnu] elpa/spacemacs-theme b4fb0f5196 034/336: Make cursor color more visible against background
Date: Fri, 14 Jan 2022 10:58:54 -0500 (EST)

branch: elpa/spacemacs-theme
commit b4fb0f51961ef9831e7fc4c1a58b09e7ab2cfb44
Author: Sooheon Kim <sooheon@Sooheonui-MacBook-Pro.local>
Commit: Sooheon Kim <sooheon@Sooheonui-MacBook-Pro.local>

    Make cursor color more visible against background
---
 spacemacs-dark-theme.el  | 3 ++-
 spacemacs-light-theme.el | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/spacemacs-dark-theme.el b/spacemacs-dark-theme.el
index 9d3498937d..76d5428069 100644
--- a/spacemacs-dark-theme.el
+++ b/spacemacs-dark-theme.el
@@ -30,6 +30,7 @@
 (let ((class '((class color) (min-colors 89)))
       ;;                                     GUI       TER
       (base       (if (display-graphic-p) "#b2b2b2" "#b2b2b2"))
+      (cursor     (if (display-graphic-p) "#e3dedd" "#d0d0d0"))
       (bg1        (if (display-graphic-p) "#292b2e" "#262626"))
       (bg2        (if (display-graphic-p) "#212026" "#1c1c1c"))
       (bg3        (if (display-graphic-p) "#100a14" "#121212"))
@@ -90,7 +91,7 @@
    `(highlight ((,class (:foreground ,base :background ,bg3))))
    `(hl-line ((,class (:background ,bg2))))
    `(fringe ((,class (:background ,bg1 :foreground ,base))))
-   `(cursor ((,class (:background ,bg3))))
+   `(cursor ((,class (:background ,cursor))))
    `(show-paren-match-face ((,class (:background ,suc))))
    `(secondary-selection ((,class (:background ,bg3))))
    `(isearch ((,class (:bold t :foreground ,bg1 :background ,inf))))
diff --git a/spacemacs-light-theme.el b/spacemacs-light-theme.el
index 3591031276..f2c1ead974 100644
--- a/spacemacs-light-theme.el
+++ b/spacemacs-light-theme.el
@@ -30,6 +30,7 @@
 (let ((class '((class color) (min-colors 89)))
       ;;                                     GUI       TER
       (base       (if (display-graphic-p) "#655370" "#5f5f87"))
+      (cursor     (if (display-graphic-p) "#100a14" "#121212"))
       (bg1        (if (display-graphic-p) "#fbf8ef" "#ffffff"))
       (bg2        (if (display-graphic-p) "#efeae9" "#e4e4e4"))
       (bg3        (if (display-graphic-p) "#e3dedd" "#d0d0d0"))
@@ -90,7 +91,7 @@
    `(highlight ((,class (:foreground ,base :background ,bg3))))
    `(hl-line ((,class (:background ,bg2))))
    `(fringe ((,class (:background ,bg1 :foreground ,base))))
-   `(cursor ((,class (:background ,bg3))))
+   `(cursor ((,class (:background ,cursor))))
    `(show-paren-match-face ((,class (:background ,suc))))
    `(secondary-selection ((,class (:background ,bg3))))
    `(isearch ((,class (:bold t :foreground ,bg1 :background ,inf))))



reply via email to

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