CSS styling Beta - Sequence diagram - dots not colored with LineColor

0 votes
asked Mar 13, 2020 in Bug by atennert (180 points)

Hello,

When using Beta styling with CSS on a sequence diagram and changing the line color, it doesn't change the color of dots.

Example code:

@startuml

skinparam useBetaStyle true
<style>
sequenceDiagram {
    LineColor #000
}
</style>

participant X

...

@enduml

The line is black while the dots remain in the default red.

1 Answer

0 votes
answered Jul 4 by The-Lu (85,820 points)
selected Oct 18 by The-Lu
 
Best answer

Hello A.,

With last version v1.2025.4, we can now have:

@startuml

<style>
sequenceDiagram {
    LineColor #0c0
    LineThickness 3
}
</style>

participant X

...

@enduml

Enjoy,
Th.

...