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"),
|
||||
];
|
||||
|
||||
pub static COLOURS: [&'static str; 9] = [
|
||||
"gray", "blue", "cyan", "green", "yellow", "orange", "red", "pink", "purple",
|
||||
pub static COLOURS: [&'static str; 10] = [
|
||||
"#808080", "#FF8000", "#0080ff", "#FF6693", "#3fcb55", "#cbc33f", "#cf40e9", "#FF3F0D", "#1beef0", "#0DC5FF"
|
||||
];
|
||||
|
||||
/// The state of a player, in a running game.
|
||||
|
|
|
@ -104,75 +104,75 @@
|
|||
}
|
||||
|
||||
.colourButton_gray {
|
||||
background-color: lightgray;
|
||||
background-color: #808080;
|
||||
}
|
||||
|
||||
.colourButton_blue {
|
||||
background-color: blue;
|
||||
background-color: #FF8000;
|
||||
}
|
||||
|
||||
.colourButton_cyan {
|
||||
background-color: cyan;
|
||||
background-color: #0080ff;
|
||||
}
|
||||
|
||||
.colourButton_green {
|
||||
background-color: green;
|
||||
background-color: #FF6693;
|
||||
}
|
||||
|
||||
.colourButton_yellow {
|
||||
background-color: yellow;
|
||||
background-color: #3fcb55;
|
||||
}
|
||||
|
||||
.colourButton_orange {
|
||||
background-color: orange;
|
||||
background-color: #cbc33f;
|
||||
}
|
||||
|
||||
.colourButton_red {
|
||||
background-color: red;
|
||||
background-color: #cf40e9;
|
||||
}
|
||||
|
||||
.colourButton_pink {
|
||||
background-color: pink;
|
||||
background-color: #FF3F0D;
|
||||
}
|
||||
|
||||
.colourButton_purple {
|
||||
background-color: purple;
|
||||
background-color: #1beef0;
|
||||
}
|
||||
|
||||
.planet_gray {
|
||||
background-color: lightgray;
|
||||
background-color: #808080;
|
||||
}
|
||||
|
||||
.planet_blue {
|
||||
background-color: blue;
|
||||
background-color: #FF8000;
|
||||
}
|
||||
|
||||
.planet_cyan {
|
||||
background-color: cyan;
|
||||
background-color: #0080ff;
|
||||
}
|
||||
|
||||
.planet_green {
|
||||
background-color: green;
|
||||
background-color: #FF6693;
|
||||
}
|
||||
|
||||
.planet_yellow {
|
||||
background-color: yellow;
|
||||
background-color: #3fcb55;
|
||||
}
|
||||
|
||||
.planet_orange {
|
||||
background-color: orange;
|
||||
background-color: #cbc33f;
|
||||
}
|
||||
|
||||
.planet_red {
|
||||
background-color: red;
|
||||
background-color: #cf40e9;
|
||||
}
|
||||
|
||||
.planet_pink {
|
||||
background-color: pink;
|
||||
background-color: #FF3F0D;
|
||||
}
|
||||
|
||||
.planet_purple {
|
||||
background-color: purple;
|
||||
background-color: #1beef0;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ p {
|
|||
color: white;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 10px;
|
||||
background-color: grey;
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
.option:last-child {
|
||||
|
|
Loading…
Reference in a new issue