make colours uniform
This commit is contained in:
parent
acdca1cede
commit
491555076e
3 changed files with 21 additions and 21 deletions
|
@ -14,8 +14,8 @@ static NAV: [(&'static str, &'static str); 6] = [
|
||||||
("/info", "Info"),
|
("/info", "Info"),
|
||||||
];
|
];
|
||||||
|
|
||||||
pub static COLOURS: [&'static str; 9] = [
|
pub static COLOURS: [&'static str; 10] = [
|
||||||
"gray", "blue", "cyan", "green", "yellow", "orange", "red", "pink", "purple",
|
"#808080", "#FF8000", "#0080ff", "#FF6693", "#3fcb55", "#cbc33f", "#cf40e9", "#FF3F0D", "#1beef0", "#0DC5FF"
|
||||||
];
|
];
|
||||||
|
|
||||||
/// The state of a player, in a running game.
|
/// The state of a player, in a running game.
|
||||||
|
|
|
@ -104,75 +104,75 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_gray {
|
.colourButton_gray {
|
||||||
background-color: lightgray;
|
background-color: #808080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_blue {
|
.colourButton_blue {
|
||||||
background-color: blue;
|
background-color: #FF8000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_cyan {
|
.colourButton_cyan {
|
||||||
background-color: cyan;
|
background-color: #0080ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_green {
|
.colourButton_green {
|
||||||
background-color: green;
|
background-color: #FF6693;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_yellow {
|
.colourButton_yellow {
|
||||||
background-color: yellow;
|
background-color: #3fcb55;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_orange {
|
.colourButton_orange {
|
||||||
background-color: orange;
|
background-color: #cbc33f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_red {
|
.colourButton_red {
|
||||||
background-color: red;
|
background-color: #cf40e9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_pink {
|
.colourButton_pink {
|
||||||
background-color: pink;
|
background-color: #FF3F0D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.colourButton_purple {
|
.colourButton_purple {
|
||||||
background-color: purple;
|
background-color: #1beef0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_gray {
|
.planet_gray {
|
||||||
background-color: lightgray;
|
background-color: #808080;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_blue {
|
.planet_blue {
|
||||||
background-color: blue;
|
background-color: #FF8000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_cyan {
|
.planet_cyan {
|
||||||
background-color: cyan;
|
background-color: #0080ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_green {
|
.planet_green {
|
||||||
background-color: green;
|
background-color: #FF6693;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_yellow {
|
.planet_yellow {
|
||||||
background-color: yellow;
|
background-color: #3fcb55;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_orange {
|
.planet_orange {
|
||||||
background-color: orange;
|
background-color: #cbc33f;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_red {
|
.planet_red {
|
||||||
background-color: red;
|
background-color: #cf40e9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_pink {
|
.planet_pink {
|
||||||
background-color: pink;
|
background-color: #FF3F0D;
|
||||||
}
|
}
|
||||||
|
|
||||||
.planet_purple {
|
.planet_purple {
|
||||||
background-color: purple;
|
background-color: #1beef0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ p {
|
||||||
color: white;
|
color: white;
|
||||||
margin: 0 0 20px 0;
|
margin: 0 0 20px 0;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background-color: grey;
|
background-color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.option:last-child {
|
.option:last-child {
|
||||||
|
|
Loading…
Reference in a new issue