setForeground() 设置前景/字体颜色
setBackground() 设置背景颜色
具体实现:(假设按钮名称为:button)
设置红字:
button.setForeground(Color.red);
设置黑色背影:
button.setBackground(Color.black);
button.setForeground(java.awt.Color.white);
button.setBackground(java.awt.Color.black);
setForeground(java.awt.Color);
setBackground(java.awt.Color);