Color double backtickts changed ``

Hi,
i used to used the double backticks test to color some code of line in red color in my notes, but since the new 1.0 version, the color disapear for a very grey color with background that i really don t like. i searched on the forum, but did not find which setting should i need to change in the defaut theme ? and don t see any css in .obsidian. should i create one ? thanks to help me its few days i am stuck with it
Sorry, please is some help me how i can set the backtick in red color

thanks a lot

1 Like

i try this but who seems to do the work by adding a css snippet

    .cm-s-obsidian span.cm-inline-code:not(.cm-formatting):not(.cm-hmd-indented-code):not(.obsidian-search-match-highlight) {
    
    background-color: rgb(0 0 0 / 0%);
    vertical-align: baseline;
    color: red;
    background: rgb(0 0 0 / 0%);
    }
    .markdown-preview-view code{
         color: red;
         background-color: rgb(0 0 0 / 0%);
         background: rgb(0 0 0 / 0%);
}
    .cm-s-obsidian span.cm-inline-code:not(.cm-formatting):not(.cm-hmd-indented-code):not(.obsidian-search-match-highlight) {
	
	background-color: rgb(0 0 0 / 50%);
    vertical-align: baseline;
	color: #1cd142;
	background: rgb(0 0 0 / 50%);
	}
	.markdown-preview-view code{
         color: #1cd142;
		 background-color: rgb(0 0 0 / 50%);
		 background: rgb(0 0 0 / 50%);
}

Thanks for providing the CSS!
I like the new UI design very much but the low contrast of the new backtick is bad!

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