Match file finder icon color to label color

Nathan Sobo created

Change summary

zed/src/file_finder.rs | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Detailed changes

zed/src/file_finder.rs 🔗

@@ -157,7 +157,9 @@ impl FileFinder {
                                 LineBox::new(
                                     settings.ui_font_family,
                                     settings.ui_font_size,
-                                    Svg::new("icons/file-16.svg").boxed(),
+                                    Svg::new("icons/file-16.svg")
+                                        .with_color(style.label.text.color)
+                                        .boxed(),
                                 )
                                 .boxed(),
                             )