Example usage for java.awt SystemColor textHighlightText

List of usage examples for java.awt SystemColor textHighlightText

Introduction

In this page you can find the example usage for java.awt SystemColor textHighlightText.

Prototype

SystemColor textHighlightText

To view the source code for java.awt SystemColor textHighlightText.

Click Source Link

Document

The color rendered for the text of selected items, such as in menus, comboboxes, and text.

Usage

From source file:Main.java

public static void main(String[] a) {
    Color[] sysColor = new Color[] { SystemColor.activeCaption, SystemColor.activeCaptionBorder,
            SystemColor.activeCaptionText, SystemColor.control, SystemColor.controlDkShadow,
            SystemColor.controlHighlight, SystemColor.controlLtHighlight, SystemColor.controlShadow,
            SystemColor.controlText, SystemColor.desktop, SystemColor.inactiveCaption,
            SystemColor.inactiveCaptionBorder, SystemColor.inactiveCaptionText, SystemColor.info,
            SystemColor.infoText, SystemColor.menu, SystemColor.menuText, SystemColor.scrollbar,
            SystemColor.text, SystemColor.textHighlight, SystemColor.textHighlightText,
            SystemColor.textInactiveText, SystemColor.textText, SystemColor.window, SystemColor.windowBorder,
            SystemColor.windowText };

    for (Color c : sysColor) {
        System.out.println(c);// ww w.ja v  a 2 s . com

    }

}