list.setBackground(UIManager.getColor("TextField.background"));
list.setSelectionForeground(UIManager.getColor("ComboBox.selectionForeground"));
list.setSelectionBackground(UIManager.getColor("ComboBox.selectionBackground"));
// Attach handlers
MouseInputListener listMouseHandler = new ListMouseHandler();
list.addMouseListener(listMouseHandler);
list.addMouseMotionListener(listMouseHandler);
list.addKeyListener(new ListKeyHandler());
list.addFocusListener(new ListFocusHandler());