How do I change the color of a tag node in graph view

Things I have tried

I have searched both the forums and the help docs for a solution.

What I’m trying to do

I’m trying to change the color of the tag nodes in graph view from brown to something else

2 Likes

Edit: I manged to find some CSS snippets in the discord.

/*tag  */
.graph-view.color-fill-tag {
  color: #ff20aa !important; /* fdbe38  #ffff00*/
  opacity: 1.0;
}

/* attachment*/
.graph-view.color-fill-attachment {
  color: #00c4ff !important;
  opacity: 1.0;
}

Just others future reference as well, you may refer to this shared snippet to change graph view css

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.