Fixed text color for notes in diagrams in dark mode (#4518)

fixes #4517
This commit is contained in:
Brendan
2022-11-03 06:21:54 -07:00
committed by GitHub
parent 941d634b78
commit 96e2119bfc

View File

@@ -346,6 +346,11 @@ line {
stroke: none;
}
/* make statically colored note nodes use a statically color text */
.noteText > tspan {
fill: #000;
}
/* Sequence arrow head */
#arrowhead path {
fill: var(--md-mermaid-edge-color);