]> git.ipfire.org Git - thirdparty/cups.git/blob - scripting/java/example/GLPcolors.java
Load cups into easysw/current.
[thirdparty/cups.git] / scripting / java / example / GLPcolors.java
1
2 import java.awt.*;
3 import javax.swing.*;
4 import com.easysw.cups.*;
5
6 public class GLPcolors
7 {
8
9 public static Color backgroundColor = new Color(0xff,0xff,0xff);
10 public static Color errorlightColor = new Color(0xcf,0x66,0x66);
11 public static Color highlightColor = new Color(0x99,0x99,0x66);
12 public static Color foregroundColor = new Color(0,0,0);
13
14 public static Color labelBackgroundColor = new Color( 0x66, 0xcf, 0x66 );
15
16 public static Color tabBackgroundColor = new Color(0x22,0x22,0x8f);
17 public static Color tabForegroundColor = new Color(0xff,0xff,0xff);
18
19 public static Color buttonForegroundColor = new Color(0xff,0xff,0xff);
20 public static Color buttonBackgroundColor = new Color(0x22,0x22,0x8f);
21
22 }