/* * Copyright (C) 2004 NNL Technology AB * Visit www.infonode.net for information about InfoNode(R) * products and how to contact NNL Technology AB. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. */ // $Id: Colors.java,v 1.4 2004/10/29 15:57:47 jesper Exp $ package net.infonode.gui; /** * @author $Author: jesper $ * @version $Revision: 1.4 $ */ public class Colors { public static final float RED_HUE = 0f; public static final float BROWN_HUE = 0.0833f; public static final float COPPER_HUE = 0.09f; public static final float ORANGE_HUE = 0.1055f; public static final float YELLOW_HUE = 1f / 6; public static final float SAND_HUE = 0.12f; public static final float GREEN_HUE = 1f / 3; public static final float CYAN_HUE = 0.5f; public static final float AZURE_BLUE_HUE = 0.58f; public static final float ROYAL_BLUE_HUE = 0.61f; public static final float BLUE_HUE = 2f / 3; public static final float PURPLE_BUE = 0.77777f; public static final float MAGENTA_HUE = 0.83f; private Colors() { } }