Please provide a skinparam to set the sequence participant box border color

0 votes
asked Feb 25, 2016 in Closed feature request by fyhao (120 points)
Please provide a skinparam to set the sequence participant box border color.

1 Answer

0 votes
answered Feb 28, 2016 by plantuml (294,960 points)
selected Jul 8, 2018 by Anthony-Gaudino
 
Best answer

We have published a new beta: https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

With this beta, you can have:

@startuml
skinparam sequenceParticipant {
     borderColor Black
     borderColor<<foo>> red
     backgroundColor<<foo>> yellow
     backgroundColor LightBlue
}
participant Bob <<foo>>
Bob -> Alice : hello
@enduml

Is this what you are expecting ?

commented Mar 6, 2016 by fyhao (120 points)
Hi, this is what I expecting, helped me a lot, thanks.
...