Java Color Value getNimbusDisabledTextColor()

Here you can find the source of getNimbusDisabledTextColor()

Description

Returns the Nimbus look and feel's disabled text color.

License

Open Source License

Return

Color

Declaration

public static final Color getNimbusDisabledTextColor() 

Method Source Code


//package com.java2s;
import java.awt.Color;
import javax.swing.UIManager;

public class Main {
    /**/*from w  ww  .j av a2  s.  co m*/
     * Returns the Nimbus look and feel's disabled text color.
     * @return Color
     * @since 2.0.1
     */
    public static final Color getNimbusDisabledTextColor() {
        return new Color(UIManager.getColor("nimbusDisabledText").getRGB());
    }
}

Related

  1. getGripperForegroundColor(Color color)
  2. getInfoColor()
  3. getLetterIcon(Character letter, Color fgColor, Color bgColor, int size)
  4. getLightColor()
  5. getMediumDarkColor()
  6. getRolloverColor()
  7. getSubstanceColor(String name)
  8. getTextColor()
  9. getTextForegroundColor()