Java Swing Tutorial - Java Color(int rgb) Constructor








Syntax

Color(int rgb) constructor from Color has the following syntax.

public Color(int rgb)

Example

In the following code shows how to use Color.Color(int rgb) constructor.

import java.awt.Color;
// w w  w.  j  av a 2 s.c  o  m
import javax.swing.JFrame;
import javax.swing.JLabel;

public class Main {
  public static void main(String[] args) {
    Color myColor = new Color(0XFFFFFF);          

    JLabel label = new JLabel("First Name");
    label.setForeground(myColor);

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

    
  }
}