Set text color in JoptionPane


 

Set text color in JoptionPane

In this section, you will learn how to set text color in JOptionPane.

In this section, you will learn how to set text color in JOptionPane.

Set text color in JoptionPane

In this section, you will learn how to set text color in JOptionPane. Now to do this, we have used UIManager class which is responsible for look and feel. Using following key value pair, we have set the text color for JOptionPane and background color for JPanel:

um.put("OptionPane.messageForeground", Color.red);
um.put("Panel.background", Color.yellow);

Here is the code:

import java.awt.*;
import javax.swing.*;

public class SetColor {
	public static void main(String[] args) {
		UIManager um = new UIManager();
		um.put("OptionPane.messageForeground", Color.red);
		um.put("Panel.background", Color.yellow);
		JOptionPane.showMessageDialog(null,"Hello","Set Color",
				JOptionPane.INFORMATION_MESSAGE);
	}
}

Output

In this example code we have explained you how to Set text color in JoptionPane.

Ads