diff --git a/plantuml/default-skin.ipu b/plantuml/default-skin.ipu index 71d4d6d..1f6ec13 100644 --- a/plantuml/default-skin.ipu +++ b/plantuml/default-skin.ipu @@ -6,26 +6,227 @@ ' slightly rounded boxes RoundCorner 8 - ' make PNGs transparent - BackgroundColor transparent + ' transparent would be better, but seems to be problematic for some diagrams + ' (black background fill on some things) + BackgroundColor white ' slightly increase space around participants (currently has a bug with participant creation) 'ParticipantPadding 5 - DefaultFontName Roboto Condensed - TitleFontName Open Sans + DefaultFontName "Open Sans" + DefaultFontStyle plain + TitleFontName "Open Sans" TitleFontStyle bold TitleFontSize 18 - Database { - ' the default border no longer matches the normal colors (bug?), so fix this + Artifact { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + } + Card { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Cloud { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Database { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + File { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Folder { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Frame { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Hexagon { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Node { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Package { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Rectangle { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Storage { + + ' for some reason half of the elements for deployment diagrams have a black border + ' instead of the default reddish + BorderColor #A80036 + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + + Usecase { + + ' make stereotypes less ugly + Stereotype { + Font { + Size 10 + Style plain + } + } + + } + Sequence { ' for some reason sequence diagrams are ignoring the default font, so set it explicitly - TitleFontName Open Sans + TitleFontName "Open Sans" TitleFontStyle bold TitleFontSize 18 @@ -48,7 +249,10 @@ Class { + FontStyle bold + ' get rid of access modifier icons + ' use AttributeIconSize default to override this for ERDs AttributeIconSize 0 ' shrink message font size @@ -64,4 +268,9 @@ } + Note { + FontSize 11 + BackgroundColor LightGreen + } + }