00001 package edu.stanford.hci.r3.util.components.ribbons;
00002
00003 import java.awt.Color;
00004 import java.awt.Font;
00005
00018 public interface RibbonConstants {
00019
00020 public static final Font CATEGORY_LABEL_FONT = new Font("Tahoma", Font.PLAIN, 13);
00021
00025 public static final Color HEADER_COLOR = new Color(167, 177, 202);
00026
00027 public static final Font HEADER_FONT = new Font("Tahoma", Font.PLAIN, 10);
00028
00029 public static final int HEADER_HEIGHT = 18;
00030
00031 public static final Color NOT_SELECTED_COLOR = new Color(183, 188, 189);
00032
00033 public static final Color PANEL_BEGIN_COLOR = new Color(207, 213, 225);
00034
00035 public static final Color PANEL_END_COLOR = new Color(193, 200, 216);
00036
00037 public static final Color SELECTED_COLOR = new Color(203, 215, 231);
00038
00039 public static final Color STRIP_DARK = new Color(180, 183, 202);
00040
00041 public static final Color STRIP_LIGHT = new Color(219, 223, 234);
00042 }