-
Can you change text color/background color of notes in hierarchy/outlier? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, you can change the color of notes in the hierarchy (note tree) in Trilium Notes. The simplest way is to add a For more advanced customization (like changing background color or adding icons), you can assign a CSS class to a note using the .important span.fancytree-title::before {
content: "⚠ ";
background-color: red;
color: yellow;
} This will style all notes with the Changing the background color of the entire row in the hierarchy is more limited, but these methods cover most use cases for customizing note appearance in the outline. There are also plans for easier color and template marking directly from the tree in future releases feature discussion. To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
Yes, you can change the color of notes in the hierarchy (note tree) in Trilium Notes. The simplest way is to add a
#color
attribute to a note and set it to any valid CSS color (like#ff0000
for red orgreen
). This changes the color of both the icon and the title in the tree view details wiki.For more advanced customization (like changing background color or adding icons), you can assign a CSS class to a note using the
#cssClass(inheritable)=yourClassName
attribute, then add global CSS in a note with the#appCss
attribute. For example:This will style all notes with the
important
class …