Pull empty selector label styling from correct place in theme

Nathan Sobo created

Change summary

zed/src/file_finder.rs    | 2 +-
zed/src/theme_selector.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

zed/src/file_finder.rs 🔗

@@ -107,7 +107,7 @@ impl FileFinder {
                     settings.ui_font_family,
                     settings.ui_font_size,
                 )
-                .with_default_color(settings.theme.editor.text)
+                .with_style(&settings.theme.ui.selector.label)
                 .boxed(),
             )
             .with_margin_top(6.0)

zed/src/theme_selector.rs 🔗

@@ -204,7 +204,7 @@ impl ThemeSelector {
                     settings.ui_font_family,
                     settings.ui_font_size,
                 )
-                .with_default_color(settings.theme.editor.text)
+                .with_style(&settings.theme.ui.selector.label)
                 .boxed(),
             )
             .with_margin_top(6.0)