com.holub.ui
Interface Colors


public interface Colors

Provides symbolic definitions for various colors not defined in the Color class.

no value, alias for null.
Color Sample R G B
TRANSPARENT  
DARK_RED      99 00 00
MEDIUM_RED      cc 00 00
LIGHT_RED      ff 00 00
DARK_ORANGE      ff 66 00
MEDIUM_ORANGE      ff 99 00
LIGHT_ORANGE      ff cc 00
ORANGE      ff 99 00
OCHRE      cc 99 00
DARK_YELLOW      ff ff 00
MEDIUM_YELLOW      ff ff 99
LIGHT_YELLOW      ff ff dd
DARK_GREEN      00 66 00
MEDIUM_GREEN      00 99 00
LIGHT_GREEN      00 ff 00
GREEN      00 99 00
DARK_BLUE      00 00 99
MEDIUM_BLUE      00 00 cc
LIGHT_BLUE      00 00 ff
DARK_PURPLE      99 00 99
MEDIUM_PURPLE      cc 00 ff
LIGHT_PURPLE      cc 99 ff
PURPLE      cc 00 ff

See Also:
Color

Field Summary
static Color DARK_BLUE
          RGB=(0x00, 0x00, 0x99);    
static Color DARK_GREEN
          RGB=(0x00, 0x66, 0x00);    
static Color DARK_ORANGE
          RGB=(0xff, 0x66, 0x00);    
static Color DARK_PURPLE
          RGB=(0x99, 0x00, 0x99);    
static Color DARK_RED
          RGB=(0x99, 0x00, 0x00);    
static Color DARK_YELLOW
          RGB=(0xff, 0xff, 0x00);    
static Color GREEN
          RGB=(0x00, 0x99, 0x00);    
static Color LIGHT_BLUE
          RGB=(0x00, 0x00, 0xff);    
static Color LIGHT_GREEN
          RGB=(0x00, 0xff, 0x00);    
static Color LIGHT_ORANGE
          RGB=(0xff, 0xcc, 0x00);    
static Color LIGHT_PURPLE
          RGB=(0xcc, 0x99, 0xff);    
static Color LIGHT_RED
          RGB=(0xff, 0x00, 0x00);    
static Color LIGHT_YELLOW
          RGB=(0xff, 0xff, 0xdd);    
static Color MEDIUM_BLUE
          RGB=(0x00, 0x00, 0xcc);    
static Color MEDIUM_GREEN
          RGB=(0x00, 0x99, 0x00);    
static Color MEDIUM_ORANGE
          RGB=(0xff, 0x99, 0x00);    
static Color MEDIUM_PURPLE
          RGB=(0xcc, 0x00, 0xff);    
static Color MEDIUM_RED
          RGB=(0xcc, 0x00, 0x00);    
static Color MEDIUM_YELLOW
          RGB=(0xff, 0xff, 0x99);    
static Color OCHRE
          RGB=(0xcc, 0x99, 0x00);    
static Color ORANGE
          RGB=(0xff, 0x99, 0x00);    
static Color PURPLE
          RGB=(0xcc, 0x00, 0xff);    
 

Field Detail

DARK_RED

static final Color DARK_RED
RGB=(0x99, 0x00, 0x00);    


MEDIUM_RED

static final Color MEDIUM_RED
RGB=(0xcc, 0x00, 0x00);    


LIGHT_RED

static final Color LIGHT_RED
RGB=(0xff, 0x00, 0x00);    


DARK_ORANGE

static final Color DARK_ORANGE
RGB=(0xff, 0x66, 0x00);    


MEDIUM_ORANGE

static final Color MEDIUM_ORANGE
RGB=(0xff, 0x99, 0x00);    


LIGHT_ORANGE

static final Color LIGHT_ORANGE
RGB=(0xff, 0xcc, 0x00);    


ORANGE

static final Color ORANGE
RGB=(0xff, 0x99, 0x00);    


OCHRE

static final Color OCHRE
RGB=(0xcc, 0x99, 0x00);    


DARK_YELLOW

static final Color DARK_YELLOW
RGB=(0xff, 0xff, 0x00);    


MEDIUM_YELLOW

static final Color MEDIUM_YELLOW
RGB=(0xff, 0xff, 0x99);    


LIGHT_YELLOW

static final Color LIGHT_YELLOW
RGB=(0xff, 0xff, 0xdd);    


DARK_GREEN

static final Color DARK_GREEN
RGB=(0x00, 0x66, 0x00);    


MEDIUM_GREEN

static final Color MEDIUM_GREEN
RGB=(0x00, 0x99, 0x00);    


LIGHT_GREEN

static final Color LIGHT_GREEN
RGB=(0x00, 0xff, 0x00);    


GREEN

static final Color GREEN
RGB=(0x00, 0x99, 0x00);    


DARK_BLUE

static final Color DARK_BLUE
RGB=(0x00, 0x00, 0x99);    


MEDIUM_BLUE

static final Color MEDIUM_BLUE
RGB=(0x00, 0x00, 0xcc);    


LIGHT_BLUE

static final Color LIGHT_BLUE
RGB=(0x00, 0x00, 0xff);    


DARK_PURPLE

static final Color DARK_PURPLE
RGB=(0x99, 0x00, 0x99);    


MEDIUM_PURPLE

static final Color MEDIUM_PURPLE
RGB=(0xcc, 0x00, 0xff);    


LIGHT_PURPLE

static final Color LIGHT_PURPLE
RGB=(0xcc, 0x99, 0xff);    


PURPLE

static final Color PURPLE
RGB=(0xcc, 0x00, 0xff);