How do I set the colour of a label (coloured text) in Java?

JavaTextColorsLabelFonts

Java Problem Overview


How do I set the color of the text of a label?

myLabel.setText("Text Color: Red");
myLabel.???

Can I have two seperate colors in one label?

For example here:

The "Text Color:" to be black and the "Red" to be red.

Java Solutions


Solution 1 - Java

For single color foreground color

label.setForeground(Color.RED)

For multiple foreground colors in the same label:

(I would probably put two labels next to each other using a GridLayout or something, but here goes...)

You could use html in your label text as follows:

frame.add(new JLabel("<html>Text color: <font color='red'>red</font></html>"));

which produces:

enter image description here

Solution 2 - Java

You can set the color of a JLabel by altering the foreground category:

JLabel title = new JLabel("I love stackoverflow!", JLabel.CENTER);

title.setForeground(Color.white);

As far as I know, the simplest way to create the two-color label you want is to simply make two labels, and make sure they get placed next to each other in the proper order.

Solution 3 - Java

JLabel label = new JLabel ("Text Color: Red");
label.setForeground (Color.red);

this should work

Solution 4 - Java

object.setForeground(Color.green);

*any colour you wish *object being declared earlier

Solution 5 - Java

One of the disadvantages of using HTML for labels is when you need to write a localizable program (which should work in several languages). You will have issues to change just the translatable text. Or you will have to put the whole HTML code into your translations which is very awkward, I would even say absurd :)

gui_en.properties:

title.text=<html>Text color: <font color='red'>red</font></html>

gui_fr.properties:

title.text=<html>Couleur du texte: <font color='red'>rouge</font></html>

gui_ru.properties:

title.text=<html>Цвет текста: <font color='red'>красная</font></html>

Solution 6 - Java

Just wanted to add on to what @aioobe mentioned above...

In that approach you use HTML to color code your text. Though this is one of the most frequently used ways to color code the label text, but is not the most efficient way to do it.... considering that fact that each label will lead to HTML being parsed, rendering, etc. If you have large UI forms to be displayed, every millisecond counts to give a good user experience.

You may want to go through the below and give it a try....

Jide OSS (located at https://jide-oss.dev.java.net/) is a professional open source library with a really good amount of Swing components ready to use. They have a much improved version of JLabel named StyledLabel. That component solves your problem perfectly... See if their open source licensing applies to your product or not.

This component is very easy to use. If you want to see a demo of their Swing Components you can run their WebStart demo located at www.jidesoft.com (http://www.jidesoft.com/products/1.4/jide_demo.jnlp). All of their offerings are demo'd... and best part is that the StyledLabel is compared with JLabel (HTML and without) in terms of speed! :-)

A screenshot of the perf test can be seen at (http://img267.imageshack.us/img267/9113/styledlabelperformance.png)

Solution 7 - Java

myLabel.setForeground(new java.awt.Color(255, 0, 0));

while numbers between brackets describe the combination of the Red,Green,Blue color values, the higher value produces a lighter color, the value can vary from 0 to 255.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionStefanos KargasView Question on Stackoverflow
Solution 1 - JavaaioobeView Answer on Stackoverflow
Solution 2 - JavaRaven DreamerView Answer on Stackoverflow
Solution 3 - JavaRomanView Answer on Stackoverflow
Solution 4 - JavaWazim the ANDROID boyView Answer on Stackoverflow
Solution 5 - JavaHonza ZidekView Answer on Stackoverflow
Solution 6 - JavaarcamaxView Answer on Stackoverflow
Solution 7 - JavaMohannadView Answer on Stackoverflow