Last active
April 28, 2020 20:21
-
-
Save fredRos/e25515c9ac03354d03b47fad4de0a60e to your computer and use it in GitHub Desktop.
set color of line number for solarized light theme in spacemacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun dotspacemacs/layers () | |
theming | |
) | |
(defun dotspacemacs/init () | |
dotspacemacs-themes '(solarized-light) | |
) | |
(defun dotspacemacs/user-init () | |
(setq theming-modifications | |
'( | |
(solarized-light | |
;; foreground: magenta=#d33682, yellow=#b58900 :background base01="#586e75" :weight bold | |
(line-number-current-line :inherit line-number :foreground "#d33682")) | |
(solarized-dark | |
;; foreground: magenta=#d33682, yellow=#b58900 | |
(line-number-current-line :inherit line-number :foreground "#b58900")) | |
)) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
and dark
