From a9aa8b7f1af532e64e17da328e5bd2c645238deb Mon Sep 17 00:00:00 2001 From: Per Brolin Date: Tue, 11 Jun 2024 13:43:54 +0200 Subject: [PATCH] Commit prior work by knsv --- cypress/platform/per.html | 2 +- packages/mermaid/src/themes/theme-neo.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/cypress/platform/per.html b/cypress/platform/per.html index 74487e762..e6a88642a 100644 --- a/cypress/platform/per.html +++ b/cypress/platform/per.html @@ -123,7 +123,7 @@ stateDiagram-v2 flowchart: { titleTopMargin: 10 }, // fontFamily: 'Caveat', // fontFamily: 'Kalam', - fontFamily: 'arial', + fontFamily: 'Arial', sequence: { actorFontFamily: 'arial', noteFontFamily: 'arial', diff --git a/packages/mermaid/src/themes/theme-neo.js b/packages/mermaid/src/themes/theme-neo.js index 1b8df789b..01b8aaf5c 100644 --- a/packages/mermaid/src/themes/theme-neo.js +++ b/packages/mermaid/src/themes/theme-neo.js @@ -22,11 +22,15 @@ class Theme { this.noteTextColor = '#333'; this.THEME_COLOR_LIMIT = 12; - this.radius = 2; + this.radius = 3; // dark this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif'; this.fontSize = '10px'; + + // Neo-specific + this.nodeBorder = 'none'; + this.stateBorder = 'none'; } updateColors() { // The || is to make sure that if the variable has been defined by a user override that value is to be used @@ -58,7 +62,6 @@ class Theme { this.nodeBkg = this.nodeBkg || this.primaryColor; this.mainBkg = this.mainBkg || this.primaryColor; this.nodeBorder = this.nodeBorder || this.primaryBorderColor; - this.nodeBorder = 'none'; this.clusterBkg = this.clusterBkg || this.tertiaryColor; this.clusterBorder = this.clusterBorder || this.tertiaryBorderColor; this.defaultLinkColor = this.defaultLinkColor || this.lineColor;