/******************************************************************************* * Copyright (c) 2004, 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.gef.examples.text.figures; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Font; public class StyleConstants { public static final Color CODE_FG = new Color(null, 0, 0, 32); public static final Font COURIER = new Font(null, "Courier New", 10, 0); public static final Font COURIER_BOLD = new Font(null, "Courier New", 10, SWT.BOLD); public static final Font COMMENT = new Font(null, "Arial", 10, 0); }