Newer
Older
templates / plantuml / default-skin.ipu
skinparam {

	' use the strictuml style - no circles, no footboxes, and proper arrows
	Style strictuml
	
	' re-enable drop shadows since strictuml turns it off
	Shadowing true
	
	' slightly rounded boxes
	RoundCorner 8

	BackgroundColor transparent

	DefaultFontName Open Sans
	TitleFontName Open Sans
	TitleFontStyle bold
	TitleFontSize 18

	Sequence {

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


		Message {
			Align center
		}

		Box {
			BackgroundColor #EEEEEE
		}
	
		Stereotype {
			Font {
				Size 10
				Style plain
			}
		}

	}

	Class {

		' get rid of access modifier icons
		AttributeIconSize 0

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

	}



}