Skip to main content
summaryrefslogtreecommitdiffstats
blob: 3d56b75e4eb9342a0d9d678cf415cb6b4669baf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*******************************************************************************
* Copyright (c) 2014 BestSolution.at 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:
* 	Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
*******************************************************************************/
package org.eclipse.fx.code.compensator.editor.xml;

import javafx.scene.paint.Color;

public interface IXMLColorConstants {
	Color XML_COMMENT = Color.rgb(128, 0, 0);
	Color PROC_INSTR = Color.rgb(128, 128, 128);
	Color STRING = Color.rgb(0, 128, 0);
	Color DEFAULT = Color.rgb(0, 0, 0);
	Color TAG = Color.rgb(0, 0, 128);
}

Back to the top