/******************************************************************************* * Copyright (c) 2005 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.bpel.common.ui.details; /** * Color keys used by the details editor framework. */ public interface IDetailsColors { public static final String COLOR_CANVAS = "canvas"; //$NON-NLS-1$ public static final String COLOR_TEXT = "text"; //$NON-NLS-1$ public static final String COLOR_DARK_BACKGROUND = "dark_background"; //$NON-NLS-1$ public static final String COLOR_LIGHT_BACKGROUND = "light_background"; //$NON-NLS-1$ public static final String COLOR_DARK_SHADOW = "dark_shadow"; //$NON-NLS-1$ public static final String COLOR_TOOL_SELECTED_1 = "tool_selected_1"; //$NON-NLS-1$ public static final String COLOR_TOOL_SELECTED_2 = "tool_selected_2"; //$NON-NLS-1$ public static final String COLOR_TOOL_SELECTED_BORDER = "tool_selected_border"; //$NON-NLS-1$ public static final String COLOR_SCROLL_BUTTON = "scroll_button"; //$NON-NLS-1$ // tray public static final String COLOR_TRAY_BACKGROUND = "trayBackground"; //$NON-NLS-1$ }