diff --git a/assets/tiles/block.png b/assets/tiles/block.png index 3a3cc68..ee51fe8 100644 Binary files a/assets/tiles/block.png and b/assets/tiles/block.png differ diff --git a/src/editor.rs b/src/editor.rs index dd8d9cc..84ea2ed 100644 --- a/src/editor.rs +++ b/src/editor.rs @@ -444,7 +444,7 @@ impl Editor { } pub fn draw(&mut self, d: &mut RaylibDrawHandle, textures: &Textures) { - d.clear_background(gray(48)); + d.clear_background(Color::new(64, 64, 64, 255)); if self.draw_overlay && self.zoom >= 1. { let tile_size = (TILE_TEXTURE_SIZE * self.zoom) as f32; @@ -868,7 +868,7 @@ impl Editor { (Color::RED, Color::DARKRED) } } else { - (BG_LIGHT, BG_MEDIUM) + (Color::DARKGRAY, Color::DIMGRAY) }; d.draw_rectangle(x, y, output_cell_width - 5, 30, top_color);