25 lines
460 B
Plaintext
25 lines
460 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: startuml
|
|
# key: startuml
|
|
# --
|
|
@startuml
|
|
|
|
skinparam stereotypeCBorderColor Black
|
|
skinparam stereotypeCBackgroundColor White
|
|
|
|
skinparam class {
|
|
BackgroundColor<<Entity>> Red
|
|
BackgroundColor<<Screen>> Yellow
|
|
BackgroundColor<<Role>> LightBlue
|
|
BackgroundColor<<OtherApp>> Green
|
|
}
|
|
|
|
skinparam package {
|
|
BackgroundColor<<OtherApp>> PaleGreen
|
|
BackgroundColor<<ThisModule>> Orange
|
|
}
|
|
|
|
$0
|
|
|
|
@enduml
|