Thanks for the response. Unfortunately I'm not having much success with setForeground and setBackground.
Below is a code-snippet; as you can see I've tried to use the setForeground tag, it compiles and runs, but just has the standard grey color scheme (fgColor and bgColor are Color objects, that work fine elsewhere in my code).
<CODE_SNIPPET>
final JFileChooser fileChooser = new JFileChooser();
fileChooser.setForeground(fgColor);
fileChooser.setBackground(bgColor);
ConfigFilter configFilter = new ConfigFilter();
fileChooser.setFileFilter(configFilter);
int returnVal = fileChooser.showOpenDialog(QueryApp.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
// Do stuff with file here
}
</CODE_SNIPPET>