Things I have tried
I have tried to style internal links with the Supercharged Links plugin. But, 1) I have not been able to get the desired result 2) the style of links do not reflect in the editor mode.
I have also tried
.cm-s-obsidian span.cm-hmd-internal-link[href*=“QUE”] {
color : salmon;
}
a.internal-link[href*=“QUE”] {
color: #e299d0;
}
What I’m trying to do
I am trying to implement the following Roam CSS style in Obsidian
span[data-link-title^="[[QUE]] - "]:before {
content: '
’
}
span[data-link-title=“QUE”] > span {
/*color: #fff !important; */
font-weight: 500;
color: #99890E !important;
}
span[data-link-title^="[[QUE]] - "] > span {
/*color: #fff !important; */
font-weight: 500;
color: #99890E !important;
}
Can someone help with the Obsidian CSS equivalent of the above ?