Use the Nimbus Dark Blue as List/ComboBox selection color for Darcula LaF (the default blue is too bright)

This commit is contained in:
Reinhard Pointner 2019-02-25 18:47:03 +07:00
parent 08ba94d2f3
commit 88ae911c4f
1 changed files with 2 additions and 0 deletions

View File

@ -96,6 +96,8 @@ public class ThemeSupport {
@Override
public void setLookAndFeel() throws Exception {
UIManager.setLookAndFeel(new DarculaLaf());
UIManager.put("List.selectionBackground", new Color(0x39698a));
UIManager.put("ComboBox.selectionBackground", new Color(0x39698a));
}
@Override