What I’m trying to do
Hello. I am a beginner user of Obsidian.
I would like some help with CSS.
For numbered lists, it appears in gray. I am not sure what i have done wrong. But I want it to be back to black.
I don’t have any applied themes, and the plugins are as attached.
I am using the following code. This code changes the bullet point appearance based on depth.
I am wondering if the CSS code I am using might be affecting this, so I have attached it below too.
Thank you in advance!
Things I have tried
- turn off the theme and plugin
- turn of the css snippet
- below is current css snippet applied
:root {
/* --bullet-new-color: Orange; */
–bullet-new-color: rgb(89,89,89);
}
.markdown-source-view.mod-cm6 .HyperMD-list-line-1 .list-bullet:after {
/* Bullet */
height: 5px;
width: 5px;
border-radius: 50%;
background-color: var(–bullet-new-color);
}
.markdown-source-view.mod-cm6 .HyperMD-list-line-2 .list-bullet:after {
/* Hollow Bullet */
height: 4px;
width: 4px;
background-color: Transparent;
border-color: var(–bullet-new-color);
border-style: solid;
border-radius: 50%;
border-width: 1px;
}
.markdown-source-view.mod-cm6 .HyperMD-list-line-3 .list-bullet:after {
/* Dash */
height: 1px;
width: 7px;
border-radius: 0%;
background-color: var(–bullet-new-color);
}