forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGameColors.lua
More file actions
57 lines (53 loc) · 1.57 KB
/
GameColors.lua
File metadata and controls
57 lines (53 loc) · 1.57 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
GameColors = {
CivilianArmyColor = "BurlyWood",
-- Faction colours
ArmyColors = {
"ff436eee", -- new blue1
"FFe80a0a", -- Cybran red
"ff616d7e", -- grey
"fffafa00", -- new yellow
"FFFF873E", -- Nomads orange
"ffffffff", -- white
"ff9161ff", -- purple
"ffff88ff", -- pink
"ff2e8b57", -- new green
"FF2929e1", -- UEF blue
"FF5F01A7", -- dark purple
"ffff32ff", -- new fuschia
"ffa79602", -- Sera golden
"ffb76518", -- new brown
"ff901427", -- dark red
"FF2F4F4F", -- olive (dark green)
"ff40bf40", -- mid green
"ff66ffcc", -- aqua
"ff9fd802", -- Order Green
},
PlayerColors = {
"ff436eee", -- new blue1
"FFe80a0a", -- Cybran red
"ff616d7e", -- grey
"fffafa00", -- new yellow
"FFFF873E", -- Nomads orange
"ffffffff", -- white
"ff9161ff", -- purple
"ffff88ff", -- pink
"ff2e8b57", -- new green
"FF2929e1", -- UEF blue
"FF5F01A7", -- dark purple
"ffff32ff", -- new fuschia
"ffa79602", -- Sera golden
"ffb76518", -- new brown
"ff901427", -- dark red
"FF2F4F4F", -- olive (dark green)
"ff40bf40", -- mid green
"ff66ffcc", -- aqua
"ff9fd802", -- Order Green
},
TeamColorMode = {
Self = "RoyalBlue",
Enemy = "FFE80A0A",
Ally = "DarkGreen",
Neutral = "Goldenrod",
},
UnidentifiedColor = "FF808080",
}