KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > editor2d > util > EditorColorConstants


1 /**
2  * <p> Project: com.nightlabs.editor2d </p>
3  * <p> Copyright: Copyright (c) 2004 </p>
4  * <p> Company: NightLabs GmbH (Germany) </p>
5  * <p> Creation Date: 13.12.2004 </p>
6  * <p> Author: Daniel Mazurek </p>
7 **/

8 package com.nightlabs.editor2d.util;
9
10 import org.eclipse.swt.graphics.Color;
11
12
13 public interface EditorColorConstants
14 {
15   public final static Color highlightColor = new Color(null,66,166,115);
16   public final static Color ghostColor = new Color(null, 31, 31, 31);
17   public final static Color backgroundBlue = new Color(null, 200, 200, 240);
18 }
19
Popular Tags