forked from sitcomlab/IVE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph-style-sheet.grass
108 lines (97 loc) · 1.89 KB
/
graph-style-sheet.grass
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
node {
diameter: 50px;
color: #A5ABB6;
border-color: #9AA1AC;
border-width: 2px;
text-color-internal: #FFFFFF;
font-size: 10px;
}
relationship {
color: #A5ABB6;
shaft-width: 1px;
font-size: 8px;
padding: 3px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: '<type>';
}
relationship.belongs_to {
color: #A5ABB6;
shaft-width: 1px;
font-size: 8px;
padding: 3px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: '<type>';
}
relationship.connected_to {
color: #0066CC;
shaft-width: 5px;
font-size: 8px;
padding: 5px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: '<type>';
}
relationship.has_parent_location {
color: #238F23;
shaft-width: 3px;
font-size: 8px;
padding: 3px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: '<type>';
}
relationship.recorded_at {
color: #B51031;
shaft-width: 3px;
font-size: 8px;
padding: 3px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: '<type>';
}
relationship.embedded_in {
color: #CCAC00;
shaft-width: 3px;
font-size: 8px;
padding: 3px;
text-color-external: #000000;
text-color-internal: #FFFFFF;
caption: '<type>';
}
node.Scenarios {
color: #9932CC;
border-color: #882DB5;
text-color-internal: #FFFFFF;
caption: '{name}';
diameter: 80px;
}
node.Locations {
color: #007FFF;
border-color: #0066CC;
text-color-internal: #FFFFFF;
caption: '{name}';
diameter: 80px;
}
node.abstractLocations {
color: #32CD32;
border-color: #2CB32C;
text-color-internal: #FFFFFF;
caption: '{name}';
diameter: 80px;
}
node.Videos {
color: #DC143C;
border-color: #C71236;
text-color-internal: #FFFFFF;
caption: '{name}';
diameter: 80px;
}
node.Overlays {
color: #FFD700;
border-color: #E0BD00;
text-color-internal: #333333;
caption: '{name}';
diameter: 80px;
}