Please provide a skinparam for the lollipop background color

0 votes
asked Sep 7, 2017 in Closed feature request by DaRolla (360 points)

I would like to change the lollipop background color in a deployment diagram, it's default is white.

@startuml

something -right(0- anything : description

@enduml

This one helps to color the line

skinparam componentArrow {
    Color #green    
}

And this one the text onto the line:

skinparam class {
    ArrowFontColor #green
}

1 Answer

0 votes
answered Sep 11, 2017 by plantuml (295,000 points)
selected Mar 21, 2018 by Anthony-Gaudino
 
Best answer

This is not possible in official release.

However, in last beta, we have added a new skinparam so that you can have:

https://www.dropbox.com/s/koo42q3d9gxw288/plantuml.jar?dl=0

@startuml
skinparam arrowColor  #blue
skinparam arrowFontColor #blue
skinparam arrowLollipopColor #red
something -right(0- anything : description
@enduml

 

Is this what you are looking for ?

asked Feb 10, 2021 in Bug by The-Lu (64,340 points)
edited Feb 10, 2021 by The-Lu
Differences between PNG and SVG outputs, for ArrowLollipopColor on component diagram
...