Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPColorConstants.java')
-rw-r--r--systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPColorConstants.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPColorConstants.java b/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPColorConstants.java
index 97ca5e873d..e5287a63fd 100644
--- a/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPColorConstants.java
+++ b/systemtap/org.eclipse.linuxtools.systemtap.ui.ide/src/org/eclipse/linuxtools/internal/systemtap/ui/ide/editors/stp/STPColorConstants.java
@@ -1,23 +1,23 @@
/* Copyright (c) 2008 Phil Muldoon <pkmuldoon@picobot.org>.
- *
+ *
* 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:
- * Phil Muldoon <pkmuldoon@picobot.org> - initial API and implementation.
+ * Phil Muldoon <pkmuldoon@picobot.org> - initial API and implementation.
*******************************************************************************/
package org.eclipse.linuxtools.internal.systemtap.ui.ide.editors.stp;
import org.eclipse.swt.graphics.RGB;
public interface STPColorConstants {
- RGB KEYWORD = new RGB(127, 0, 85);
- RGB COMMENT = new RGB(63, 127, 95);
- RGB STP_STRING = new RGB(0, 0, 255);
- RGB DEFAULT = new RGB(0, 0, 0);
- RGB EMBEDDED = new RGB (0, 64, 64);
+ RGB KEYWORD = new RGB(127, 0, 85);
+ RGB COMMENT = new RGB(63, 127, 95);
+ RGB STP_STRING = new RGB(0, 0, 255);
+ RGB DEFAULT = new RGB(0, 0, 0);
+ RGB EMBEDDED = new RGB (0, 64, 64);
RGB EMBEDDEDC = new RGB (0, 64, 64);
RGB TYPE= new RGB(0, 0, 128);

Back to the top