mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-21 01:06:43 +02:00
fixes titleColor default value
Co-authored-by: Pranav Mishra <mishrap@dickinson.edu>
This commit is contained in:
@@ -178,7 +178,7 @@ class Theme {
|
|||||||
this.clusterBkg = this.secondBkg;
|
this.clusterBkg = this.secondBkg;
|
||||||
this.clusterBorder = this.border2;
|
this.clusterBorder = this.border2;
|
||||||
this.defaultLinkColor = this.lineColor;
|
this.defaultLinkColor = this.lineColor;
|
||||||
this.titleColor = this.titleColor || this.textColor;
|
this.titleColor = this.titleColor === 'calculated' ? this.textColor : this.titleColor;
|
||||||
this.edgeLabelBackground = this.labelBackground;
|
this.edgeLabelBackground = this.labelBackground;
|
||||||
|
|
||||||
/* Sequence Diagram variables */
|
/* Sequence Diagram variables */
|
||||||
|
Reference in New Issue
Block a user