All Skin Parameters

All “skinparams” (skin parameters) available in PlantUML in alphabetical order.

A

Activity

ActivityBackgroundColor
Usage:

ActivityBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for shapes (except diamonds, start, and stop) on an Activity diagram.

Applies to:

Activity diagrams

Example:

ActivityBackgroundColor lightCyan

@startuml

title ActivityBackgroundColor lightCyan
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


skinparam ActivityBackgroundColor lightCyan
!include activity-alarmrings.txt

@enduml

ActivityBarColor
Usage:

ActivityBarColor [ #predefinedColorName | #hexColorNumber ]

The color for the synchronization bar(s) in an Activity diagram. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Activity diagrams

Example:

ActivityBarColor red

@startuml
title ActivityBarColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityBarColor red


(*)  --> "run command"
--> ===B1===
--> "Parallel Activity 1"
--> ===B2===

===B1=== --> "Parallel Activity 2"
--> ===B2===
--> (*)


'!include ../../../plantuml-styles/ae-copyright-footer.txt
@enduml

ActivityBorderColor
Usage:

ActivityBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for every shape in an Activity diagram.

Applies to:

Activity diagrams

Example:

ActivityBorderColor red

@startuml
title ActivityBorderColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityBorderColor red

'!include activity.txt

!include activity-alarmrings.txt

@enduml

ActivityBorderThickness
Usage:

ActivityBorderThickness [ number ]

The border thickness for every shape in an Activity diagram.

Note: This only works with the ‘beta’ (later) version of the Activity diagram syntax.

Applies to:

Activity diagrams

Example:

ActivityBorderThickness 5

@startuml
title ActivityBorderThickness 5
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


skinparam ActivityBorderThickness 5

!include activity-alarmrings.txt

@enduml

activityDiamondBackgroundColor
Usage:

activityDiamondBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a diamond on an Activity diagram.

Note: “activity” must start with a lower-case a.

Applies to:

Activity diagrams

Example:

activityDiamondBackgroundColor lawnGreen

@startuml
title activityDiamondBackgroundColor GreenYellow
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam activityDiamondBackgroundColor GreenYellow
!include activity-alarmrings.txt

@enduml

activityDiamondBorderColor
Usage:

activityDiamondBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a diamond in an Activity diagram.

Applies to:

Activity diagrams

Example:

activityDiamondBorderColor red

@startuml

title activityDiamondBorderColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam activityDiamondBorderColor red
!include activity-alarmrings.txt


@enduml

activityDiamondFontColor
Usage:

activityDiamondFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a diamond in an Activity diagram. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Activity diagrams

Example:

activityDiamondFontColor red

@startuml

title activityDiamondFontColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam activityDiamondFontColor red
!include activity-alarmrings.txt


@enduml

activityDiamondFontName
Usage:

activityDiamondFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Activity diagrams

Example:

activityDiamondFontName Papyrus

@startuml

title activityDiamondFontName Papyrus
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam activityDiamondFontName Papyrus
!include activity-alarmrings.txt

@enduml

activityDiamondFontSize
Usage:

activityDiamondFontSize [ number ]

The font size for text in a diamond in an Activity diagram

Applies to:

Activity diagrams

Example:

activityDiamondFontSize 18

@startuml

title activityDiamondFontSize 18
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam activityDiamondFontSize 18
!include activity-alarmrings.txt

@enduml

activityDiamondFontStyle
Usage:

activityDiamondFontStyle [ normal | plain | italic | bold ]

The font style for text in a diamond in an Activity diagram.

Applies to:

Activity diagrams

Example:

activityDiamondFontStyle bold

@startuml

title activityDiamondFontStyle bold
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam activityDiamondFontStyle bold
!include activity-alarmrings.txt

@enduml

ActivityEndColor
Usage:

ActivityEndColor [ #predefinedColorName | #hexColorNumber ]

The fill color for the end symbol in an Activity diagram.

Applies to:

Activity diagrams

Example:

ActivityEndColor Fuschia

@startuml

title ActivityEndColor Fuchsia
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityEndColor Fuchsia
!include activity-alarmrings.txt

@enduml

ActivityFontColor
Usage:

ActivityFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for all text except diamonds in an Activity diagram. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Activity diagrams

Example:

ActivityFontColor red

@startuml

title ActivityFontColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityFontColor red
!include activity-alarmrings.txt

@enduml

ActivityFontName
Usage:

ActivityFontName [ fontNameOnYourSystem ]

The font name for all text except diamonds in Activity diagrams. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Activity diagrams

Example:

ActivityFontName Papyrus

@startuml

title ActivityFontName Papyrus
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityFontName Papyrus
!include activity-alarmrings.txt


@enduml

ActivityFontSize
Usage:

ActivityFontSize [ number ]

The font size for all text except for diamonds in Activity diagrams.

Applies to:

Activity diagrams

Example:

ActivityFontSize 18

@startuml

title ActivityFontSize 18
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityFontSize 18
!include activity-alarmrings.txt

@enduml

ActivityFontStyle
Usage:

ActivityFontStyle [ normal | plain | italic | bold ]

The font style for text except for diamonds in Activity diagrams.

Applies to:

Activity diagrams

Example:

ActivityFontStyle bold

@startuml

title ActivityFontStyle bold
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityFontStyle bold
!include activity-alarmrings.txt


@enduml

ActivityStartColor
Usage:

ActivityStartColor [ #predefinedColorName | #hexColorNumber ]

The fill color for the start symbol in an Activiy diagram.

Applies to:

Activity diagrams

Example:

ActivityStartColor aqua

@startuml

title ActivityStartColor aqua
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_FONT              Helvetica Neue
!define DEFAULT_FONT_SIZE         14
!define SMALLER_FONT_SIZE         12

!define DEFAULT_FONT_COLOR        Navy

!define DEFAULT_NOT_SO_DARK       #666666

!define TITLE_FONT_SIZE           18
!define TITLE_FONT_NAME           Georgia
!define TITLE_FONT_STYLE          normal

skinparam componentStyle        uml2

skinparam defaultFontName       DEFAULT_FONT
skinparam defaultTextAlignment  center

skinparam handwritten           false
skinparam monochrome            false
skinparam shadowing             true

skinparam BackgroundColor  white
skinparam HyperlinkColor   #0000DD


skinparam Default {
    FontColor     DEFAULT_FONT_COLOR
    FontName      DEFAULT_FONT
    FontSize      DEFAULT_FONT_SIZE
    FontStyle     plain
}

skinparam GenericArrow {
    FontColor   #666666
    'FontName    courier
    FontSize    12
    FontStyle   italic

}

skinparam title {
    FontColor     black
    FontName      TITLE_FONT_NAME
    FontSize      TITLE_FONT_SIZE
    FontStyle     TITLE_FONT_STYLE
}

skinparam legend {
    BackgroundColor   white
    BorderColor       DEFAULT_NOT_SO_DARK
    FontColor         black
    FontName          DEFAULT_FONT
    FontSize          SMALLER_FONT_SIZE
}

skinparam header {
    FontColor     DEFAULT_NOT_SO_DARK
    FontName      DEFAULT_FONT
    FontSize      9
    FontStyle     plain
}

skinparam Footer {
    FontColor     DEFAULT_NOT_SO_DARK
    FontSize      9
    FontName      TITLE_FONT_NAME
    FontStyle     italic
}


/' .......................................................
     Activities
'/
skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}



skinparam ActivityStartColor aqua
!include activity-alarmrings.txt

@enduml

Actor

ActorBackgroundColor
Usage:

ActorBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Actor.

Applies to:

Component diagrams, Sequence diagrams, Use Case diagrams

Example:

ActorBackgroundColor lawnGreen

@startuml

title ActorBackgroundColor GreenYellow
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBackgroundColor GreenYellow

!include usecase-2actors.txt

@enduml

ActorBorderColor
Usage:

ActorBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Actor.

Applies to:

Component diagrams, Sequence diagrams, Use Case diagrams

Example:

ActorBorderColor red

@startuml

title ActorBorderColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor red

!include usecase-2actors.txt


@enduml

ActorFontColor
Usage:

ActorFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for actor (label) text. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Component diagrams, Sequence diagrams, Use Case diagrams

Example:

ActorFontColor red

@startuml

title ActorFontColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorFontColor red

!include usecase-2actors.txt


@enduml

ActorFontName
Usage:

ActorFontName [ fontNameOnYourSystem ]

The font name for text in zz. The font name for text in

Applies to:

Component diagrams, Sequence diagrams, Use Case diagrams

Example:

ActorFontName Papyrus

@startuml

title ActorFontName Papyrus
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorFontName Papyrus
!include usecase-2actors.txt


@enduml

ActorFontSize
Usage:

ActorFontSize [ number ]

The font size for text in zz.

Applies to:

Component diagrams, Sequence diagrams, Use Case diagrams

Example:

ActorFontSize 18

@startuml

title ActorFontSize 18
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorFontSize 18
!include usecase-2actors.txt

@enduml

ActorFontStyle
Usage:

ActorFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Component diagrams, Sequence diagrams, Use Case diagrams

Example:

ActorFontStyle bold

@startuml

title ActorFontStyle bold
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorFontStyle bold

!include usecase-2actors.txt


@enduml

ActorStereotypeFontColor
Usage:

ActorStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for stereotype text for an actor. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Component diagrams, Use Case diagrams

Example:

ActorStereotypeFontColor red

@startuml

title ActorStereotypeFontColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorStereotypeFontColor red

!include usecase-2actors.txt

actor  Tim <<Stereotype text>>


@enduml

ActorStereotypeFontName
Usage:

ActorStereotypeFontName [ fontNameOnYourSystem ]

The font name for stereotype text for an actor. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Component diagrams, Use Case diagrams

Example:

ActorStereotypeFontName Papyrus

@startuml
title ActorStereotypeFontName Papyrus
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam ActorStereotypeFontName Papyrus

!include usecase-2actors.txt
actor Tim <<Stereotype text>>

@enduml

ActorStereotypeFontSize
Usage:

ActorStereotypeFontSize [ number ]

The font size for stereotype text for an actor.

Applies to:

Component diagrams, Use Case diagrams

Example:

ActorStereotypeFontSize 18

@startuml
title ActorStereotypeFontSize 18
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam ActorStereotypeFontSize 18

actor Tim <<Stereotype\ntext>>

interface "Data Access" as DA

DA - [First Component]
[First Component] ..> Tim : use

package "Other Groups" {
Marsha - [Second Component]

[First Component] --> Marsha
}

@enduml

ActorStereotypeFontStyle
Usage:

ActorStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for stereotype text for an actor.

Applies to:

Component diagrams, Use Case diagrams

Example:

ActorStereotypeFontStyle bold

@startuml
title ActorStereotypeFontStyle bold
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam ActorStereotypeFontStyle bold

actor Tim <<Stereotype\ntext>>

interface "Data Access" as DA

DA - [First Component]
[First Component] ..> Tim : use

package "Other Groups" {
Marsha - [Second Component]

[First Component] --> Marsha
}

@enduml

Agent

AgentBackgroundColor
Usage:

AgentBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Agent element.

Applies to:

Deployement diagrams

Example:

AgentBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentBackgroundColor lawnGreen
skinparam AgentBackgroundColor lawnGreen

agent agent


@enduml

AgentBorderColor
Usage:

AgentBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Agent.

Applies to:

Deployement diagrams

Example:

AgentBorderColor blue

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentBorderColor blue
skinparam AgentBorderColor blue

agent agent


@enduml

AgentBorderThickness
Usage:

AgentBorderThickness [ number ]

The border thickness for an agent element.

Applies to:

Deployement diagrams

Example:

AgentBorderThickness 5

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentBorderThickness 5
skinparam AgentBorderThickness 5

agent agent


@enduml

AgentFontColor
Usage:

AgentFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in an agent. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Deployement diagrams

Example:

AgentFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentFontColor red
skinparam AgentFontColor red

agent agent

@enduml

AgentFontName
Usage:

AgentFontName [ fontNameOnYourSystem ]

The font name for text in an agent. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Deployement diagrams

Example:

AgentFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentFontName Papyrus
skinparam AgentFontName Papyrus

agent agent


@enduml

AgentFontSize
Usage:

AgentFontSize [ number ]

The font size for text in an agent.

Applies to:

Deployement diagrams

Example:

AgentFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentFontSize 18
skinparam AgentFontSize 18

agent agent

@enduml

AgentFontStyle
Usage:

AgentFontStyle [ normal | plain | italic | bold ]

The font style for text in an agent.

Applies to:

Deployement diagrams

Example:

AgentFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentFontStyle italic
skinparam AgentFontStyle italic

agent agent


@enduml

AgentStereotypeFontColor
Usage:

AgentStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for the stereotype text for an agent. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Deployement diagrams

Example:

AgentStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentStereotypeFontColor red
skinparam AgentStereotypeFontColor red

agent agent <<Stereotype text>>


@enduml

AgentStereotypeFontName
Usage:

AgentStereotypeFontName [ fontNameOnYourSystem ]

The font name for the stereotype text for an agent. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Deployement diagrams

Example:

AgentStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentStereotypeFontName Papyrus
skinparam AgentStereotypeFontName Papyrus

agent agent <<Stereotype text>>


@enduml

AgentStereotypeFontSize
Usage:

AgentStereotypeFontSize [ number ]

The font size for the stereotype text for an agent.

Applies to:

Deployement diagrams

Example:

AgentStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentStereotypeFontSize 18
skinparam AgentStereotypeFontSize 18

agent agent <<Stereotype text>>


@enduml

AgentStereotypeFontStyle
Usage:

AgentStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for the stereotype text for an agent.

Applies to:

Deployement diagrams

Example:

AgentStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

title AgentStereotypeFontStyle italic
skinparam AgentStereotypeFontStyle italic

agent agent <<Stereotype text>>


@enduml

Arrow

ArrowColor
Usage:

ArrowColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

ArrowColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowFontColor
Usage:

ArrowFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text for arrows. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ArrowFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowFontName
Usage:

ArrowFontName [ fontNameOnYourSystem ]

The font name for text for arrows. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ArrowFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowFontSize
Usage:

ArrowFontSize [ number ]

The font size for text for arrows.

Applies to:

zz

Example:

ArrowFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowFontStyle
Usage:

ArrowFontStyle [ normal | plain | italic | bold ]

The font style for text for arrows.

Applies to:

zz

Example:

ArrowFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowLollipopColor
Usage:

ArrowLollipopColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

ArrowLollipopColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowMessageAlignment
Usage:

ArrowMessageAlignment zz

zz

Applies to:

zz

Example:

ArrowMessageAlignment zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ArrowThickness
Usage:

ArrowThickness [ number ]

zz

Applies to:

zz

Example:

ArrowThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Artifact

ArtifactBackgroundColor
Usage:

ArtifactBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Artifact.

Applies to:

zz

Example:

ArtifactBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactBackgroundColor lawnGreen

title ArtifactBackgroundColor lawnGreen

artifact Artifact


@enduml

ArtifactBorderColor
Usage:

ArtifactBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Artifact.

Applies to:

zz

Example:

ArtifactBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactBorderColor red

title ArtifactBorderColor red

artifact Artifact


@enduml

ArtifactFontColor
Usage:

ArtifactFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in an Artifact. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ArtifactFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactFontColor red

title ArtifactFontColor red

artifact Artifact


@enduml

ArtifactFontName
Usage:

ArtifactFontName [ fontNameOnYourSystem ]

The font name for text in an Artifact. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ArtifactFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactFontName Papyrus

title ArtifactFontName Papyrus

artifact Artifact


@enduml

ArtifactFontSize
Usage:

ArtifactFontSize [ number ]

The font size for text in an Artifact.

Applies to:

zz

Example:

ArtifactFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactFontSize 18

title ArtifactFontSize 18

artifact Artifact


@enduml

ArtifactFontStyle
Usage:

ArtifactFontStyle [ normal | plain | italic | bold ]

The font style for text in an Artifact.

Applies to:

zz

Example:

ArtifactFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactFontStyle italic

title ArtifactFontStyle italic

artifact Artifact


@enduml

ArtifactStereotypeFontColor
Usage:

ArtifactStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in an Artifact Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ArtifactStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactStereotypeFontColor red

title ArtifactStereotypeFontColor red

artifact Artifact <<Stereotype>>


@enduml

ArtifactStereotypeFontName
Usage:

ArtifactStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in an Artifact Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ArtifactStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactStereotypeFontName Papyrus

title ArtifactStereotypeFontName Papyrus

artifact Artifact <<Stereotype>>


@enduml

ArtifactStereotypeFontSize
Usage:

ArtifactStereotypeFontSize [ number ]

The font size for text in an Artifact Stereotype.

Applies to:

zz

Example:

ArtifactStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactStereotypeFontSize 18

title ArtifactStereotypeFontSize 18

artifact Artifact <<Stereotype>>

@enduml

ArtifactStereotypeFontStyle
Usage:

ArtifactStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in an Artifact Stereotype.

Applies to:

zz

Example:

ArtifactStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ArtifactStereotypeFontStyle italic

title ArtifactStereotypeFontStyle italic

artifact Artifact <<Stereotype>>

@enduml

B

BackgroundColor

BackgroundColor
Usage:

BackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a .

Applies to:

zz

Example:

BackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Biddable

BiddableBackgroundColor
Usage:

BiddableBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Biddable.

Applies to:

zz

Example:

BiddableBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

BiddableBorderColor
Usage:

BiddableBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Biddable.

Applies to:

zz

Example:

BiddableBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Boundary

BoundaryBackgroundColor
Usage:

BoundaryBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Boundary.

Applies to:

zz

Example:

BoundaryBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryBackgroundColor lawnGreen

title BoundaryBackgroundColor lawnGreen

boundary Boundary 
@enduml

BoundaryBorderColor
Usage:

BoundaryBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Boundary.

Applies to:

zz

Example:

BoundaryBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryBorderColor red

title BoundaryBorderColor red

boundary Boundary

@enduml

BoundaryFontColor
Usage:

BoundaryFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Boundary. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

BoundaryFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryFontColor red

title BoundaryFontColor red

boundary Boundary

@enduml

BoundaryFontName
Usage:

BoundaryFontName [ fontNameOnYourSystem ]

The font name for text in a Boundary. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

BoundaryFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryFontName Papyrus

title BoundaryFontName Papyrus

boundary Boundary

@enduml

BoundaryFontSize
Usage:

BoundaryFontSize [ number ]

The font size for text in a Boundary.

Applies to:

zz

Example:

BoundaryFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryFontSize 18

title BoundaryFontSize 18

boundary Boundary

@enduml

BoundaryFontStyle
Usage:

BoundaryFontStyle [ normal | plain | italic | bold ]

The font style for text in a Boundary.

Applies to:

zz

Example:

BoundaryFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryFontStyle italic

title BoundaryFontStyle italic

boundary Boundary

@enduml

BoundaryStereotypeFontColor
Usage:

BoundaryStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Boundary Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

BoundaryStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryStereotypeFontColor red

title BoundaryStereotypeFontColor red

boundary Boundary <<Stereotype>>

@enduml

BoundaryStereotypeFontName
Usage:

BoundaryStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Boundary Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

BoundaryStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryStereotypeFontName Papyrus

title BoundaryStereotypeFontName Papyrus

boundary Boundary <<Stereotype>>

@enduml

BoundaryStereotypeFontSize
Usage:

BoundaryStereotypeFontSize [ number ]

The font size for text in a Boundary Stereotype.

Applies to:

zz

Example:

BoundaryStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryStereotypeFontSize 18

title BoundaryStereotypeFontSize 18

boundary Boundary <<Stereotype>>

@enduml

BoundaryStereotypeFontStyle
Usage:

BoundaryStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Boundary Stereotype.

Applies to:

zz

Example:

BoundaryStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoundaryStereotypeFontStyle italic

title BoundaryStereotypeFontStyle italic

boundary Boundary <<Stereotype>>

@enduml

BoxPadding

BoxPadding
Usage:

BoxPadding zz

Spacing, in pixels, to the left and right of a box.

Applies to:

Sequence diagrams

Example:

BoxPadding 100

@startuml
title BoxPadding 100
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam BoxPadding 100

!include seq-AliceBobKarlDB.txt
@enduml

Here is what the diagram looks like =without= BoxPadding:

@startuml
title BoxPadding: none
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml


!include seq-AliceBobKarlDB.txt
@enduml

C

Caption

CaptionFontColor
Usage:

CaptionFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Caption. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

All diagrams

Example:

CaptionFontColor red

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CaptionFontColor red

title CaptionFontColor red

!include activity-alarmrings.txt

caption This is the caption for the diagram.

@enduml

CaptionFontName
Usage:

CaptionFontName [ fontNameOnYourSystem ]

The font name for text in a Caption. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

All diagrams

Example:

CaptionFontName Papyrus

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CaptionFontName Papyrus

title CaptionFontName Papyrus

!include activity-alarmrings.txt

caption This is the caption for the diagram.

@enduml

CaptionFontSize
Usage:

CaptionFontSize [ number ]

The font size for text in a Caption.

Applies to:

All diagrams

Example:

CaptionFontSize 18

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CaptionFontSize 18

title CaptionFontSize 18

!include activity-alarmrings.txt

caption This is the caption for the diagram.

@enduml

CaptionFontStyle
Usage:

CaptionFontStyle [ normal | plain | italic | bold ]

The font style for text in a Caption.

Applies to:

All diagrams

Example:

CaptionFontStyle italic

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CaptionFontStyle italic

title CaptionFontStyle italic

!include activity-alarmrings.txt

caption This is the caption for the diagram.

@enduml

Card

CardBackgroundColor
Usage:

CardBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Card.

Applies to:

Deployment diagrams

Example:

CardBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardBackgroundColor lawnGreen

title CardBackgroundColor lawnGreen

card Card 
@enduml

CardBorderColor
Usage:

CardBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Card.

Applies to:

Deployment diagrams

Example:

CardBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardBorderColor red

title CardBorderColor red

card Card

@enduml

CardBorderThickness
Usage:

CardBorderThickness [ number ]

zz

Applies to:

Deployment diagrams

Example:

CardBorderThickness [ number ]

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardBorderThickness 5

title CardBorderThickness 5

card Card

@enduml

CardFontColor
Usage:

CardFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Card. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Deployment diagrams

Example:

CardFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardFontColor red

title CardFontColor red

card Card

@enduml

CardFontName
Usage:

CardFontName [ fontNameOnYourSystem ]

The font name for text in a Card. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Deployment diagrams

Example:

CardFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardFontName Papyrus

title CardFontName Papyrus

card Card

@enduml

CardFontSize
Usage:

CardFontSize [ number ]

The font size for text in a Card.

Applies to:

Deployment diagrams

Example:

CardFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardFontSize 18

title CardFontSize 18

card Card

@enduml

CardFontStyle
Usage:

CardFontStyle [ normal | plain | italic | bold ]

The font style for text in a Card.

Applies to:

Deployment diagrams

Example:

CardFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardFontStyle italic

title CardFontStyle italic

card Card

@enduml

CardStereotypeFontColor
Usage:

CardStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Card Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Deployment diagrams

Example:

CardStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardStereotypeFontColor red

title CardStereotypeFontColor red

card Card <<Stereotype>>

@enduml

CardStereotypeFontName
Usage:

CardStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Card Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Deployment diagrams

Example:

CardStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardStereotypeFontName Papyrus

title CardStereotypeFontName Papyrus

card Card <<Stereotype>>

@enduml

CardStereotypeFontSize
Usage:

CardStereotypeFontSize [ number ]

The font size for text in a Card Stereotype.

Applies to:

Deployment diagrams

Example:

CardStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardStereotypeFontSize 18

title CardStereotypeFontSize 18

card Card <<Stereotype>>

@enduml

CardStereotypeFontStyle
Usage:

CardStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Card Stereotype.

Applies to:

Deployment diagrams

Example:

CardStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CardStereotypeFontStyle italic

title CardStereotypeFontStyle italic

card Card <<Stereotype>>

@enduml

CircledCharacter

CircledCharacterFontColor
Usage:

CircledCharacterFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for characters in the class type circles. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

CircledCharacterFontColor blue

@startuml

skinparam CircledCharacterFontColor blue

title CircledCharacterFontColor blue

abstract class AbstractList

@enduml

CircledCharacterFontName
Usage:

CircledCharacterFontName [ fontNameOnYourSystem ]

The font name for text in the class type circles. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

CircledCharacterFontName Papyrus

@startuml

skinparam CircledCharacterFontName Papyrus

title CircledCharacterFontColor blue

abstract class AbstractList

@enduml

CircledCharacterFontSize
Usage:

CircledCharacterFontSize [ number ]

The font size for text in the class type circles.

Applies to:

zz

Example:

CircledCharacterFontSize 18

@startuml

skinparam CircledCharacterFontSize 18

title CircledCharacterFontColor blue

abstract class AbstractList

@enduml

CircledCharacterFontStyle
Usage:

CircledCharacterFontStyle [ normal | plain | italic | bold ]

The font style for text in the class type circles.

Applies to:

zz

Example:

CircledCharacterFontStyle italic

@startuml

skinparam CircledCharacterFontStyle italic

title CircledCharacterFontColor blue

abstract class AbstractList

@enduml

CircledCharacterRadius
Usage:

CircledCharacterRadius zz

zz

Applies to:

zz

Example:

CircledCharacterRadius zz

@startuml

skinparam CircledCharacterRadius 15

title CircledCharacterFontColor blue

abstract class AbstractList

@enduml

Class

ClassAttributeFontColor
Usage:

ClassAttributeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Class attribute. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ClassAttributeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassAttributeFontName
Usage:

ClassAttributeFontName [ fontNameOnYourSystem ]

The font name for text in a Class attribute. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ClassAttributeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassAttributeFontSize
Usage:

ClassAttributeFontSize [ number ]

The font size for text in a Class attribute.

Applies to:

zz

Example:

ClassAttributeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassAttributeFontStyle
Usage:

ClassAttributeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Class attribute.

Applies to:

zz

Example:

ClassAttributeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassAttributeIconSize
Usage:

ClassAttributeIconSize [ number ]

zz

Applies to:

zz

Example:

ClassAttributeIconSize [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassBackgroundColor
Usage:

ClassBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Class.

Applies to:

zz

Example:

ClassBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassBorderColor
Usage:

ClassBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Class.

Applies to:

zz

Example:

ClassBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassBorderThickness
Usage:

ClassBorderThickness [ number ]

zz

Applies to:

zz

Example:

ClassBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassFontColor
Usage:

ClassFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Class. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ClassFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassFontName
Usage:

ClassFontName [ fontNameOnYourSystem ]

The font name for text in a Class. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ClassFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassFontSize
Usage:

ClassFontSize [ number ]

The font size for text in a Class.

Applies to:

zz

Example:

ClassFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassFontStyle
Usage:

ClassFontStyle [ normal | plain | italic | bold ]

The font style for text in a Class.

Applies to:

zz

Example:

ClassFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassHeaderBackgroundColor
Usage:

ClassHeaderBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a ClassHeader.

Applies to:

zz

Example:

ClassHeaderBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassStereotypeFontColor
Usage:

ClassStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Class Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ClassStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassStereotypeFontName
Usage:

ClassStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Class Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ClassStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassStereotypeFontSize
Usage:

ClassStereotypeFontSize [ number ]

The font size for text in a Class Stereotype.

Applies to:

zz

Example:

ClassStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ClassStereotypeFontStyle
Usage:

ClassStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Class Stereotype.

Applies to:

zz

Example:

ClassStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Cloud

CloudBackgroundColor
Usage:

CloudBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Cloud.

Applies to:

zz

Example:

CloudBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudBackgroundColor lawnGreen

title CloudBackgroundColor lawnGreen

cloud Cloud 
@enduml

CloudBorderColor
Usage:

CloudBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Cloud.

Applies to:

zz

Example:

CloudBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudBorderColor red

title CloudBorderColor red

cloud Cloud 
@enduml

CloudFontColor
Usage:

CloudFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Cloud. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

CloudFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudFontColor red

title CloudFontColor red

cloud Cloud 
@enduml

CloudFontName
Usage:

CloudFontName [ fontNameOnYourSystem ]

The font name for text in a Cloud. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

CloudFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudFontName Papyrus

title CloudFontName Papyrus

cloud Cloud 
@enduml

CloudFontSize
Usage:

CloudFontSize [ number ]

The font size for text in a Cloud.

Applies to:

zz

Example:

CloudFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudFontSize 18

title CloudFontSize 18

cloud Cloud 
@enduml

CloudFontStyle
Usage:

CloudFontStyle [ normal | plain | italic | bold ]

The font style for text in a Cloud.

Applies to:

zz

Example:

CloudFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudFontStyle italic

title CloudFontStyle italic

cloud Cloud 
@enduml

CloudStereotypeFontColor
Usage:

CloudStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Cloud Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

CloudStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudStereotypeFontColor red

title CloudStereotypeFontColor red

cloud Cloud <<Stereotype>>
@enduml

CloudStereotypeFontName
Usage:

CloudStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Cloud Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

CloudStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudStereotypeFontName Papyrus

title CloudStereotypeFontName Papyrus

cloud Cloud <<Stereotype>>
@enduml

CloudStereotypeFontSize
Usage:

CloudStereotypeFontSize [ number ]

The font size for text in a Cloud Stereotype.

Applies to:

zz

Example:

CloudStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudStereotypeFontSize 18

title CloudStereotypeFontSize 18

cloud Cloud <<Stereotype>>
@enduml

CloudStereotypeFontStyle
Usage:

CloudStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Cloud Stereotype.

Applies to:

zz

Example:

CloudStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam CloudStereotypeFontStyle italic

title CloudStereotypeFontStyle italic

cloud Cloud <<Stereotype>>
@enduml

Collections

CollectionsBackgroundColor
Usage:

CollectionsBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Collection.

Applies to:

zz

Example:

CollectionsBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

CollectionsBorderColor
Usage:

CollectionsBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Collection.

Applies to:

zz

Example:

CollectionsBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ColorArrowSeparationSpace

ColorArrowSeparationSpace
Usage:

ColorArrowSeparationSpace zz

zz

Applies to:

zz

Example:

ColorArrowSeparationSpace zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Component

ComponentBackgroundColor
Usage:

ComponentBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Component.

Applies to:

zz

Example:

ComponentBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentBackgroundColor lawnGreen

title ComponentBackgroundColor lawnGreen

component Component 
@enduml

ComponentBorderColor
Usage:

ComponentBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Component.

Applies to:

zz

Example:

ComponentBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentBorderColor red

title ComponentBorderColor red

component Component 
@enduml

ComponentBorderThickness
Usage:

ComponentBorderThickness [ number ]

zz

Applies to:

zz

Example:

ComponentBorderThickness [ number ]

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentBorderThickness 5

title ComponentBorderThickness 5

component Component 
@enduml

ComponentFontColor
Usage:

ComponentFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Component. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ComponentFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentFontColor red

title ComponentFontColor red

component Component 
@enduml

ComponentFontName
Usage:

ComponentFontName [ fontNameOnYourSystem ]

The font name for text in a Component. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ComponentFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentFontName Papyrus

title ComponentFontName Papyrus

component Component 
@enduml

ComponentFontSize
Usage:

ComponentFontSize [ number ]

The font size for text in a Component.

Applies to:

zz

Example:

ComponentFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentFontSize 18

title ComponentFontSize 18

component Component 
@enduml

ComponentFontStyle
Usage:

ComponentFontStyle [ normal | plain | italic | bold ]

The font style for text in a Component.

Applies to:

zz

Example:

ComponentFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentFontStyle italic

title ComponentFontStyle italic

component Component 
@enduml

ComponentStereotypeFontColor
Usage:

ComponentStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Component Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ComponentStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentStereotypeFontColor red

title ComponentStereotypeFontColor red

component Component <<Stereotype>>
@enduml

ComponentStereotypeFontName
Usage:

ComponentStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Component Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ComponentStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentStereotypeFontName Papyrus

title ComponentStereotypeFontName Papyrus

component Component <<Stereotype>>
@enduml

ComponentStereotypeFontSize
Usage:

ComponentStereotypeFontSize [ number ]

The font size for text in a Component Stereotype.

Applies to:

zz

Example:

ComponentStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentStereotypeFontSize 18

title ComponentStereotypeFontSize 18

component Component <<Stereotype>>
@enduml

ComponentStereotypeFontStyle
Usage:

ComponentStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Component Stereotype.

Applies to:

zz

Example:

ComponentStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ComponentStereotypeFontStyle italic

title ComponentStereotypeFontStyle italic

component Component <<Stereotype>>
@enduml

ComponentStyle
Usage:

ComponentStyle [ normal | plain | italic | bold ]

zz

Applies to:

zz

Example:

ComponentStyle [ normal | plain | italic | bold ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ConditionStyle

ConditionStyle
Usage:

ConditionStyle [ normal | plain | italic | bold ]

zz

Applies to:

zz

Example:

ConditionStyle [ normal | plain | italic | bold ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Control

ControlBackgroundColor
Usage:

ControlBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Control.

Applies to:

zz

Example:

ControlBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlBackgroundColor lawnGreen

title ControlBackgroundColor lawnGreen

control Control 
@enduml

ControlBorderColor
Usage:

ControlBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Control.

Applies to:

zz

Example:

ControlBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlBorderColor red

title ControlBorderColor red

control Control 
@enduml

ControlFontColor
Usage:

ControlFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Control. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ControlFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlFontColor red

title ControlFontColor red

control Control 
@enduml

ControlFontName
Usage:

ControlFontName [ fontNameOnYourSystem ]

The font name for text in a Control. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ControlFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlFontName Papyrus

title ControlFontName Papyrus

control Control 
@enduml

ControlFontSize
Usage:

ControlFontSize [ number ]

The font size for text in a Control.

Applies to:

zz

Example:

ControlFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlFontSize 18

title ControlFontSize 18

control Control 
@enduml

ControlFontStyle
Usage:

ControlFontStyle [ normal | plain | italic | bold ]

The font style for text in a Control.

Applies to:

zz

Example:

ControlFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlFontStyle italic

title ControlFontStyle italic

control Control 
@enduml

ControlStereotypeFontColor
Usage:

ControlStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Control. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ControlStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlStereotypeFontColor red

title ControlStereotypeFontColor red

control Control <<Stereotype>>
@enduml

ControlStereotypeFontName
Usage:

ControlStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Control Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ControlStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlStereotypeFontName Papyrus

title ControlStereotypeFontName Papyrus

control Control <<Stereotype>>
@enduml

ControlStereotypeFontSize
Usage:

ControlStereotypeFontSize [ number ]

The font size for text in a Control Stereotype.

Applies to:

zz

Example:

ControlStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlStereotypeFontSize 18

title ControlStereotypeFontSize 18

control Control <<Stereotype>>
@enduml

ControlStereotypeFontStyle
Usage:

ControlStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Control Stereotype.

Applies to:

zz

Example:

ControlStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ControlStereotypeFontStyle italic

title ControlStereotypeFontStyle italic

control Control <<Stereotype>>
@enduml

D

Database

DatabaseBackgroundColor
Usage:

DatabaseBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Database.

Applies to:

zz

Example:

DatabaseBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseBackgroundColor lawnGreen

title DatabaseBackgroundColor lawnGreen

database Database 
@enduml

DatabaseBorderColor
Usage:

DatabaseBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Database.

Applies to:

zz

Example:

DatabaseBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseBorderColor red

title DatabaseBorderColor red

database Database 
@enduml

DatabaseFontColor
Usage:

DatabaseFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Database. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

DatabaseFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseFontColor red

title DatabaseFontColor red

database Database 
@enduml

DatabaseFontName
Usage:

DatabaseFontName [ fontNameOnYourSystem ]

The font name for text in a Database. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

DatabaseFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseFontName Papyrus

title DatabaseFontName Papyrus

database Database 
@enduml

DatabaseFontSize
Usage:

DatabaseFontSize [ number ]

The font size for text in a Database.

Applies to:

zz

Example:

DatabaseFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseFontSize 18

title DatabaseFontSize 18

database Database 
@enduml

DatabaseFontStyle
Usage:

DatabaseFontStyle [ normal | plain | italic | bold ]

The font style for text in a Database.

Applies to:

zz

Example:

DatabaseFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseFontStyle italic

title DatabaseFontStyle italic

database Database 
@enduml

DatabaseStereotypeFontColor
Usage:

DatabaseStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Database Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

DatabaseStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseStereotypeFontColor red

title DatabaseStereotypeFontColor red

database Database <<Stereotype>>
@enduml

DatabaseStereotypeFontName
Usage:

DatabaseStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Database Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

DatabaseStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseStereotypeFontName Papyrus

title DatabaseStereotypeFontName Papyrus

database Database <<Stereotype>>
@enduml

DatabaseStereotypeFontSize
Usage:

DatabaseStereotypeFontSize [ number ]

The font size for text in a Database Stereotype.

Applies to:

zz

Example:

DatabaseStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseStereotypeFontSize 18

title DatabaseStereotypeFontSize 18

database Database <<Stereotype>>
@enduml

DatabaseStereotypeFontStyle
Usage:

DatabaseStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Database Stereotype.

Applies to:

zz

Example:

DatabaseStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DatabaseStereotypeFontStyle italic

title DatabaseStereotypeFontStyle italic

database Database <<Stereotype>>
@enduml

Default

DefaultFontColor
Usage:

DefaultFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for all text that does not have a color set with a skinparam. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

All diagrams

Example:

DefaultFontColor red

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DefaultFontColor red

title DefaultFontColor red

!include activity-alarmrings.txt


skinparam shadowing false

!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_NOT_SO_DARK       #666666

skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        'FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
'        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    'EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


@enduml

DefaultFontName
Usage:

DefaultFontName [ fontNameOnYourSystem ]

The font name for all text that does not have a font name set with a skinparam. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

All diagrams

Example:

DefaultFontName Papyrus

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DefaultFontName Papyrus

title DefaultFontName Papyrus

!include activity-alarmrings.txt


skinparam shadowing false

!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_NOT_SO_DARK       #666666
!define DEFAULT_FONT_COLOR        Navy

skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


@enduml

DefaultFontSize
Usage:

DefaultFontSize [ number ]

The font size for all text that does not have a size set with a skinparam.

Applies to:

All diagrams

Example:

DefaultFontSize 18

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DefaultFontSize 18

title DefaultFontSize 18

!include activity-alarmrings.txt


skinparam shadowing false

!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_NOT_SO_DARK       #666666
!define DEFAULT_FONT_COLOR        Navy

skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        FontColor   DEFAULT_NOT_SO_DARK
        'FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
'        FontSize          14

    }
   'EndColor        red
    'FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


@enduml

DefaultFontStyle
Usage:

DefaultFontStyle [ normal | plain | italic | bold ]

The font style for all text that does not have a style set with a skinparam.

Applies to:

All diagrams

Example:

DefaultFontStyle bold

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DefaultFontStyle bold

title DefaultFontStyle bold

!include activity-alarmrings.txt


skinparam shadowing false

!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_NOT_SO_DARK       #666666
!define DEFAULT_FONT_COLOR        Navy

skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        'FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        'FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


@enduml

DefaultMonospacedFontName
Usage:

DefaultMonospacedFontName [ fontNameOnYourSystem ]

The monospaced font (name) for all text that does not have a monospaced font name set with a skinparam. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

All diagrams

Example:

DefaultMonospacedFontName Papyrus

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DefaultMonospacedFontName Papyrus

title DefaultMonospacedFontName Papyrus

!include activity-alarmrings.txt


skinparam shadowing false

!define DEFAULT_BACKGROUND_COLOR  white
!define DEFAULT_BORDER_COLOR      #111111
!define DEFAULT_NOT_SO_DARK       #666666
!define DEFAULT_FONT_COLOR        Navy

skinparam activity {

    Arrow {
        Color       DEFAULT_NOT_SO_DARK
        BorderColor  DEFAULT_BORDER_COLOR
        FontColor   DEFAULT_NOT_SO_DARK
        FontSize    12
        FontStyle   italic
    }

    BackgroundColor white
    BorderColor     DEFAULT_BORDER_COLOR

    ' have to specify the background color and border color for Diamond
    ' it does not pick up the default for activity.
    ' maybe because it is defined?  have to define everything for it?
    Diamond {
        FontStyle         italic  ' this is all we really want to change
        BackgroundColor   DEFAULT_BACKGROUND_COLOR
        BorderColor       DEFAULT_BORDER_COLOR
        BorderColor       DEFAULT_NOT_SO_DARK
        FontColor         DEFAULT_FONT_COLOR
        FontSize          14

    }
    EndColor        red
    FontSize         13
    StartColor       ForestGreen
    EndColor         IndianRed
}


@enduml

DefaultTextAlignment
Usage:

DefaultTextAlignment [left | center]

The text alignment for all text that does not have alignment set with a skinparam.

Note: Not working? If you try to use right as the value, PlantUML crashes.

Applies to:

All diagrams

Example:

DefaultTextAlignment zz

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DefaultTextAlignment center

title DefaultTextAlignment center

!include seq-AliceBob.txt



@enduml

Designed

DesignedBackgroundColor
Usage:

DesignedBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Designed.

Applies to:

zz

Example:

DesignedBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedBorderColor
Usage:

DesignedBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Designed.

Applies to:

zz

Example:

DesignedBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomain

DesignedDomainBorderThickness
Usage:

DesignedDomainBorderThickness [ number ]

zz

Applies to:

zz

Example:

DesignedDomainBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainFontColor
Usage:

DesignedDomainFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a DesignedDomain. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

DesignedDomainFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainFontName
Usage:

DesignedDomainFontName [ fontNameOnYourSystem ]

The font name for text in a DesignedDomain. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

DesignedDomainFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainFontSize
Usage:

DesignedDomainFontSize [ number ]

The font size for text in a DesignedDomain.

Applies to:

zz

Example:

DesignedDomainFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainFontStyle
Usage:

DesignedDomainFontStyle [ normal | plain | italic | bold ]

The font style for text in a DesignedDomain.

Applies to:

zz

Example:

DesignedDomainFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainStereotypeFontColor
Usage:

DesignedDomainStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a DesignedDomain. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

DesignedDomainStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainStereotypeFontName
Usage:

DesignedDomainStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a DesignedDomain Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

DesignedDomainStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainStereotypeFontSize
Usage:

DesignedDomainStereotypeFontSize [ number ]

The font size for text in a DesignedDomain Stereotype.

Applies to:

zz

Example:

DesignedDomainStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DesignedDomainStereotypeFontStyle
Usage:

DesignedDomainStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a DesignedDomain Stereotype.

Applies to:

zz

Example:

DesignedDomainStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Diagram

DiagramBorderColor
Usage:

DiagramBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Diagram.

Applies to:

zz

Example:

DiagramBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DiagramBorderColor red

title DiagramBorderColor red

cloud cloud

@enduml

DiagramBorderThickness
Usage:

DiagramBorderThickness [ number ]

zz

Applies to:

zz

Example:

DiagramBorderThickness [ number ]

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam DiagramBorderThickness 5

title DiagramBorderThickness 5

cloud cloud

@enduml

Domain

DomainBackgroundColor
Usage:

DomainBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Domain.

Applies to:

zz

Example:

DomainBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainBorderColor
Usage:

DomainBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Domain.

Applies to:

zz

Example:

DomainBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainBorderThickness
Usage:

DomainBorderThickness [ number ]

zz

Applies to:

zz

Example:

DomainBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainFontColor
Usage:

DomainFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Domain. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

DomainFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainFontName
Usage:

DomainFontName [ fontNameOnYourSystem ]

The font name for text in a Domain. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

DomainFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainFontSize
Usage:

DomainFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

DomainFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainFontStyle
Usage:

DomainFontStyle [ normal | plain | italic | bold ]

The font style for text in a Domain.

Applies to:

zz

Example:

DomainFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainStereotypeFontColor
Usage:

DomainStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in a Domain Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

DomainStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainStereotypeFontName
Usage:

DomainStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in a Domain Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

DomainStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainStereotypeFontSize
Usage:

DomainStereotypeFontSize [ number ]

The font size for text in a Domain Stereotype.

Applies to:

zz

Example:

DomainStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

DomainStereotypeFontStyle
Usage:

DomainStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in a Domain Stereotype.

Applies to:

zz

Example:

DomainStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Dpi

Dpi
Usage:

Dpi zz

zz

Applies to:

zz

Example:

Dpi zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

E

Entity

EntityBackgroundColor
Usage:

EntityBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Entity.

Applies to:

zz

Example:

EntityBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityBackgroundColor lawnGreen

title EntityBackgroundColor lawnGreen

entity Entity 
@enduml

EntityBorderColor
Usage:

EntityBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Entity.

Applies to:

zz

Example:

EntityBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityBorderColor red

title EntityBorderColor red

entity Entity 
@enduml

EntityFontColor
Usage:

EntityFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in an Entity. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

EntityFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityFontColor red

title EntityFontColor red

entity Entity 
@enduml

EntityFontName
Usage:

EntityFontName [ fontNameOnYourSystem ]

The font name for text in an Entity. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

EntityFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityFontName Papyrus

title EntityFontName Papyrus

entity Entity 
@enduml

EntityFontSize
Usage:

EntityFontSize [ number ]

The font size for text in an Entity.

Applies to:

zz

Example:

EntityFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityFontSize 18

title EntityFontSize 18

entity Entity 
@enduml

EntityFontStyle
Usage:

EntityFontStyle [ normal | plain | italic | bold ]

The font style for text in an Entity.

Applies to:

zz

Example:

EntityFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityFontStyle italic

title EntityFontStyle italic

entity Entity 
@enduml

EntityStereotypeFontColor
Usage:

EntityStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in an Entity Stereotype. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

EntityStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityStereotypeFontColor red

title EntityStereotypeFontColor red

entity Entity <<Stereotype>>
@enduml

EntityStereotypeFontName
Usage:

EntityStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in an Entity Stereotype. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

EntityStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityStereotypeFontName Papyrus

title EntityStereotypeFontName Papyrus

entity Entity <<Stereotype>>
@enduml

EntityStereotypeFontSize
Usage:

EntityStereotypeFontSize [ number ]

The font size for text in an Entity Stereotype.

Applies to:

zz

Example:

EntityStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityStereotypeFontSize 18

title EntityStereotypeFontSize 18

entity Entity <<Stereotype>>
@enduml

EntityStereotypeFontStyle
Usage:

EntityStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in an Entity Stereotype.

Applies to:

zz

Example:

EntityStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam EntityStereotypeFontStyle italic

title EntityStereotypeFontStyle italic

entity Entity <<Stereotype>>
@enduml

F

File

FileBackgroundColor
Usage:

FileBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a File.

Applies to:

zz

Example:

FileBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileBackgroundColor lawnGreen

title FileBackgroundColor lawnGreen

file File 
@enduml

FileBorderColor
Usage:

FileBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a File.

Applies to:

zz

Example:

FileBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileBorderColor red

title FileBorderColor red

file File 
@enduml

FileFontColor
Usage:

FileFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

FileFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileFontColor red

title FileFontColor red

file File 
@enduml

FileFontName
Usage:

FileFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

FileFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileFontName Papyrus

title FileFontName Papyrus

file File 
@enduml

FileFontSize
Usage:

FileFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

FileFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileFontSize 18

title FileFontSize 18

file File 
@enduml

FileFontStyle
Usage:

FileFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

FileFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileFontStyle italic

title FileFontStyle italic

file File 
@enduml

FileStereotypeFontColor
Usage:

FileStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

FileStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileStereotypeFontColor red

title FileStereotypeFontColor red

file File <<Stereotype>>
@enduml

FileStereotypeFontName
Usage:

FileStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

FileStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileStereotypeFontName Papyrus

title FileStereotypeFontName Papyrus

file File <<Stereotype>>
@enduml

FileStereotypeFontSize
Usage:

FileStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

FileStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileStereotypeFontSize 18

title FileStereotypeFontSize 18

file File <<Stereotype>>
@enduml

FileStereotypeFontStyle
Usage:

FileStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

FileStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FileStereotypeFontStyle italic

title FileStereotypeFontStyle italic

file File <<Stereotype>>
@enduml

Folder

FolderBackgroundColor
Usage:

FolderBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Folder.

Applies to:

zz

Example:

FolderBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderBackgroundColor lawnGreen

title FolderBackgroundColor lawnGreen

folder Folder 
@enduml

FolderBorderColor
Usage:

FolderBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Folder.

Applies to:

zz

Example:

FolderBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderBorderColor red

title FolderBorderColor red

folder Folder 
@enduml

FolderFontColor
Usage:

FolderFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

FolderFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderFontColor red

title FolderFontColor red

folder Folder 
@enduml

FolderFontName
Usage:

FolderFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

FolderFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderFontName Papyrus

title FolderFontName Papyrus

folder Folder 
@enduml

FolderFontSize
Usage:

FolderFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

FolderFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderFontSize 18

title FolderFontSize 18

folder Folder 
@enduml

FolderFontStyle
Usage:

FolderFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

FolderFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderFontStyle italic

title FolderFontStyle italic

folder Folder 
@enduml

FolderStereotypeFontColor
Usage:

FolderStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

FolderStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderStereotypeFontColor red

title FolderStereotypeFontColor red

folder Folder <<Stereotype>>
@enduml

FolderStereotypeFontName
Usage:

FolderStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

FolderStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderStereotypeFontName Papyrus

title FolderStereotypeFontName Papyrus

folder Folder <<Stereotype>>
@enduml

FolderStereotypeFontSize
Usage:

FolderStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

FolderStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderStereotypeFontSize 18

title FolderStereotypeFontSize 18

folder Folder <<Stereotype>>
@enduml

FolderStereotypeFontStyle
Usage:

FolderStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

FolderStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FolderStereotypeFontStyle italic

title FolderStereotypeFontStyle italic

folder Folder <<Stereotype>>
@enduml

Frame

FrameBackgroundColor
Usage:

FrameBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Frame.

Applies to:

zz

Example:

FrameBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameBackgroundColor lawnGreen

title FrameBackgroundColor lawnGreen

frame Frame 
@enduml

FrameBorderColor
Usage:

FrameBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Frame.

Applies to:

zz

Example:

FrameBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameBorderColor red

title FrameBorderColor red

frame Frame 
@enduml

FrameFontColor
Usage:

FrameFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

FrameFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameFontColor red

title FrameFontColor red

frame Frame 
@enduml

FrameFontName
Usage:

FrameFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

FrameFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameFontName Papyrus

title FrameFontName Papyrus

frame Frame 
@enduml

FrameFontSize
Usage:

FrameFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

FrameFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameFontSize 18

title FrameFontSize 18

frame Frame 
@enduml

FrameFontStyle
Usage:

FrameFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

FrameFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameFontStyle italic

title FrameFontStyle italic

frame Frame 
@enduml

FrameStereotypeFontColor
Usage:

FrameStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

FrameStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameStereotypeFontColor red

title FrameStereotypeFontColor red

frame Frame <<Stereotype>>
@enduml

FrameStereotypeFontName
Usage:

FrameStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

FrameStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameStereotypeFontName Papyrus

title FrameStereotypeFontName Papyrus

frame Frame <<Stereotype>>
@enduml

FrameStereotypeFontSize
Usage:

FrameStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

FrameStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameStereotypeFontSize 18

title FrameStereotypeFontSize 18

frame Frame <<Stereotype>>
@enduml

FrameStereotypeFontStyle
Usage:

FrameStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

FrameStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam FrameStereotypeFontStyle italic

title FrameStereotypeFontStyle italic

frame Frame <<Stereotype>>
@enduml

G

GenericDisplay

GenericDisplay
Usage:

GenericDisplay zz

zz

Applies to:

zz

Example:

GenericDisplay zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Guillemet

Guillemet
Usage:

Guillemet [ true | false ]

Whether or not to convert “<<” and “>>” to the guillemet characters « and » respectively. Default is true.

Applies to:

Sequence diagrams

Example:

Guillemet false

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Guillemet false

title Guillemet false

participant Alice << Testable >>
participant  Bob << Generated >>

Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

@enduml

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Guillemet true

title Guillemet true

participant Alice << Testable >>
participant  Bob << Generated >>

Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

@enduml

H

Handwritten

Handwritten
Usage:

Handwritten [ true | false ]

Display the diagram in a “handwritten” style: all lines and outlines are irregularly wavy, as if they were drawn by hand.

Applies to:

All Diagrams

Example:

skinparam Handwritten false:

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Handwritten false

title skinparam Handwritten false
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection

List <|-- AbstractList
Collection <|-- AbstractCollection

Collection <|- List
AbstractCollection <|- AbstractList

enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml

Example:

skinkparam Handwritten true

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Handwritten true

title skinparam Handwritten true
abstract class AbstractList
abstract AbstractCollection
interface List
interface Collection

List <|-- AbstractList
Collection <|-- AbstractCollection

Collection <|- List
AbstractCollection <|- AbstractList

enum TimeUnit {
DAYS
HOURS
MINUTES
}
@enduml

HyperlineColor

HyperlinkColor
Usage:

HyperlinkColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

HyperlinkColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

HyperlineUnderline

HyperlinkUnderline
Usage:

HyperlinkUnderline zz

zz

Applies to:

zz

Example:

HyperlinkUnderline zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

I

Icon

IconIEMandatoryColor
Usage:

IconIEMandatoryColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

IconIEMandatoryColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconPackageBackgroundColor
Usage:

IconPackageBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an IconPackage.

Applies to:

zz

Example:

IconPackageBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconPackageColor
Usage:

IconPackageColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

IconPackageColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconPrivateBackgroundColor
Usage:

IconPrivateBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an IconPrivate.

Applies to:

zz

Example:

IconPrivateBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconPrivateColor
Usage:

IconPrivateColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

IconPrivateColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconProtectedBackgroundColor
Usage:

IconProtectedBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an IconProtected.

Applies to:

zz

Example:

IconProtectedBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconProtectedColor
Usage:

IconProtectedColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

IconProtectedColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconPublicBackgroundColor
Usage:

IconPublicBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an IconPublic.

Applies to:

zz

Example:

IconPublicBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

IconPublicColor
Usage:

IconPublicColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

IconPublicColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Interface

InterfaceBackgroundColor
Usage:

InterfaceBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Interface.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceBackgroundColor lawnGreen

title InterfaceBackgroundColor lawnGreen

component "component Z" as z

interface Interface

z <|- Interface

@enduml

InterfaceBorderColor
Usage:

InterfaceBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Interface.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceBorderColor red

title InterfaceBorderColor red

component "component Z" as z

interface Interface

z <|- Interface

@enduml

InterfaceFontColor
Usage:

InterfaceFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceFontColor red

title InterfaceFontColor red

component "component Z" as z

interface Interface

z <|- Interface

@enduml

InterfaceFontName
Usage:

InterfaceFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceFontName Papyrus

title InterfaceFontName Papyrus


component "component Z" as z

interface Interface

z <|- Interface

@enduml

InterfaceFontSize
Usage:

InterfaceFontSize [ number ]

The font size for text in zz.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceFontSize 18

title InterfaceFontSize 18


component "component Z" as z

interface Interface

z <|- Interface

@enduml

InterfaceFontStyle
Usage:

InterfaceFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceFontStyle italic

title InterfaceFontStyle italic


component "component Z" as z

interface Interface

z <|- Interface

@enduml

InterfaceStereotypeFontColor
Usage:

InterfaceStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceStereotypeFontColor red

title InterfaceStereotypeFontColor red\n

interface Interface <<Stereotype>>

component "component Z" as z

z <|- Interface

@enduml

InterfaceStereotypeFontName
Usage:

InterfaceStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceStereotypeFontName Papyrus

title InterfaceStereotypeFontName Papyrus\n

interface Interface <<Stereotype>>

component "component Z" as z

z <|- Interface

@enduml

InterfaceStereotypeFontSize
Usage:

InterfaceStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceStereotypeFontSize 18

title InterfaceStereotypeFontSize 18\n

interface Interface <<Stereotype>>

component "component Z" as z

z <|- Interface

@enduml

InterfaceStereotypeFontStyle
Usage:

InterfaceStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

UML Component diagrams, zz, and UML Use Case diagrams. Doesn’t work on Class or Object diagrams.

Example:

InterfaceStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam InterfaceStereotypeFontStyle italic

title InterfaceStereotypeFontStyle italic\n

interface Interface <<Stereotype>>

component "component Z" as z

z <|- Interface

@enduml

J

K

L

Legend

LegendBackgroundColor
Usage:

LegendBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Legend.

Applies to:

All diagrams

Example:

LegendBackgroundColor GreenYellow

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam LegendBackgroundColor GreenYellow

title LegendBackgroundColor GreenYellow

!include activity-alarmrings.txt

legend
This is the legend for the diagram.
end legend

@enduml

LegendBorderColor
Usage:

LegendBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Legend.

Applies to:

All diagrams

Example:

LegendBorderColor red

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam LegendBorderColor red

title LegendBorderColor red

!include activity-alarmrings.txt

legend
This is the legend for the diagram.
end legend

@enduml

LegendBorderThickness
Usage:

LegendBorderThickness [ number ]

zz

Applies to:

All diagrams

Example:

LegendBorderThickness [ number ]

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam LegendBorderColor red

title LegendBorderColor red

!include activity-alarmrings.txt

legend
This is the legend for the diagram.
end legend

@enduml

LegendFontColor
Usage:

LegendFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

All diagrams

Example:

LegendFontColor red

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam LegendFontColor red

title LegendFontColor red

!include activity-alarmrings.txt

legend
This is the legend for the diagram.
end legend

@enduml

LegendFontName
Usage:

LegendFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

All diagrams

Example:

LegendFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

LegendFontSize
Usage:

LegendFontSize [ number ]

The font size for text in zz.

Applies to:

All diagrams

Example:

LegendFontSize 18

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam LegendFontSize 18

title LegendFontSize 18

!include activity-alarmrings.txt

legend
This is the legend for the diagram.
end legend

@enduml

LegendFontStyle
Usage:

LegendFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

All diagrams

Example:

LegendFontStyle italic

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam LegendFontStyle italic

title LegendFontStyle italic

!include activity-alarmrings.txt

legend
This is the legend for the diagram.
end legend

@enduml

Lexical

LexicalBackgroundColor
Usage:

LexicalBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Lexical.

Applies to:

zz

Example:

LexicalBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

LexicalBorderColor
Usage:

LexicalBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Lexical.

Applies to:

zz

Example:

LexicalBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Linetype

Linetype
Usage:

Linetype zz

zz

Applies to:

zz

Example:

Linetype zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

M

Machine

MachineBackgroundColor
Usage:

MachineBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Machine.

Applies to:

zz

Example:

MachineBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineBorderColor
Usage:

MachineBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Machine.

Applies to:

zz

Example:

MachineBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineBorderThickness
Usage:

MachineBorderThickness [ number ]

zz

Applies to:

zz

Example:

MachineBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineFontColor
Usage:

MachineFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

MachineFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineFontName
Usage:

MachineFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

MachineFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineFontSize
Usage:

MachineFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

MachineFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineFontStyle
Usage:

MachineFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

MachineFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineStereotypeFontColor
Usage:

MachineStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

MachineStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineStereotypeFontName
Usage:

MachineStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

MachineStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineStereotypeFontSize
Usage:

MachineStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

MachineStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MachineStereotypeFontStyle
Usage:

MachineStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

MachineStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MaxAsciiMessageLength

MaxAsciiMessageLength
Usage:

MaxAsciiMessageLength 10

Maximum size (in characters) between two lifelines for TXT (ASCII) generated output.

Applies to:

Text output of Sequence diagrams

Example:

MaxAsciiMessageLength 10

 ,-----.    ,---.              
 |Alice|    |Bob|              
 `--+--'    `-+-'              
Authentication Request         
    |-------->|                
    |         |                
Authentication Response        
    |<- - - - |                
    |         |                
Another authentication Request 
    |-------->|                
    |         |                
another authentication Response
    |<- - - - |                
 ,--+--.    ,-+-.              
 |Alice|    |Bob|              
 `-----'    `---'              

Here is the same diagram =without= the MaxAsciiMessageLength set:

     ,-----.                           ,---.
     |Alice|                           |Bob|
     `--+--'                           `-+-'
        |    Authentication Request      |  
        |------------------------------->|  
        |                                |  
        |    Authentication Response     |  
        |<- - - - - - - - - - - - - - - -|  
        |                                |  
        |Another authentication Request  |  
        |------------------------------->|  
        |                                |  
        |another authentication Response |  
        |<- - - - - - - - - - - - - - - -|  
     ,--+--.                           ,-+-.
     |Alice|                           |Bob|
     `-----'                           `---'

MaxMessageSize

MaxMessageSize
Usage:

MaxMessageSize [number]

Maxium size in pixels, of a message in a sequence diagram

Applies to:

Sequence diagrams

Example:

MaxMessageSize 100

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

MinClassWidth

MinClassWidth
Usage:

MinClassWidth zz

zz

Applies to:

zz

Example:

MinClassWidth zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Monochrome

Monochrome
Usage:

Monochrome zz

zz

Applies to:

All diagrams

Example:

Monochrome true

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Monochrome true

title Monochrome true

!include activity-alarmrings.txt

@enduml

N

Node

NodeBackgroundColor
Usage:

NodeBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Node.

Applies to:

zz

Example:

NodeBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeBackgroundColor lawnGreen

title NodeBackgroundColor lawnGreen

node Node 
@enduml

NodeBorderColor
Usage:

NodeBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Node.

Applies to:

zz

Example:

NodeBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeBorderColor red

title NodeBorderColor red

node Node 
@enduml

NodeFontColor
Usage:

NodeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

NodeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeFontColor red

title NodeFontColor red

node Node 
@enduml

NodeFontName
Usage:

NodeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

NodeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeFontName Papyrus

title NodeFontName Papyrus

node Node 
@enduml

NodeFontSize
Usage:

NodeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

NodeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeFontSize 18

title NodeFontSize 18

node Node 
@enduml

NodeFontStyle
Usage:

NodeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

NodeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeFontStyle italic

title NodeFontStyle italic

node Node 
@enduml

NodeStereotypeFontColor
Usage:

NodeStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

NodeStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeStereotypeFontColor red

title NodeStereotypeFontColor red

node Node <<Stereotype>>
@enduml

NodeStereotypeFontName
Usage:

NodeStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

NodeStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeStereotypeFontName Papyrus

title NodeStereotypeFontName Papyrus

node Node <<Stereotype>>
@enduml

NodeStereotypeFontSize
Usage:

NodeStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

NodeStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeStereotypeFontSize 18

title NodeStereotypeFontSize 18

node Node <<Stereotype>>
@enduml

NodeStereotypeFontStyle
Usage:

NodeStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

NodeStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam NodeStereotypeFontStyle italic

title NodeStereotypeFontStyle italic

node Node <<Stereotype>>
@enduml

Nodesep

Nodesep
Usage:

Nodesep zz

zz

Applies to:

zz

Example:

Nodesep zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Note

NoteBackgroundColor
Usage:

NoteBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Note.

Applies to:

zz

Example:

NoteBackgroundColor PapayaWhip

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteBackgroundColor Papayawhip

title NoteBackgroundColor Papayawhip

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteBorderColor
Usage:

NoteBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Note.

Applies to:

zz

Example:

NoteBorderColor red

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteBorderColor red

title NoteBorderColor red

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteBorderThickness
Usage:

NoteBorderThickness [ number ]

zz

Applies to:

zz

Example:

NoteBorderThickness [ number ]

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteBorderThickness 5

title NoteBorderThickness 5

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteFontColor
Usage:

NoteFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

NoteFontColor red

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteFontColor red

title NoteFontColor red

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteFontName
Usage:

NoteFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

NoteFontName Papyrus

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteFontName Papyrus

title NoteFontName Papyrus

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteFontSize
Usage:

NoteFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

NoteFontSize 18

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteFontSize 18

title NoteFontSize 18

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteFontStyle
Usage:

NoteFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

NoteFontStyle bold

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteFontStyle bold

title NoteFontStyle bold

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteShadowing
Usage:

NoteShadowing zz

Note: Not working?

Applies to:

zz

Example:

NoteShadowing zz

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteBackgroundColor white
skinparam NoteShadowing true

title NoteShadowing true

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note.

@enduml

NoteTextAlignment
Usage:

NoteTextAlignment zz

Note: Not working?

Applies to:

zz

Example:

NoteTextAlignment zz

@startuml

'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ActorBorderColor   SaddleBrown
skinparam ActorBackgroundColor SaddleBrown

skinparam NoteTextAlignment right

title NoteTextAlignment right

:Admin: #saddleBrown
actor Admin

note right of Admin : This is a note\n with right text\nalignment.

@enduml

O

Object

ObjectAttributeFontColor
Usage:

ObjectAttributeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ObjectAttributeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectAttributeFontName
Usage:

ObjectAttributeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ObjectAttributeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectAttributeFontSize
Usage:

ObjectAttributeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

ObjectAttributeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectAttributeFontStyle
Usage:

ObjectAttributeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

ObjectAttributeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectBackgroundColor
Usage:

ObjectBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Object.

Applies to:

zz

Example:

ObjectBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectBorderColor
Usage:

ObjectBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Object.

Applies to:

zz

Example:

ObjectBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectBorderThickness
Usage:

ObjectBorderThickness [ number ]

zz

Applies to:

zz

Example:

ObjectBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectFontColor
Usage:

ObjectFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ObjectFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectFontName
Usage:

ObjectFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ObjectFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectFontSize
Usage:

ObjectFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

ObjectFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectFontStyle
Usage:

ObjectFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

ObjectFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectStereotypeFontColor
Usage:

ObjectStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ObjectStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectStereotypeFontName
Usage:

ObjectStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ObjectStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectStereotypeFontSize
Usage:

ObjectStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

ObjectStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ObjectStereotypeFontStyle
Usage:

ObjectStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

ObjectStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

P

Package

PackageBackgroundColor
Usage:

PackageBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Package.

Applies to:

zz

Example:

PackageBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageBackgroundColor lawnGreen

title PackageBackgroundColor lawnGreen

package Package 
@enduml

PackageBorderColor
Usage:

PackageBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Package.

Applies to:

zz

Example:

PackageBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageBorderColor red

title PackageBorderColor red

package Package 
@enduml

PackageBorderThickness
Usage:

PackageBorderThickness [ number ]

zz

Applies to:

zz

Example:

PackageBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PackageFontColor
Usage:

PackageFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

PackageFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageFontColor red

title PackageFontColor red

package Package 
@enduml

PackageFontName
Usage:

PackageFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

PackageFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageFontName Papyrus

title PackageFontName Papyrus

package Package 
@enduml

PackageFontSize
Usage:

PackageFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

PackageFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageFontSize 18

title PackageFontSize 18

package Package 
@enduml

PackageFontStyle
Usage:

PackageFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

PackageFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageFontStyle italic

title PackageFontStyle italic

package Package 
@enduml

PackageStereotypeFontColor
Usage:

PackageStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

PackageStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageStereotypeFontColor red

title PackageStereotypeFontColor red

package Package <<Stereotype>>
@enduml

PackageStereotypeFontName
Usage:

PackageStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

PackageStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageStereotypeFontName Papyrus

title PackageStereotypeFontName Papyrus

package Package <<Stereotype>>
@enduml

PackageStereotypeFontSize
Usage:

PackageStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

PackageStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageStereotypeFontSize 18

title PackageStereotypeFontSize 18

package Package <<Stereotype>>
@enduml

PackageStereotypeFontStyle
Usage:

PackageStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

PackageStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam PackageStereotypeFontStyle italic

title PackageStereotypeFontStyle italic

package Package <<Stereotype>>
@enduml

PackageStyle
Usage:

PackageStyle [ normal | plain | italic | bold ]

zz

Applies to:

zz

Example:

PackageStyle [ normal | plain | italic | bold ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PackageTitleAlignment
Usage:

PackageTitleAlignment zz

zz

Applies to:

zz

Example:

PackageTitleAlignment zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Padding

Padding
Usage:

Padding zz

zz

Applies to:

zz

Example:

Padding zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Page

PageBorderColor
Usage:

PageBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Page.

Applies to:

zz

Example:

PageBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PageExternalColor
Usage:

PageExternalColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

PageExternalColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PageMargin
Usage:

PageMargin zz

zz

Applies to:

zz

Example:

PageMargin zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Participant

ParticipantBackgroundColor
Usage:

ParticipantBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Participant.

Applies to:

zz

Example:

ParticipantBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ParticipantBorderColor
Usage:

ParticipantBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Participant.

Applies to:

zz

Example:

ParticipantBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ParticipantFontColor
Usage:

ParticipantFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

ParticipantFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ParticipantFontName
Usage:

ParticipantFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

ParticipantFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ParticipantFontSize
Usage:

ParticipantFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

ParticipantFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ParticipantFontStyle
Usage:

ParticipantFontStyle italic

The font style for participants.

Applies to:

UML Sequence diagrams

Example:

ParticipantFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ParticipantPadding
Usage:

ParticipantPadding 100

The amount of space (=padding=), in pixels, between participants.

Applies to:

UML Sequence diagrams

Example:

ParticipantPadding 200

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam ParticipantPadding 200

Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response

Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response


@enduml

Partition

PartitionBackgroundColor
Usage:

PartitionBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Partition.

Applies to:

zz

Example:

PartitionBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PartitionBorderColor
Usage:

PartitionBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Partition.

Applies to:

zz

Example:

PartitionBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PartitionBorderThickness
Usage:

PartitionBorderThickness [ number ]

zz

Applies to:

zz

Example:

PartitionBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PartitionFontColor
Usage:

PartitionFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

PartitionFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PartitionFontName
Usage:

PartitionFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

PartitionFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PartitionFontSize
Usage:

PartitionFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

PartitionFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PartitionFontStyle
Usage:

PartitionFontStyle [ normal | plain | italic | bold ]

The font style for partitions.

Applies to:

zz

Example:

PartitionFontStyle bold

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

PathHoverColor

PathHoverColor
Usage:

PathHoverColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

PathHoverColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Q

Queue

QueueBackgroundColor
Usage:

QueueBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Queue.

Applies to:

zz

Example:

QueueBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueBackgroundColor lawnGreen

title QueueBackgroundColor lawnGreen

queue Queue 
@enduml

QueueBorderColor
Usage:

QueueBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Queue.

Applies to:

zz

Example:

QueueBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueBorderColor red

title QueueBorderColor red

queue Queue 
@enduml

QueueFontColor
Usage:

QueueFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in queues. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

QueueFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueFontColor red

title QueueFontColor red

queue Queue 
@enduml

QueueFontName
Usage:

QueueFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

QueueFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueFontName Papyrus

title QueueFontName Papyrus

queue Queue 
@enduml

QueueFontSize
Usage:

QueueFontSize [ number ]

The font name for text in queues.

Applies to:

zz

Example:

QueueFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueFontSize 18

title QueueFontSize 18

queue Queue 
@enduml

QueueFontStyle
Usage:

QueueFontStyle italic

The font style for queues.

Applies to:

zz

Example:

QueueFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueFontStyle italic

title QueueFontStyle italic

queue Queue 
@enduml

QueueStereotypeFontColor
Usage:

QueueStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for stereotype text in queues. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

QueueStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueStereotypeFontColor red

title QueueStereotypeFontColor red

queue Queue <<Stereotype>>
@enduml

QueueStereotypeFontName
Usage:

QueueStereotypeFontName [ fontNameOnYourSystem ]

The font name for the stereotype text in a queue. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Note: Not working?

Applies to:

zz

Example:

QueueStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueStereotypeFontName Papyrus

title QueueStereotypeFontName Papyrus

queue Queue <<Stereotype>>
@enduml

QueueStereotypeFontSize
Usage:

QueueStereotypeFontSize [ number ]

The font size for the stereotype text in a queue.

Note: Not working?

Applies to:

zz

Example:

QueueStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueStereotypeFontSize 18

title QueueStereotypeFontSize 18

queue Queue <<Stereotype>>
@enduml

QueueStereotypeFontStyle
Usage:

QueueStereotypeFontStyle [ normal | italic | bold ]

The font style for the stereotype text for queues.

Note: Not working?

Applies to:

zz

Example:

QueueStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam QueueStereotypeFontStyle italic

title QueueStereotypeFontStyle italic

queue Queue <<Stereotype>>
@enduml

R

Ranksep

Ranksep
Usage:

Ranksep zz

zz

Applies to:

zz

Example:

Ranksep zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Rectangle

RectangleBackgroundColor
Usage:

RectangleBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The color of the background for rectangles. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

RectangleBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleBackgroundColor lawnGreen

title RectangleBackgroundColor lawnGreen

rectangle Rectangle 
@enduml

RectangleBorderColor
Usage:

RectangleBorderColor [ #predefinedColorName | #hexColorNumber ]

The color of the rectangle borders. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

RectangleBorderColor Red

RectangleBorderThickness
Usage:

RectangleBorderThickness [ number ]

The thickness, in pixels, of the rectangle borders.

Applies to:

zz

Example:

RectangleBorderThickness 8

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleBorderThickness 8

title RectangleBorderThickness 8

rectangle Rectangle
@enduml

RectangleFontColor
Usage:

RectangleFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in rectangles. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

RectangleFontColor green

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleFontColor green

title RectangleFontColor green

rectangle Rectangle
@enduml

RectangleFontName
Usage:

RectangleFontName [ fontName ]

The font name for text in rectangles. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

RectangleFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleFontName Papyrus

title RectangleFontName Papyrus

rectangle Rectangle 
@enduml

RectangleFontSize
Usage:

RectangleFontSize [ font size number  ]

The font size for text in rectangles.

Applies to:

zz

Example:

RectangleFontSize 24

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleFontName Papyrus
skinparam  RectangleFontSize 24

title  RectangleFontSize 24

rectangle "Rectangle (in Papyrus font)"
@enduml

RectangleFontStyle
Usage:

RectangleFontStyle [ normal | plain | italic | bold ]

The font style for text in rectangles.

Applies to:

zz

Example:

RectangleFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleFontStyle italic

title RectangleFontStyle italic

rectangle Rectangle 
@enduml

RectangleStereotypeFontColor
Usage:

RectangleStereotypeFontColor [ #colorName | #hexnumber ]

The font color for stereotype text in rectangles. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Class diagrams

=Note that although you can create a rectangle with a <<Stereotype>> on Component, Sequence, and Use Case diagrams, the skinparam RectangleStereotypeFontColor is not applied. (It doesn’t work; it’s ignored.)=

Example:

RectangleStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleStereotypeFontColor red

title RectangleStereotypeFontColor red

rectangle Rectangle <<Stereotype>>
@enduml

RectangleStereotypeFontName
Usage:

RectangleStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Class diagrams

=Note that although you can create a rectangle with a <<Stereotype>> on Component, Sequence, and Use Case diagrams, the skinparam RectangleStereotypeFontColor is not applied. (It doesn’t work; it’s ignored.)=

Example:

RectangleStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleStereotypeFontName Papyrus

title RectangleStereotypeFontName Papyrus

rectangle Rectangle <<Stereotype>>
@enduml

RectangleStereotypeFontSize
Usage:

RectangleStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

Class diagrams

=Note that although you can create a rectangle with a <<Stereotype>> on Component, Sequence, and Use Case diagrams, the skinparam RectangleStereotypeFontColor is not applied. (It doesn’t work; it’s ignored.)=

Example:

RectangleStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleStereotypeFontSize 18

title RectangleStereotypeFontSize 18

rectangle Rectangle <<Stereotype>>
@enduml

RectangleStereotypeFontStyle
Usage:

RectangleStereotypeFontStyle [ normal | plain | italic | bold ]

Font style for the stereotype text for a rectangle.

Applies to:

Class diagrams

=Note that although you can create a rectangle with a <<Stereotype>> on Component, Sequence, and Use Case diagrams, the skinparam RectangleStereotypeFontColor is not applied. (It doesn’t work; it’s ignored.)=

Example:

RectangleStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam RectangleStereotypeFontStyle italic

title RectangleStereotypeFontStyle italic

rectangle Rectangle <<Stereotype>>
@enduml

Requirement

RequirementBackgroundColor
Usage:

RequirementBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Requirement.

Applies to:

zz

Example:

RequirementBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementBorderColor
Usage:

RequirementBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Requirement.

Applies to:

zz

Example:

RequirementBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementBorderThickness
Usage:

RequirementBorderThickness [ number ]

zz

Applies to:

zz

Example:

RequirementBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementFontColor
Usage:RequirementFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in stacks. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

RequirementFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementFontName
Usage:

RequirementFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

RequirementFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementFontSize
Usage:

RequirementFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

RequirementFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementFontStyle
Usage:

RequirementFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

RequirementFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementStereotypeFontColor
Usage:

RequirementStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in stacks. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

RequirementStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementStereotypeFontName
Usage:

RequirementStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

RequirementStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementStereotypeFontSize
Usage:

RequirementStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

RequirementStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RequirementStereotypeFontStyle
Usage:

RequirementStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

RequirementStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

ResponseMessageBelowArrow

ResponseMessageBelowArrow
Usage:

ResponseMessageBelowArrow zz

zz

Applies to:

zz

Example:

ResponseMessageBelowArrow zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

RoundCorner

RoundCorner
Usage:

RoundCorner zz

zz

Applies to:

zz

Example:

RoundCorner zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

S

SameClassWidth

SameClassWidth
Usage:

SameClassWidth zz

zz

Applies to:

zz

Example:

SameClassWidth zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Sequence

SequenceActorBorderThickness
Usage:

SequenceActorBorderThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceActorBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceArrowThickness
Usage:

SequenceArrowThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceArrowThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceBoxBackgroundColor
Usage:

SequenceBoxBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceBox.

Applies to:

Sequence diagrams

Example:

SequenceBoxBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceBoxBorderColor
Usage:

SequenceBoxBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a SequenceBox.

Applies to:

Sequence diagrams

Example:

SequenceBoxBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceBoxFontColor
Usage:

SequenceBoxFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in boxes in UML Sequence diagrams. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceBoxFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceBoxFontName
Usage:

SequenceBoxFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceBoxFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceBoxFontSize
Usage:

SequenceBoxFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceBoxFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceBoxFontStyle
Usage:

SequenceBoxFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceBoxFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDelayFontColor
Usage:

SequenceDelayFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceDelayFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDelayFontName
Usage:

SequenceDelayFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceDelayFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDelayFontSize
Usage:

SequenceDelayFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceDelayFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDelayFontStyle
Usage:

SequenceDelayFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceDelayFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerBackgroundColor
Usage:

SequenceDividerBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceDivider.

Applies to:

Sequence diagrams

Example:

SequenceDividerBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerBorderColor
Usage:

SequenceDividerBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a SequenceDivider.

Applies to:

Sequence diagrams

Example:

SequenceDividerBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerBorderThickness
Usage:

SequenceDividerBorderThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceDividerBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerFontColor
Usage:

SequenceDividerFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceDividerFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerFontName
Usage:

SequenceDividerFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceDividerFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerFontSize
Usage:

SequenceDividerFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceDividerFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceDividerFontStyle
Usage:

SequenceDividerFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceDividerFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupBackgroundColor
Usage:

SequenceGroupBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceGroup.

Applies to:

Sequence diagrams

Example:

SequenceGroupBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupBodyBackgroundColor
Usage:

SequenceGroupBodyBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceGroupBody.

Applies to:

Sequence diagrams

Example:

SequenceGroupBodyBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupBorderColor
Usage:

SequenceGroupBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a SequenceGroup.

Applies to:

Sequence diagrams

Example:

SequenceGroupBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupBorderThickness
Usage:

SequenceGroupBorderThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceGroupBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupFontColor
Usage:

SequenceGroupFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceGroupFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupFontName
Usage:

SequenceGroupFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceGroupFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupFontSize
Usage:

SequenceGroupFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceGroupFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupFontStyle
Usage:

SequenceGroupFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceGroupFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupHeaderFontColor
Usage:

SequenceGroupHeaderFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceGroupHeaderFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupHeaderFontName
Usage:

SequenceGroupHeaderFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceGroupHeaderFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupHeaderFontSize
Usage:

SequenceGroupHeaderFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceGroupHeaderFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceGroupHeaderFontStyle
Usage:

SequenceGroupHeaderFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceGroupHeaderFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceLifeLineBackgroundColor
Usage:

SequenceLifeLineBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceLifeLine.

Applies to:

Sequence diagrams

Example:

SequenceLifeLineBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceLifeLineBorderColor
Usage:

SequenceLifeLineBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a SequenceLifeLine.

Applies to:

Sequence diagrams

Example:

SequenceLifeLineBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceLifeLineBorderThickness
Usage:

SequenceLifeLineBorderThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceLifeLineBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceMessageAlignment
Usage:

SequenceMessageAlignment zz

zz

Applies to:

Sequence diagrams

Example:

SequenceMessageAlignment zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceMessageTextAlignment
Usage:

SequenceMessageTextAlignment zz

zz

Applies to:

Sequence diagrams

Example:

SequenceMessageTextAlignment zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceNewpageSeparatorColor
Usage:

SequenceNewpageSeparatorColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

Sequence diagrams

Example:

SequenceNewpageSeparatorColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceParticipant
Usage:

SequenceParticipant zz

zz

Applies to:

Sequence diagrams

Example:

SequenceParticipant zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceParticipantBorderThickness
Usage:

SequenceParticipantBorderThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceParticipantBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceAlignment
Usage:

SequenceReferenceAlignment zz

zz

Applies to:

Sequence diagrams

Example:

SequenceReferenceAlignment zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceBackgroundColor
Usage:

SequenceReferenceBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceReference.

Applies to:

Sequence diagrams

Example:

SequenceReferenceBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceBorderColor
Usage:

SequenceReferenceBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a SequenceReference.

Applies to:

Sequence diagrams

Example:

SequenceReferenceBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceBorderThickness
Usage:

SequenceReferenceBorderThickness [ number ]

zz

Applies to:

Sequence diagrams

Example:

SequenceReferenceBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceFontColor
Usage:

SequenceReferenceFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceReferenceFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceFontName
Usage:

SequenceReferenceFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceReferenceFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceFontSize
Usage:

SequenceReferenceFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceReferenceFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceFontStyle
Usage:

SequenceReferenceFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceReferenceFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceReferenceHeaderBackgroundColor
Usage:

SequenceReferenceHeaderBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a SequenceReferenceHeader.

Applies to:

Sequence diagrams

Example:

SequenceReferenceHeaderBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceStereotypeFontColor
Usage:

SequenceStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

Sequence diagrams

Example:

SequenceStereotypeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceStereotypeFontName
Usage:

SequenceStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceStereotypeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceStereotypeFontSize
Usage:

SequenceStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceStereotypeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceStereotypeFontStyle
Usage:

SequenceStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

Sequence diagrams

Example:

SequenceStereotypeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SequenceTitleFontColor
Usage:

SequenceTitleFontColor [ #predefinedColorName | #hexColorNumber ]

Sets the color of the title for an UML Sequence diagram.

Applies to:

Sequence diagrams

Example:

SequenceTitleFontColor red

@startuml
title SequenceTitleFontColor red
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam SequenceTitleFontColor red

!include seq-AliceBob.txt
@enduml

SequenceTitleFontName
Usage:

SequenceTitleFontName [ fontNameOnYourSystem ]

The font name for the title on UML Sequence Diagrams. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

Sequence diagrams

Example:

SequenceTitleFontName Papyrus

@startuml
title SequenceTitleFontName Papyrus
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam SequenceTitleFontName Papyrus

!include seq-AliceBob.txt
@enduml

SequenceTitleFontSize
Usage:

SequenceTitleFontSize [ number ]

The font size for the title on UML Sequence diagrams.

Applies to:

Sequence diagrams

Example:

SequenceTitleFontSize 10

@startuml
title SequenceTitleFontSize 10
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam SequenceTitleFontSize 10

!include seq-AliceBob.txt

@enduml

SequenceTitleFontStyle
Usage:

SequenceTitleFontStyle [ normal | plain | italic | bold ]

The font style for titles on UML Sequence diagrams.

Applies to:

Sequence diagrams

Example:

SequenceTitleFontStyle italic

@startuml
title SequenceTitleFontStyle italic
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml
skinparam SequenceTitleFontStyle italic

!include seq-AliceBob.txt
@enduml

Shadowing

Shadowing
Usage:

Shadowing [ true | false ]

Turns shadowing on if set to true or off if set to false

Applies to:

All diagrams

Example:

Shadowing zz

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Shadowing true

title skinparam Shadowing true

!include classes.txt

@enduml

This is what it looks like with Shadowing false:

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam Shadowing false

title skinparam Shadowing false

!include classes.txt

@enduml

Stack

StackBackgroundColor
Usage:

StackBackgroundColor [ #predefinedColorName | #hexColorNumber ]

Sets The background (fill) color for a Stack.

Applies to:

zz

Example:

StackBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackBackgroundColor lawnGreen

title StackBackgroundColor lawnGreen

stack Stack 
@enduml

StackBorderColor
Usage:

StackBorderColor [ #predefinedColorName | #hexColorNumber ]

The border color for a Stack element.

Applies to:

zz

Example:

StackBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackBorderColor red

title StackBorderColor red

stack Stack 
@enduml

StackFontColor
Usage:

StackFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in stacks. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

StackFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackFontColor red

title StackFontColor red

stack Stack 
@enduml

StackFontName
Usage:

StackFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

StackFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackFontName Papyrus

title StackFontName Papyrus

stack Stack 
@enduml

StackFontSize
Usage:

StackFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

StackFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackFontSize 18

title StackFontSize 18

stack Stack 
@enduml

StackFontStyle
Usage:

StackFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

StackFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackFontStyle italic

title StackFontStyle italic

stack Stack 
@enduml

StackStereotypeFontColor
Usage:

StackStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

StackStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackStereotypeFontColor red

title StackStereotypeFontColor red

stack Stack <<Stereotype>>
@enduml

StackStereotypeFontName
Usage:

StackStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

StackStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackStereotypeFontName Papyrus

title StackStereotypeFontName Papyrus

stack Stack <<Stereotype>>
@enduml

StackStereotypeFontSize
Usage:

StackStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

StackStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackStereotypeFontSize 18

title StackStereotypeFontSize 18

stack Stack <<Stereotype>>
@enduml

StackStereotypeFontStyle
Usage:

StackStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

StackStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StackStereotypeFontStyle italic

title StackStereotypeFontStyle italic

stack Stack <<Stereotype>>
@enduml

State

StateAttributeFontColor
Usage:

StateAttributeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

StateAttributeFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateAttributeFontName
Usage:

StateAttributeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

StateAttributeFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateAttributeFontSize
Usage:

StateAttributeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

StateAttributeFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateAttributeFontStyle
Usage:

StateAttributeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

StateAttributeFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateBackgroundColor
Usage:

StateBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a State.

Applies to:

zz

Example:

StateBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateBorderColor
Usage:

StateBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a State.

Applies to:

zz

Example:

StateBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateEndColor
Usage:

StateEndColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

StateEndColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateFontColor
Usage:

StateFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

StateFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateFontName
Usage:

StateFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

StateFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateFontSize
Usage:

StateFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

StateFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateFontStyle
Usage:

StateFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

StateFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StateStartColor
Usage:

StateStartColor [ #predefinedColorName | #hexColorNumber ]

zz

Applies to:

zz

Example:

StateStartColor [ #predefinedColorName | #hexColorNumber ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Stereotype

StereotypeABackgroundColor
Usage:

StereotypeABackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a StereotypeA.

Applies to:

zz

Example:

StereotypeABackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeABorderColor
Usage:

StereotypeABorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a StereotypeA.

Applies to:

zz

Example:

StereotypeABorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeCBackgroundColor
Usage:

StereotypeCBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a StereotypeC.

Applies to:

zz

Example:

StereotypeCBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeCBorderColor
Usage:

StereotypeCBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a StereotypeC.

Applies to:

zz

Example:

StereotypeCBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeEBackgroundColor
Usage:

StereotypeEBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a StereotypeE.

Applies to:

zz

Example:

StereotypeEBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeEBorderColor
Usage:

StereotypeEBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a StereotypeE.

Applies to:

zz

Example:

StereotypeEBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeIBackgroundColor
Usage:

StereotypeIBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a StereotypeI.

Applies to:

zz

Example:

StereotypeIBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeIBorderColor
Usage:

StereotypeIBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a StereotypeI.

Applies to:

zz

Example:

StereotypeIBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeNBackgroundColor
Usage:

StereotypeNBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a StereotypeN.

Applies to:

zz

Example:

StereotypeNBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypeNBorderColor
Usage:

StereotypeNBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a StereotypeN.

Applies to:

zz

Example:

StereotypeNBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

StereotypePosition
Usage:

StereotypePosition zz

zz

Applies to:

zz

Example:

StereotypePosition zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Storage

StorageBackgroundColor
Usage:

StorageBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Storage.

Applies to:

zz

Example:

StorageBackgroundColor lawnGreen

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageBackgroundColor lawnGreen

title StorageBackgroundColor lawnGreen

storage Storage 
@enduml

StorageBorderColor
Usage:

StorageBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Storage.

Applies to:

zz

Example:

StorageBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageBorderColor red

title StorageBorderColor red

storage Storage 
@enduml

StorageFontColor
Usage:

StorageFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

StorageFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageFontColor red

title StorageFontColor red

storage Storage 
@enduml

StorageFontName
Usage:

StorageFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

StorageFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageFontName Papyrus

title StorageFontName Papyrus

storage Storage 
@enduml

StorageFontSize
Usage:

StorageFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

StorageFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageFontSize 18

title StorageFontSize 18

storage Storage 
@enduml

StorageFontStyle
Usage:

StorageFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

StorageFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageFontStyle italic

title StorageFontStyle italic

storage Storage 
@enduml

StorageStereotypeFontColor
Usage:

StorageStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

StorageStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageStereotypeFontColor red

title StorageStereotypeFontColor red

storage Storage <<Stereotype>>
@enduml

StorageStereotypeFontName
Usage:

StorageStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

StorageStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageStereotypeFontName Papyrus

title StorageStereotypeFontName Papyrus

storage Storage <<Stereotype>>
@enduml

StorageStereotypeFontSize
Usage:

StorageStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

StorageStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageStereotypeFontSize 18

title StorageStereotypeFontSize 18

storage Storage <<Stereotype>>
@enduml

StorageStereotypeFontStyle
Usage:

StorageStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

StorageStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam StorageStereotypeFontStyle italic

title StorageStereotypeFontStyle italic

storage Storage <<Stereotype>>
@enduml

Style

Style
Usage:

Style [ normal | plain | italic | bold ]

zz

Applies to:

zz

Example:

Style [ normal | plain | italic | bold ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SvglinkTarget

SvglinkTarget
Usage:

SvglinkTarget zz

zz

Applies to:

zz

Example:

SvglinkTarget zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Swimlane

SwimlaneBorderColor
Usage:

SwimlaneBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for a Swimlane.

Applies to:

zz

Example:

SwimlaneBorderColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneBorderThickness
Usage:

SwimlaneBorderThickness [ number ]

zz

Applies to:

zz

Example:

SwimlaneBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneTitleFontColor
Usage:

SwimlaneTitleFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

SwimlaneTitleFontColor red

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneTitleFontName
Usage:

SwimlaneTitleFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

SwimlaneTitleFontName Papyrus

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneTitleFontSize
Usage:

SwimlaneTitleFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

SwimlaneTitleFontSize 18

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneTitleFontStyle
Usage:

SwimlaneTitleFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

SwimlaneTitleFontStyle italic

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneWidth
Usage:

SwimlaneWidth zz

zz

Applies to:

zz

Example:

SwimlaneWidth zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

SwimlaneWrapTitleWidth
Usage:

SwimlaneWrapTitleWidth zz

zz

Applies to:

zz

Example:

SwimlaneWrapTitleWidth zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

T

TabSize

TabSize
Usage:

TabSize [ number ]

zz

Applies to:

zz

Example:

TabSize [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

Title

TitleBackgroundColor
Usage:

TitleBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for a Title. Note that you need to have a border around the title for there to be a fill color.

Applies to:

All diagrams.

Example:

TitleBackgroundColor yellow

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleBorderColor Black
skinparam TitleBackgroundColor yellow

title TitleBackgroundColor yellow

!include activity-alarmrings.txt

@enduml

TitleBorderColor
Usage:

TitleBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for titles.

Applies to:

All diagrams

Example:

TitleBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleBorderColor red

title TitleBorderColor red

!include activity-alarmrings.txt

@enduml

TitleBorderRoundCorner
Usage:

TitleBorderRoundCorner 20

How rounded the corners are for the border around the title. A value of 0 means that the corners are completely square, not rounded at all.

Applies to:

All diagrams

Example:

TitleBorderRoundCorner 20

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleBorderColor Black
skinparam TitleBorderRoundCorner 20

title TitleBorderRoundCorner 20

!include activity-alarmrings.txt

@enduml

TitleBorderThickness
Usage:

TitleBorderThickness [ number ]

All diagrams`

Applies to:

All diagrams

Example:

TitleBorderThickness 5

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleBorderThickness 5

title TitleBorderThickness 5

!include activity-alarmrings.txt

@enduml

TitleFontColor
Usage:

TitleFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

All diagrams

Example:

TitleFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleFontColor red

title TitleFontColor red

!include activity-alarmrings.txt

@enduml

TitleFontName
Usage:

TitleFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

All diagrams

Example:

TitleFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleFontName Papyrus

title TitleFontName Papyrus

!include activity-alarmrings.txt

@enduml

TitleFontSize
Usage:

TitleFontSize [ number ]

The font size for text in zz.

Applies to:

All diagrams

Example:

TitleFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleFontSize 18

title TitleFontSize 18

!include activity-alarmrings.txt

@enduml

TitleFontStyle
Usage:

TitleFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

All diagrams

Example:

TitleFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam TitleFontStyle italic

title TitleFontStyle italic

!include activity-alarmrings.txt

@enduml

U

Usecase

UsecaseBackgroundColor
Usage:

UsecaseBackgroundColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for for an Usecase.

Applies to:

zz`

Example:

UsecaseBackgroundColor GreenYellow

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

UsecaseBorderColor
Usage:

UsecaseBorderColor [ #predefinedColorName | #hexColorNumber ]

The background (fill) color for an Usecase.

Applies to:

zz

Example:

UsecaseBorderColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseBorderColor red

title UsecaseBorderColor red

usecase Usecase 
@enduml

UsecaseBorderThickness
Usage:

UsecaseBorderThickness [ number ]

zz

Applies to:

zz

Example:

UsecaseBorderThickness [ number ]

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

UsecaseFontColor
Usage:

UsecaseFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

UsecaseFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseFontColor red

title UsecaseFontColor red

usecase Usecase 
@enduml

UsecaseFontName
Usage:

UsecaseFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

UsecaseFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseFontName Papyrus

title UsecaseFontName Papyrus

usecase Usecase 
@enduml

UsecaseFontSize
Usage:

UsecaseFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

UsecaseFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseFontSize 18

title UsecaseFontSize 18

usecase Usecase 
@enduml

UsecaseFontStyle
Usage:

UsecaseFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

UsecaseFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseFontStyle italic

title UsecaseFontStyle italic

usecase Usecase 
@enduml

UsecaseStereotypeFontColor
Usage:

UsecaseStereotypeFontColor [ #predefinedColorName | #hexColorNumber ]

The font color for text in zz. Use either a predefined color name or the hexidecimal number of a color. Both must start with a #.

Applies to:

zz

Example:

UsecaseStereotypeFontColor red

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseStereotypeFontColor red

title UsecaseStereotypeFontColor red

usecase Usecase <<Stereotype>>
@enduml

UsecaseStereotypeFontName
Usage:

UsecaseStereotypeFontName [ fontNameOnYourSystem ]

The font name for text in zz. You must have the font installed on your computer. (You can check by using the PlantUML command-line option -printfonts.)

Applies to:

zz

Example:

UsecaseStereotypeFontName Papyrus

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseStereotypeFontName Papyrus

title UsecaseStereotypeFontName Papyrus

usecase Usecase <<Stereotype>>
@enduml

UsecaseStereotypeFontSize
Usage:

UsecaseStereotypeFontSize [ number ]

The font size for text in zz.

Applies to:

zz

Example:

UsecaseStereotypeFontSize 18

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseStereotypeFontSize 18

title UsecaseStereotypeFontSize 18

usecase Usecase <<Stereotype>>
@enduml

UsecaseStereotypeFontStyle
Usage:

UsecaseStereotypeFontStyle [ normal | plain | italic | bold ]

The font style for text in zz.

Applies to:

zz

Example:

UsecaseStereotypeFontStyle italic

@startuml
'!include ../../../plantuml-styles/plantuml-ae-skinparam-ex.iuml

skinparam UsecaseStereotypeFontStyle italic

title UsecaseStereotypeFontStyle italic

usecase Usecase <<Stereotype>>
@enduml

V

W

WrapWidth

WrapWidth
Usage:

WrapWidth zz

zz

Applies to:

zz

Example:

WrapWidth zz

@startuml

skinparam Handwritten true
skinparam DefaultTextAlignment center
skinparam NoteBackgroundColor lightyellow
skinparam NoteBorderColor darkgray

note "This diagram still needs to be done" as tbd

@enduml

X

Y