JButton btn=new JButton("TEST");

btn.setForeground(Color.white);// 设置前景色(文字颜色)
btn.setBackground(new Color(3,23,47));// 设置背景色

注意上述颜色的使用。

05-11 19:19