mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-20 15:59:51 +02:00
#2088 Add the possibility to theme forks and joins using theme variables
This commit is contained in:
@@ -82,11 +82,17 @@ g.stateGroup line {
|
||||
}
|
||||
|
||||
.node circle.state-start {
|
||||
fill: ${options.lineColor};
|
||||
stroke: black;
|
||||
fill: ${options.stateBorder || options.lineColor};
|
||||
stroke: ${options.stateBorder || options.lineColor};
|
||||
}
|
||||
|
||||
.node .fork-join {
|
||||
fill: ${options.stateBorder};
|
||||
stroke: ${options.stateBorder};
|
||||
}
|
||||
|
||||
.node circle.state-end {
|
||||
fill: ${options.primaryBorderColor};
|
||||
fill: ${options.innerEndBackground || options.primaryBorderColor};
|
||||
stroke: ${options.background};
|
||||
stroke-width: 1.5
|
||||
}
|
||||
|
Reference in New Issue
Block a user