From 88ae911c4fb596e49fc98286fba0b1d9d3f6a32f Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 25 Feb 2019 18:47:03 +0700 Subject: [PATCH] Use the Nimbus Dark Blue as List/ComboBox selection color for Darcula LaF (the default blue is too bright) --- source/net/filebot/ui/ThemeSupport.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/net/filebot/ui/ThemeSupport.java b/source/net/filebot/ui/ThemeSupport.java index 0cf46105..2bf5ff83 100644 --- a/source/net/filebot/ui/ThemeSupport.java +++ b/source/net/filebot/ui/ThemeSupport.java @@ -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