*****************************************************************
COMPLETE SOURCE CODE FOR : SetJLabelTextColor.java
*****************************************************************
import javax.swing.JLabel;
import javax.swing.JFrame;
import java.awt.Color;
import java.awt.FlowLayout;
public class SetJLabelTextColor
{
public static void main(String[]args)
{
//Create label with text HI using JLabel
JLabel label=new JLabel("HI");
//Create JFrame with title ( Set JLabel text color )
JFrame frame=new JFrame("Set JLabel text color");
//Set JFrame layout to FlowLayout
frame.setLayout(new FlowLayout());
//Set color base on RGB
//You can get RGB value for your color at "Color picker" at above
//R=255
//G=0
//B=0
Color color=new Color(255,0,0);
//Set JLabel text color to color that you choose
label.setForeground(color);
//Add JLabel into JFrame
frame.add(label);
//Set default close operation for JFrame
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Set JFrame size
frame.setSize(500,300);
//Make JFrame visible
frame.setVisible(true);
}
}
*****************************************************************
JUST COMPILE AND EXECUTE IT
*****************************************************************