Can I draw sequence diagram (connector arrows)in black instead of default red?

0 votes
asked May 27, 2020 in Question / help by Up

1 Answer

0 votes
answered May 27, 2020 by PlutoNix (240 points)

Hi,

if you add: skinparam ArrowColor black is what you need?

Like:

@startuml
skinparam ArrowColor black
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: Another authentication Response
@enduml

...