Example usage for java.awt SystemColor desktop

List of usage examples for java.awt SystemColor desktop

Introduction

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

Prototype

SystemColor desktop

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

Click Source Link

Document

The color rendered for the background of the desktop.

Usage

From source file:Main.java

public static void main(String[] args) {
    System.out.println(SystemColor.DESKTOP);

}

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);/*w  w w .  j a v a  2s . c o m*/

    }

}