-
Notifications
You must be signed in to change notification settings - Fork 1
/
globals.js
44 lines (42 loc) · 918 Bytes
/
globals.js
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
export const zombies = [
"tankzee",
"dogzee",
"femalezee",
"nursezee",
"quickzee",
"copzee"
];
export const textStyle = {
fontFamily: "Arial",
fontSize: 36,
fontStyle: "normal",
fontWeight: "bold",
fill: ["#88A050", "#ff0000"], // gradient
stroke: "#F0E8C8",
strokeThickness: 2,
dropShadow: true,
dropShadowColor: "#000000",
dropShadowBlur: 4,
dropShadowAngle: Math.PI / 6,
dropShadowDistance: 6,
wordWrap: true,
wordWrapWidth: 440,
lineJoin: "round"
};
export const subTextStyle = {
fontFamily: "Arial",
fontSize: 22,
fontStyle: "normal",
fontWeight: "bold",
fill: ["#88A050"], // gradient
stroke: "#0",
strokeThickness: 2,
dropShadow: true,
dropShadowColor: "#000000",
dropShadowBlur: 4,
dropShadowAngle: Math.PI / 6,
dropShadowDistance: 6,
wordWrap: true,
wordWrapWidth: 440,
lineJoin: "round"
};