Hello,
I am trying to skin packages, but empty packages do not respect skinparamconfiguration.
Specifically, I would expect the following code:
@startuml
skinparam package {
FontColor green
FontSize 60
BorderStyle dashed
}
package pack1
package pack2 {
rectangle myBox
}
pack1 --> pack2
@enduml
To render with the same font size and color. Instead it renders this (taken from plantuml so if you fix it it should render both packages in the same way):