-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy path_theme.ipuml
More file actions
94 lines (80 loc) · 2.05 KB
/
_theme.ipuml
File metadata and controls
94 lines (80 loc) · 2.05 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
' SPDX-FileCopyrightText: the secureCodeBox authors
'
' SPDX-License-Identifier: Apache-2.0
' http://plantuml.com/skinparam
' https://plantuml-documentation.readthedocs.io/en/latest/formatting/all-skin-params.html
' Some base color definitions:
!define hellblau #cde6f5
!define mittelblau #91c3e6
!define tuerkisblau #008cd2
!define kobaltblau #001eff
!define lavendel #e6bedc
!define dunkelpurpur #731964
!define gelbbraun #ebd7be
!define sand #e1c39b
' Colors with special meaning:
' Used to highlight focused components of a diagram. Usually our own components of secureCodeBox.
!define focusBorder #6c8ebf
!define focusFill #dae8fc
skinparam default {
ArrowColor black
BackgroundColor white
FontColor black
FontName SansSerif
FontSize 10
Shadowing false
ComponentStyle uml2
}
skinparam activity {
BorderColor dunkelpurpur
StartColor kobaltblau
EndColor focusBorder
BarColor lavendel
}
skinparam usecase {
ActorBackgroundColor lavendel
ActorBorderColor focusBorder
BorderColor dunkelpurpur
}
skinparam class {
BackgroundColor focusFill
BorderColor focusBorder
}
skinparam package {
BackgroundColor white
BorderColor dunkelpurpur
}
skinparam stereotype {
CBackgroundColor mittelblau
ABackgroundColor lavendel
IBackgroundColor gelbbraun
EBackgroundColor lightgray
}
skinparam component {
BackgroundColor focusFill
BorderColor focusBorder
InterfaceBackgroundColor focusFill
InterfaceBorderColor focusBorder
Style uml2
}
skinparam note {
BackgroundColor gelbbraun
BorderColor sand
}
skinparam state {
BackgroundColor focusFill
BorderColor dunkelpurpur
StartColor kobaltblau
EndColor focusBorder
}
skinparam sequence {
ActorBackgroundColor focusFill
ActorBorderColor focusBorder
GroupBackgroundColor hellblau
LifeLineBackgroundColor focusFill
LifeLineBorderColor focusBorder
ParticipantBackgroundColor focusFill
ParticipantBorderColor focusBorder
}
skinparam CollectionsBackgroundColor focusFill
skinparam CollectionsBorderColor focusBorder