feat(arch): added theme variables for dark and default

This commit is contained in:
NicolasNewman 2024-04-22 10:49:36 -05:00
parent 634b00b379
commit b21fc9fe22
2 changed files with 14 additions and 0 deletions

View File

@ -85,6 +85,13 @@ class Theme {
this.personBorder = this.primaryBorderColor;
this.personBkg = this.mainBkg;
/* Architecture Diagram variables */
this.archEdgeStrokeColor = 'calculated';
this.archEdgeArrowColor = 'calculated';
this.archEdgeStrokeWidth = 'calculated';
this.archGroupBorderStrokeColor = '#FFF';
this.archGroupBorderStrokeWidth = 'calculated';
/* state colors */
this.labelColor = 'calculated';

View File

@ -112,6 +112,13 @@ class Theme {
this.personBorder = this.primaryBorderColor;
this.personBkg = this.mainBkg;
/* Architecture Diagram variables */
this.archEdgeStrokeColor = 'calculated';
this.archEdgeArrowColor = 'calculated';
this.archEdgeStrokeWidth = 'calculated';
this.archGroupBorderStrokeColor = 'calculated';
this.archGroupBorderStrokeWidth = 'calculated';
/* state colors */
this.labelColor = 'black';
this.errorBkgColor = '#552222';