In FileBrowserComponent::lookAndFeelChanged we have
filenameBox.setColour (TextEditor::textColourId, findColour (filenameBoxTextColourId));
which doesn’t apply the colour to existing text. It’s fixed with
filenameBox.applyColourToAllText (findColour (filenameBoxTextColourId));
which also calls setColour.
