Hello PlantUML team,
- Could you allow style on nwdiag Diagram?
Here is an example or a proposal for the keyword (nwdiagDiagram, network, server, group,...):
@startuml
<style>
nwdiagDiagram {
network {
BackGroundColor gray
LineColor black
LineThickness 1.0
FontSize 11
}
server {
BackGroundColor blue
LineColor black
LineThickness 1.0
' FontXXX for both description or address
FontSize 11
FontColor #blue
}
group {
BackGroundColor palegreen
LineColor black
LineThickness 2.0
FontSize 11
FontStyle bold
Margin 5
Padding 5
}
}
</style>
nwdiag {
network DMZ {
address = "y.x.x.x/24"
web01 [address = "y.x.x.1"];
web02 [address = "y.x.x.2"];
}
network Internal {
web01;
web02;
db01 [address = "w.w.w.z", shape = database];
}
group {
'color = "#77FF77";
description = "long group label";
web01;
web02;
db01;
}
}
@enduml

Thanks for your works,
Regards,
Th.