File: GLPcolors.java

package info (click to toggle)
cupsys 1.1.23-10sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 25,336 kB
  • ctags: 10,233
  • sloc: ansic: 202,855; cpp: 38,366; java: 6,197; sh: 2,186; makefile: 1,615; php: 259; perl: 145; python: 119; lisp: 2
file content (22 lines) | stat: -rw-r--r-- 776 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

import java.awt.*;
import javax.swing.*;
import org.cups.*;

public class GLPcolors
{

    public static Color backgroundColor     = new Color(0xff,0xff,0xff);
    public static Color errorlightColor     = new Color(0xcf,0x66,0x66);
    public static Color highlightColor       = new Color(0x99,0x99,0x66);
    public static Color foregroundColor     = new Color(0,0,0);

    public static Color labelBackgroundColor = new Color( 0x66, 0xcf, 0x66 );

    public static Color tabBackgroundColor  = new Color(0x22,0x22,0x8f);
    public static Color tabForegroundColor  = new Color(0xff,0xff,0xff);

    public static Color buttonForegroundColor  = new Color(0xff,0xff,0xff);
    public static Color buttonBackgroundColor  = new Color(0x22,0x22,0x8f);

}