-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomponents.puml
48 lines (41 loc) · 1.29 KB
/
components.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
!ifndef COLORS_IMPORTED
!include ../general/colors.puml
!endif
' Components
' ##################################
' PlantUML Rectangle skinning
'Internal
skinparam rectangle<<Internal Component>> {
FontColor COMPONENT_FONT_COLOR
StereotypeFontColor COMPONENT_FONT_COLOR
BorderColor INTERNAL_BORDER_COLOR
BackgroundColor COMPONENT_BG_COLOR
}
skinparam rectangle<<Component>> {
FontColor COMPONENT_FONT_COLOR
StereotypeFontColor COMPONENT_FONT_COLOR
BorderColor INTERNAL_BORDER_COLOR
BackgroundColor COMPONENT_BG_COLOR
}
'External
skinparam rectangle<<External Component>> {
FontColor EXTERNAL_COMPONENT_FONT_COLOR
StereotypeFontColor EXTERNAL_COMPONENT_FONT_COLOR
BorderColor EXTERNAL_BORDER_COLOR
BackgroundColor EXTERNAL_COMPONENT_BG_COLOR
}
' PlantUML Interface skinning
'Internal
skinparam interface<<Internal Component>> {
BorderColor INTERNAL_BORDER_COLOR
BackgroundColor COMPONENT_BG_COLOR
}
skinparam interface<<Component>> {
BorderColor INTERNAL_BORDER_COLOR
BackgroundColor COMPONENT_BG_COLOR
}
'External
skinparam interface<<External Component>> {
BorderColor EXTERNAL_BORDER_COLOR
BackgroundColor EXTERNAL_COMPONENT_BG_COLOR
}