Skip to content

Instantly share code, notes, and snippets.

@fredRos
Last active April 28, 2020 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredRos/e25515c9ac03354d03b47fad4de0a60e to your computer and use it in GitHub Desktop.
Save fredRos/e25515c9ac03354d03b47fad4de0a60e to your computer and use it in GitHub Desktop.
set color of line number for solarized light theme in spacemacs
(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"))
))
)
@fredRos
Copy link
Author

fredRos commented Apr 22, 2020

Screenshot from 2020-04-22 19-49-08
Final result

@fredRos
Copy link
Author

fredRos commented Apr 28, 2020

and dark
Screenshot from 2020-04-28 22-20-36

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment