/******************************************************************************* * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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: * Exadel, Inc. and Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.common.model.ui.forms; public interface IFormColor { public static final String DEFAULT_BACKGROUND = "_default_background"; //$NON-NLS-1$ public static final String DEFAULT_FOREGROUND = "_default_foreground"; //$NON-NLS-1$ public static final String DEFAULT_HEADER_BACKGROUND = "_default_header_background"; //$NON-NLS-1$ public static final String DEFAULT_HEADER_FOREGROUND = "_default_header_foreground"; //$NON-NLS-1$ public static final String BORDER_BACKGOUND = "_border_background"; //$NON-NLS-1$ public static final String BORDER_FOREGOUND = "_border_foreground"; //$NON-NLS-1$ public static final String SEPARATOR_COMPOSITE_BACKGOUND = "_separator_composite_background"; //$NON-NLS-1$ public static final String HYPERLINK_DEFAULT_BACKGOUND = "_hyperlink_default_background"; //$NON-NLS-1$ public static final String HYPERLINK_DEFAULT_FOREGOUND = "_hyperlink_default_foreground"; //$NON-NLS-1$ public static final String HYPERLINK_ROLLOVER_BACKGOUND = "_hyperlink_rollover_background"; //$NON-NLS-1$ public static final String HYPERLINK_ROLLOVER_FOREGOUND = "_hyperlink_rollover_foreground"; //$NON-NLS-1$ public static final String HYPERLINK_VISITED_BACKGOUND = "_hyperlink_visited_background"; //$NON-NLS-1$ public static final String HYPERLINK_VISITED_FOREGOUND = "_hyperlink_visited_foreground"; //$NON-NLS-1$ }