Newer
Older
templates / plantuml / default-skin.ipu
Mark on 13 Mar 2017 1 KB Whoopsy - extra close bracket.
skinparam {

	' use the strictuml style - no circles, no footboxes, no drop shadows, and proper arrows
	Style strictuml

	' slightly rounded boxes
	RoundCorner 8

	' make PNGs transparent
	BackgroundColor transparent

	' slightly increase space around participants
	ParticipantPadding 5

	DefaultFontName Roboto Condensed
	TitleFontName Open Sans
	TitleFontStyle bold
	TitleFontSize 18

	Database {
		' the default border no longer matches the normal colors (bug?), so fix this
		BorderColor #A80036
	}

	Sequence {

		' for some reason sequence diagrams are ignoring the default font, so set it explicitly
		TitleFontName Open Sans
		TitleFontStyle bold
		TitleFontSize 18

		' make lifelines yellow too
		LifeLineBackgroundColor #FDFDCD

		Message {
			Align left
		}

		' make stereotypes less ugly
		Stereotype {
			Font {
				Size 10
				Style plain
			}
		}

	}

	Class {

		' get rid of access modifier icons
		AttributeIconSize 0

		' shrink message font size
		ArrowFontSize 10

		' make stereotypes less ugly
		Stereotype {
			Font {
				Size 10
				Style plain
			}
		}

	}

}