Try different brown.

This commit is contained in:
Juergen Stuber 2018-11-28 18:57:09 +01:00
parent 354a0cf4b2
commit e43b0271a9
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ impl Color {
Color(255, 0, 255)
}
fn brown() -> Color {
Color(165, 42, 42)
Color(210, 105, 30)
}
fn complement(&self) -> Color {
Color(255 - self.0, 255 - self.1, 255 - self.2)