00001
00002
00003
00004
00005
00006
00007 package org.swtchart;
00008
00009 import org.eclipse.swt.graphics.RGB;
00010
00014 public class Constants {
00015
00017 final static public int LARGE_FONT_SIZE = 13;
00018
00020 final static public int MEDIUM_FONT_SIZE = 11;
00021
00023 final static public int SMALL_FONT_SIZE = 9;
00024
00026 @Deprecated
00027 final static public RGB LIGHT_BLUE = new RGB(153, 186, 243);
00028
00030 @Deprecated
00031 final static public RGB BLUE = new RGB(0, 0, 255);
00032
00034 @Deprecated
00035 final static public RGB WHITE = new RGB(255, 255, 255);
00036
00038 @Deprecated
00039 final static public RGB GRAY = new RGB(200, 200, 200);
00040
00042 @Deprecated
00043 final static public RGB DARK_GRAY = new RGB(150, 150, 150);
00044
00046 @Deprecated
00047 final static public RGB BLACK = new RGB(0, 0, 0);
00048 }