How to style package titles?

0 votes
asked Dec 1, 2015 in To be sorted by anonymous

How do I style the package title? 

 

I can not find any hints on how to do that. I would like to have the title in a different font color and not thick. I can only style border and background of the package.

 

@startuml

skinparam package {
  BackgroundColor #DDDDDD
  BorderColor #404246
  BorderThickness 1
  FontColor #404246
}
package "Configuration files" {
[mapping] 
}
@enduml

1 Answer

0 votes
answered Dec 3, 2015 by plantuml (295,000 points)

Hi, there is a bug in the current version.

This has been fixed in last beta : https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

You can now have:

@startuml
skinparam package {
  BackgroundColor blue
  BorderColor red
  BorderThickness 4
  FontColor green
  FontSize 40
}

package "Configuration files" {
[foo]
}
@enduml

 

...