1 package org.hibernate.eclipse.console.editors;2 3 import org.eclipse.swt.graphics.RGB;4 5 public interface IHQLColorConstants {6 RGB XML_COMMENT = new RGB(128, 0, 0);7 RGB PROC_INSTR = new RGB(128, 128, 128);8 RGB STRING = new RGB(0, 128, 0);9 RGB DEFAULT = new RGB(0, 0, 0);10 RGB TAG = new RGB(0, 0, 128);11 }12