forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GameColors.lua
69 lines (62 loc) · 2.43 KB
/
GameColors.lua
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
--- Determines the available colors for players and the default color order for
-- matchmaking. See autolobby.lua and lobby.lua for more information.
GameColors = {
CivilianArmyColor = "BurlyWood",
-- Default color order used for lobbies/TMM if not otherwise specified. Tightly coupled
-- with the ArmyColors and the PlayerColors tables.
LobbyColorOrder = {1, 7, 2, 9, 4, 8, 19, 12, 17, 6, 18, 11, 3, 13, 14, 10}, -- warm vs cold
TMMColorOrder = {1, 7, 2, 9, 4, 8, 19, 12, 17, 6, 18, 11, 3, 13, 14, 10}, -- warm vs cold
-- If you end up working with this file, suggestion to install the Color Highlight extension:
-- - https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight
-- and temporarily pre-append a -- to each color :)
-- Faction colours
ArmyColors = {
"ff436eee", -- new blue1
"FF2929e1", -- UEF blue
"FF5F01A7", -- dark purple
"ff9161ff", -- purple
"ffff88ff", -- pink
"ffff32ff", -- new fuschia
"FFe80a0a", -- Cybran red
"FFFF873E", -- Nomads orange
"ff901427", -- dark red
"ffb76518", -- new brown
"ffa79602", -- Sera golden
"fffafa00", -- new yellow
"ffffffff", -- white
"ff616d7e", -- grey
"FF2F4F4F", -- olive (dark green)
"ff2e8b57", -- new green
"ff40bf40", -- mid green
"ff9fd802", -- Order Green
"ff66ffcc", -- aqua
},
PlayerColors = {
"ff436eee", -- new blue1
"FF2929e1", -- UEF blue
"FF5F01A7", -- dark purple
"ff9161ff", -- purple
"ffff88ff", -- pink
"ffff32ff", -- new fuschia
"FFe80a0a", -- Cybran red
"FFFF873E", -- Nomads orange
"ff901427", -- dark red
"ffb76518", -- new brown
"ffa79602", -- Sera golden
"fffafa00", -- new yellow
"ffffffff", -- white
"ff616d7e", -- grey
"FF2F4F4F", -- olive (dark green)
"ff2e8b57", -- new green
"ff40bf40", -- mid green
"ff9fd802", -- Order Green
"ff66ffcc", -- aqua
},
TeamColorMode = {
Self = "RoyalBlue",
Enemy = "FFE80A0A",
Ally = "DarkGreen",
Neutral = "Goldenrod",
},
UnidentifiedColor = "FF808080",
}