How to get the default
style (including its color schema) that has been used by earlier versions? You may see many examples of such a style in the PDF Guide.
I am asking, because plantuml.1.2023.7.jar is not capable to apply the former default style. For example (see the attached image), I had to inject the following style (see below) in order to achieve some resemblance to the former default style. Compare this approach (and effort) with plantuml.1.2019.6.jar, where the default style was applied without the need to inject any extra code.
- Is there an easier way to achieve resemblance to the former default style?
- What do you do to achieve resemblance to the former default style?
skinparam useBetaStyle true
<style>
activityDiagram {
shadowing 3.0
activity {
lineColor FireBrick
lineThickness 1.8
backgroundColor Business
}
note {
lineColor FireBrick
lineThickness 1.1
backgroundColor Yellow
}
arrow {
lineColor FireBrick
lineThickness 1.6
}
circle {
stop {
backgroundColor White
}
}
}
</style>