diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-30 13:24:55 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-30 13:24:55 +0530 |
commit | f482d0b0177f9909e0bc223ec99b3f6721065be4 (patch) | |
tree | 01de85b06754cd95af65a2f834a185bec0124c66 /.doom.d | |
parent | 51aa57dcc744c75b7700b25d7dcc239688d5e3b4 (diff) |
changed cursor and divider color
Diffstat (limited to '.doom.d')
-rw-r--r-- | .doom.d/themes/zt-theme.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.doom.d/themes/zt-theme.el b/.doom.d/themes/zt-theme.el index 4e02ade..3070ac5 100644 --- a/.doom.d/themes/zt-theme.el +++ b/.doom.d/themes/zt-theme.el @@ -87,6 +87,7 @@ Can be an integer to determine the exact padding." ; custom colors (purple '("#9b1bed" "#a9a1e1" "magenta" )) (purple2 '("#660ec7" "#a9a1e1" "magenta" )) + (purple3 '("#9a30a4" "#a9a1e1" "magenta" )) (pink '("#ff0aa3" "#c678dd" "brightmagenta")) (lime '("#0ec685" "#ecbe7b" "yellow")) @@ -100,7 +101,7 @@ Can be an integer to determine the exact padding." (comments (if zt-brighter-comments dark-cyan base5)) (doc-comments (doom-lighten (if zt-brighter-comments dark-cyan base5) 0.25)) (constants (doom-lighten lime 0.5)) - (functions (doom-lighten purple2 0.3)) + (functions (doom-lighten purple3 0.3)) (keywords lime) (methods cyan) (operators lime) @@ -138,7 +139,7 @@ Can be an integer to determine the exact padding." ( ((line-number &override) :foreground magenta :background bg-alt) ((line-number-current-line &override) :foreground magenta :background "#21242b") - ((cursor &override) :background "#9b1bed") + ((cursor &override) :background purple3) ((region &override) :background "#71279f") ;((region &override) :background "#9a30a4") ((hl-line &override) :background "#21242b") @@ -147,7 +148,7 @@ Can be an integer to determine the exact padding." ((tide-hl-identifier-face &override) :background "#9b1bed" :foreground "#232627") ((selection &override) :background "#9b1bed") ((default &override) :background "#0e0911") - ((window-divider &override) :foreground "#9b1bed") + ((window-divider &override) :foreground purple3) |