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
|
{
Color: {
blackSemitransparent: {hex: "#00000099"},
black: {hex: "#000000ff" },
darkblue: {hex: "#1d2b53ff" },
darkpurple: {hex: "#7e2553ff" },
darkgreen: {hex: "#008751ff" },
brown: {hex: "#ab5236ff" },
grey: {hex: "#5f574fff" },
lightgrey: {hex: "#c2c3c7ff" },
white: {hex: "#fff1e8ff" },
red: {hex: "#ff004dff" },
orange: {hex: "#ffa300ff" },
yellow: {hex: "#ffec27ff" },
green: {hex: "#00e436ff" },
blue: {hex: "#29adffff" },
lavender: {hex: "#83769cff" },
pink: {hex: "#ff77a8ff" },
lightpeach: {hex: "#ffccaaff" }
},
com.badlogic.gdx.graphics.g2d.BitmapFont: {
default: {
file: fnt/MaxonRegularSemi.fnt,
scaledSize: 24
},
default_lidl: {
file: fnt/MaxonRegularSemi.fnt,
scaledSize: 18
},
default_slidl: {
file: fnt/MaxonRegularSemi.fnt,
scaledSize: 14
}
},
com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: {
default: {
font: default,
fontColor: lightgrey,
overFontColor: white,
downFontColor: grey
}
}
com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: {
default: {
font: default,
fontColor: white
},
press: {
font: default,
fontColor: white
},
credits: {
font: default,
fontColor: blackSemitransparent
},
purchaseitem_title: {
font: default_lidl,
fontColor: yellow
},
purchaseitem_desc: {
font: default_slidl,
fontColor: white
},
purchaseitem_price: {
font: default_lidl,
fontColor: yellow
},
disclaimer: {
font: default,
fontColor: grey
}
},
com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: {
default: {
titleFont: default
}
}
}
|