Changed colors

This commit is contained in:
2022-05-17 16:57:11 +02:00
parent 0a88fc7924
commit ed2ec80391
+14 -14
View File
@@ -116,32 +116,32 @@ impl Map{
match self.grid[index as usize]{ match self.grid[index as usize]{
0 => { 0 => {
//Ground //Ground
tile_bg = Color::RGB(0x6A,0x9A,0x1D); tile_bg = Color::RGB(0xA7,0xC9,0x57);
} }
1 =>{ 1 =>{
//Wall //Wall 43515a
tile_bg = Color::RGB(0x17, 0x2A, 0x33); tile_bg = Color::RGB(0x43, 0x51, 0x5A);
} }
2 =>{ 2 =>{
//Water //Water 2887c8
tile_bg = Color::RGB(0x59, 0xA5, 0xD8); tile_bg = Color::RGB(0x28, 0x87, 0xC8);
} }
3 =>{ 3 =>{
//Sand //Sand f2e8cf
tile_bg = Color::RGB(0xCA, 0x89, 0x5F); tile_bg = Color::RGB(0xF2, 0xE8, 0xCF);
} }
4 =>{ 4 =>{
//Wet Sand //Wet Sand DCC27F
tile_bg = Color::RGB(0xA1, 0x5E, 0x49); tile_bg = Color::RGB(0xDC, 0xC2, 0x7F);
} }
5 =>{ 5 =>{
//Forest 3a5a40 //Forest 386641
tile_bg = Color::RGB(0x3A, 0x5A, 0x40); tile_bg = Color::RGB(0x38, 0x66, 0x41);
} }
6 =>{ 6 =>{
//Hole //Hole bc4749
tile_bg = Color::RGB(0xDA, 0x66, 0x7B); tile_bg = Color::RGB(0xBC, 0x47, 0x49);
} }
_ => { _ => {
//uuuuuuh... whatever I guess lets make it black //uuuuuuh... whatever I guess lets make it black