Function: treemacs--root-face
treemacs--root-face is a byte-compiled function defined in
treemacs-rendering.el.
Signature
(treemacs--root-face PROJECT)
Documentation
Get the face to be used for PROJECT.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-rendering.el
(defun treemacs--root-face (project)
"Get the face to be used for PROJECT."
(cl-case (treemacs-project->path-status project)
(local-unreadable 'treemacs-root-unreadable-face)
(remote-readable 'treemacs-root-remote-face)
(remote-disconnected 'treemacs-root-remote-disconnected-face)
(remote-unreadable 'treemacs-root-remote-unreadable-face)
(otherwise 'treemacs-root-face)))