Function: cider-test-type-simple-face
cider-test-type-simple-face is a byte-compiled function defined in
cider-test.el.
Signature
(cider-test-type-simple-face TYPE)
Documentation
Return a face for the test result TYPE using the highlight color as foreground.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defun cider-test-type-simple-face (type)
"Return a face for the test result TYPE using the highlight color as foreground."
(let ((face (cider-test-type-face type)))
`(:foreground ,(face-attribute face :background))))