Hello PlantUML,
Here is a test with collections on Sequence diagram:
| Code | Ourput |
| skinparam: KO | @startuml
skinparam participant {
BackgroundColor palegreen
FontColor red
}
skinparam collections {
BackgroundColor pink
FontColor blue
}
participant participant
collections collections
note over collections: Why the label\n of collections\n is not blue?
@enduml |  |
style: OK | @startuml
<style>
participant {
BackGroundColor palegreen
FontColor red
}
collections {
BackGroundColor palegreen
FontColor blue
}
</style>
participant participant
collections collections
note over collections: With **style** the label\n of collections\n is **blue**?
@enduml |  |
With skinparam the FontColor of the Collections is taken from the FontColor of participant!
Is it possible to correct, or just to confirm to use style now?
Regards,
Th.