Fix for issues with comment shapes in neo-dark

This commit is contained in:
Knut Sveidqvist
2024-09-23 14:57:18 +02:00
parent 7dcd2758b2
commit 65d47dea24

View File

@@ -46,8 +46,8 @@ class Theme {
this.fontSize = '10px';
// Neo-specific
this.nodeBorder = 'none';
this.stateBorder = 'none';
// this.nodeBorder = 'none';
// this.stateBorder = 'none';
this.useGradient = true;
this.gradientStart = '#0042eb';
@@ -90,7 +90,7 @@ class Theme {
/* Flowchart variables */
this.nodeBkg = this.nodeBkg || 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.clusterBorder = this.clusterBorder || this.tertiaryBorderColor;
this.defaultLinkColor = this.defaultLinkColor || this.lineColor;