/******************************************************************************* * Copyright (c) 2006, 2017 Red Hat Inc. 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: * Kyu Lee <klee@redhat.com> - initial API and implementation *******************************************************************************/ package org.eclipse.linuxtools.internal.changelog.core.editors; /** * Color scheme to use for syntax highlighting. * * @author klee (Kyu Lee) * */ public interface IChangeLogColorConstants { String FILE_NAME = "org.eclipse.linuxtools.changelog.editor.color.file_name"; String FUNC_NAME = "org.eclipse.linuxtools.changelog.editor.color.func_name"; String TEXT = "org.eclipse.linuxtools.changelog.editor.color.text"; String EMAIL = "org.eclipse.linuxtools.changelog.editor.color.email"; }