I have a lot of inline dataviewjs queries, however it’s difficult to distinguish the resulting dynamic values from regular text. Is there an easy way to change the colour of the result so its easy to distinguish them? Preferably in live preview and maybe reading mode. I’ve tried some css snippets I found online that didn’t work but wouldn’t know where to start to figure it out myself. Thanks for any help
The best to place to start with any CSS in Obsidian is:
That with the extra top of looking for selectors like .dataview
, and I think there is an inline variant too, which I don’t remember just now.
Wow thanks I actually managed to do this. The CSS snippet I used for anyone with the same issue
span.dataview.dataview-inline {
color: var(–interactive-accent);
}
1 Like