Variable: nrepl-message-faces
nrepl-message-faces is a customizable variable defined in
nrepl-client.el.
Value
(nrepl-message-1-face nrepl-message-2-face nrepl-message-3-face
nrepl-message-4-face nrepl-message-5-face
nrepl-message-6-face nrepl-message-7-face
nrepl-message-8-face)
Documentation
Faces cycled through when coloring the messages buffer.
Each message is assigned a face based on its id, so the requests and responses belonging to the same exchange share a color. The defaults are a palette of eight distinct hues (with light- and dark-background variants) so that adjacent exchanges stay easy to tell apart on any theme.
This variable was added, or its default value changed, in cider version 2.0.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-client.el
(defcustom nrepl-message-faces
'(nrepl-message-1-face nrepl-message-2-face nrepl-message-3-face
nrepl-message-4-face nrepl-message-5-face nrepl-message-6-face
nrepl-message-7-face nrepl-message-8-face)
"Faces cycled through when coloring the messages buffer.
Each message is assigned a face based on its id, so the requests and
responses belonging to the same exchange share a color. The defaults are a
palette of eight distinct hues (with light- and dark-background variants) so
that adjacent exchanges stay easy to tell apart on any theme."
:type '(repeat face)
:package-version '(cider . "2.0.0"))