#1542 Setting up base theme for custom theming

This commit is contained in:
Knut Sveidqvist
2020-07-27 10:01:34 +02:00
parent 4e12f959fc
commit 5a7d770a58
10 changed files with 547 additions and 46 deletions

View File

@@ -61,6 +61,14 @@ g.stateGroup line {
opacity: 0.5;
}
.edgeLabel .label rect {
fill: ${options.tertiaryColor};
opacity: 0.3;
}
.edgeLabel .label text {
fill: ${options.tertiaryTextColor};
}
.stateLabel text {
fill: ${options.labelColor};
font-size: 10px;
@@ -70,12 +78,12 @@ g.stateGroup line {
}
.node circle.state-start {
fill: black;
fill: ${options.primaryBorderColor};
stroke: black;
}
.node circle.state-end {
fill: black;
stroke: white;
fill: ${options.primaryBorderColor};
stroke: ${options.background};
stroke-width: 1.5
}
@@ -150,6 +158,10 @@ g.stateGroup line {
ry: 0;
}
.statediagram-note text {
fill: ${options.noteTextColor};
}
.statediagram-note .nodeLabel {
color: ${options.noteTextColor};
}