-
Notifications
You must be signed in to change notification settings - Fork 3
/
colours.css
87 lines (84 loc) · 1.25 KB
/
colours.css
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
79
80
81
82
83
84
85
86
87
/* A collection of colours taken from various object dumps*/
.common {
color: #ffffff;
}
.uncommon {
color: #3dd20b;
}
.rare {
color: #3c8eff;
}
.very-rare {
color: #a83fe5;
}
.etech {
color: #ca00a8
}
.legendary {
color: #ffb400
}
.pearl, .mission-item {
color: #00ffff;
}
.seraph {
color: #ff9ab8;
}
.glitch {
color: #ffa4e7
}
.effervescent, .rainbow {
animation: effervescent-colours 2s linear infinite;
color: #b1b151; /* Fallback */
}
@keyframes effervescent-colours {
/* Probably not 100% accurate, idk what interpolation this uses or what I actually need */
0% { color: #e95151; }
16.7% { color: #b1b151; }
33.3% { color: #51e951; }
50% { color: #51b1b1; }
66.7% { color: #5151e9; }
83.3% { color: #b151b1; }
100% { color: #e95151; }
}
.explosive {
color: #f1d300;
}
.fire {
color: #f57500;
}
.shock {
color: #00bdf3;
}
.corrosive {
color: #79dc3d;
}
.slag {
color: #9b00de;
}
.cryo {
color: #00d2ff
}
.eridium {
color: #9132c8;
}
.health {
color: #cf4747;
}
.money {
color: #ffff0d;
}
.moonstones {
color: #49f3bf;
}
.oxygen {
color: #9dbdff;
}
.atmos {
color: #6c96e8;
}
.projectile-count {
color: #ffcc00;
}
.vacuum {
color: #ac8359;
}