How to modify the color of separator lines?

0 votes
asked May 22, 2019 in Question / help by yangsh (120 points)
@startuml

== start ==

A -> B: hello
B -> A: bye

== end ==

@enduml
How to modify the line color of == start == ?

1 Answer

+1 vote
answered May 22, 2019 by albert (3,520 points)

Have a look at the skinparam and play around with these:

SequenceDividerBackgroundColor
SequenceDividerBorderColor
SequenceDividerBorderThickness
SequenceDividerFontColor
SequenceDividerFontName
SequenceDividerFontSize
SequenceDividerFontStyle

so setting e.g.:

@startuml

skinparam SequenceDividerBackgroundColor red

== start ==

A -> B: hello
B -> A: bye

== end ==

@enduml
commented May 22, 2019 by yangsh (120 points)

Thanks for the answeryes

...