Java Swing Tutorial - Java Color BLUE








Syntax

Color.BLUE has the following syntax.

public static final Color BLUE

Example

In the following code shows how to use Color.BLUE field.

/*from   w  ww  .j a va2 s  .co m*/
import java.awt.Color;

import javax.swing.JFrame;
import javax.swing.JLabel;

public class Main {
  public static void main(String[] args) {
    JLabel label = new JLabel("First Name");
    label.setForeground(Color.BLUE);

    
    
    JFrame frame = new JFrame();
    frame.add(label);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(20,20, 500,500);
    frame.setVisible(true);
  }
}