1 27 28 package org.nightlabs.editor2d.util; 29 30 import org.eclipse.swt.graphics.Color; 31 32 33 public interface EditorColorConstants 34 { 35 public final static Color highlightColor = new Color(null,66,166,115); 36 public final static Color ghostColor = new Color(null, 31, 31, 31); 37 public final static Color backgroundBlue = new Color(null, 200, 200, 240); 38 } 39 | Popular Tags |