Variable: org-roam-graph-node-extra-config
org-roam-graph-node-extra-config is a customizable variable defined in
org-roam-graph.el.
Value
(("id" ("style" . "bold,rounded,filled") ("fillcolor" . "#EEEEEE")
("color" . "#C9C9C9") ("fontcolor" . "#111111"))
("http" ("style" . "rounded,filled") ("fillcolor" . "#EEEEEE")
("color" . "#C9C9C9") ("fontcolor" . "#0A97A6"))
("https" ("style" . "rounded,filled") ("fillcolor" . "#EEEEEE")
("color" . "#C9C9C9") ("fontcolor" . "#0A97A6")))
Documentation
Extra options for graphviz nodes.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-graph.el
(defcustom org-roam-graph-node-extra-config
'(("id" . (("style" . "bold,rounded,filled")
("fillcolor" . "#EEEEEE")
("color" . "#C9C9C9")
("fontcolor" . "#111111")))
("http" . (("style" . "rounded,filled")
("fillcolor" . "#EEEEEE")
("color" . "#C9C9C9")
("fontcolor" . "#0A97A6")))
("https" . (("style" . "rounded,filled")
("fillcolor" . "#EEEEEE")
("color" . "#C9C9C9")
("fontcolor" . "#0A97A6"))))
"Extra options for graphviz nodes."
:type '(alist)
:group 'org-roam)