mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-11-15 10:14:21 +01:00
Fix for issues with comment shapes in neo-dark
This commit is contained in:
@@ -46,8 +46,8 @@ class Theme {
|
|||||||
this.fontSize = '10px';
|
this.fontSize = '10px';
|
||||||
|
|
||||||
// Neo-specific
|
// Neo-specific
|
||||||
this.nodeBorder = 'none';
|
// this.nodeBorder = 'none';
|
||||||
this.stateBorder = 'none';
|
// this.stateBorder = 'none';
|
||||||
|
|
||||||
this.useGradient = true;
|
this.useGradient = true;
|
||||||
this.gradientStart = '#0042eb';
|
this.gradientStart = '#0042eb';
|
||||||
@@ -90,7 +90,7 @@ class Theme {
|
|||||||
/* Flowchart variables */
|
/* Flowchart variables */
|
||||||
this.nodeBkg = this.nodeBkg || this.primaryColor;
|
this.nodeBkg = this.nodeBkg || this.primaryColor;
|
||||||
this.mainBkg = this.mainBkg || this.primaryColor;
|
this.mainBkg = this.mainBkg || this.primaryColor;
|
||||||
this.nodeBorder = this.nodeBorder || this.primaryBorderColor;
|
this.nodeBorder = this.nodeBorder || this.border1;
|
||||||
this.clusterBkg = this.clusterBkg || this.tertiaryColor;
|
this.clusterBkg = this.clusterBkg || this.tertiaryColor;
|
||||||
this.clusterBorder = this.clusterBorder || this.tertiaryBorderColor;
|
this.clusterBorder = this.clusterBorder || this.tertiaryBorderColor;
|
||||||
this.defaultLinkColor = this.defaultLinkColor || this.lineColor;
|
this.defaultLinkColor = this.defaultLinkColor || this.lineColor;
|
||||||
|
|||||||
Reference in New Issue
Block a user