Example usage for java.awt SystemColor textHighlight

List of usage examples for java.awt SystemColor textHighlight

Introduction

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

Prototype

SystemColor textHighlight

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

Click Source Link

Document

The color rendered for the background 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);/*from  w  w w.  j a v a  2 s  .  com*/

    }

}

From source file:plugin.notes.gui.JIcon.java

private void buttonFocusGained(FocusEvent evt) {

    setBackground(SystemColor.textHighlight);
    button.setBackground(SystemColor.textHighlight);
}