Normally with Java Swing you can set the background color of a button with:
myJButton.setBackground(Color.RED);
which would cause the butto
Based on your own purposes, you can do that based on setOpaque(true/false) and setBorderPainted(true/false); try and combine them to fit your purpose