forked from smaldragon/civ-sars
-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.py
39 lines (37 loc) · 1.02 KB
/
style.py
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
# Contains constants used to determine the look of the output
GREY = "#808080"
PRESENTATIONS = [
{
"name": "Rail Stations (OneDest)",
"style_base": {
"color": f"$color|{GREY}",
"icon_size": {
"default": 8,
"feature_key": "zoom",
"categories": {
"1": 18,
"2": 16,
"3": 14,
"4": 12,
"5": 10
}
},
"stroke_color": "#000000",
"stroke_width": 2,
},
"zoom_styles": {
"-6": { "name": "$name",
"opacity": {
"default": 0,
"feature_key": "zoom",
"categories": {
"1": 1,
"2": 1,
"3": 1
}
},
},
"-3": { "opacity": 1 },
},
},
]