(use-package solarized-theme :config …
section of my config: (dolist (variant '(light dark))
(message "palette is %s" solarized-color-palette-alist)
(when (sequencep solarized-color-palette-alist)
(message "palette is a sequence"))
(solarized-with-color-variables variant solarized-color-palette-alist
palette is ((s-base03 . #002b36)…
followed by palette is a sequence
in the messages buffer, but I also get this warning:Error (use-package): solarized-theme/:config: Wrong type argument: sequencep, solarized-color-palette-alist
solarized-with-color-variables
receives a symbol as an argument, even though it's not in a quasiquote… and I don't understand why
,@(mapcar …)
, and that's why in solarized-definition
it has to be used inside a quasiquote. Not sure what's the best practice there… can solarized-with-color-variables
be made more robust? what's the best practice here in elisp?