-
Notifications
You must be signed in to change notification settings - Fork 1
/
Colors.js
48 lines (47 loc) · 1.08 KB
/
Colors.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
45
46
47
48
export const colors = [
'pink',
'red',
'orange',
'yellow',
'green',
'blue',
'purple',
'grey',
];
export const seriesMapPalette = {
"-- unknown --": 'grey',
"Animal Crossing": 'yellow',
"ARMS": 'green',
"Banjo Kazooie": 'orange',
"Bayonetta": 'pink',
"Breath of the Wild": 'orange',
"Castlevania": 'purple',
"Chibi Robo": 'grey',
"Classic Nintendo": 'grey',
"Donkey Kong": 'green',
"Dragon Quest": 'purple',
"Earthbound": 'orange',
"F-Zero": 'blue',
"Fatal Fury": 'red',
"Final Fantasy": 'grey',
"Fire Emblem": 'blue',
"Kirby": 'pink',
"Kid Icarus": 'green',
"Megaman": 'blue',
"Metal Gear Solid": 'grey',
"Metroid": 'blue',
"Mii": 'orange',
"Minecraft": 'green',
"Pac-man": 'yellow',
"Persona": 'grey',
"Pokemon": 'red',
"Shovel Knight": 'yellow',
"Sonic": 'blue',
"Splatoon": 'orange',
"Star Fox": 'purple',
"Street fighter": 'red',
"Super Mario": 'red',
"The Legend of Zelda": 'green',
"Wii Fit": 'blue',
"Xenoblade": 'red',
};