I'm using the Flatlaf Look and Feel for my GUI in Java swing. There's a pre-made theme in Flatlaf which I imported, but I'd like to change one of the colors in the color scheme slightly. It's the color that is used to highlight JComponents and selected tabs. Is there any way to do this?
The standard way to customize a L&F is:
try {
UIManager.setLookAndFeel(new FlatSolarizedLightIJTheme());
UIManager.put("choose JComponent here","choose value here");
} catch( Exception ex ) {
}