/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo 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 3 of the License, or * (at your option) any later version. * * OpenFlexo 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 OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo; import java.awt.Color; public class ColorCst { public static final Color HYPERLINK_COLOR = Color.BLUE; public static final Color BORDER_COLOR_FOR_UNFOCUSED_WIDGET = Color.WHITE; public static final Color BORDER_COLOR_FOR_FOCUSED_WIDGET = Color.RED; public static final Color SELECTED_LINES_TABULAR_VIEW_COLOR = new Color(181, 213, 255); public static final Color ODD_LINES_TABULAR_VIEW_COLOR = new Color(237, 243, 254); public static final Color NON_ODD_LINES_TABULAR_VIEW_COLOR = Color.WHITE; public static final Color SELECTED_CELL_TABULAR_VIEW_FOREGROUND_COLOR = Color.WHITE; public static final Color UNSELECTED_CELL_TABULAR_VIEW_FOREGROUND_COLOR = Color.BLACK; public static final Color UNSELECTED_DISABLED_CELL_TABULAR_VIEW_FOREGROUND_COLOR = Color.LIGHT_GRAY; public static final Color LIGHT_BLUE = new Color(181, 213, 255); public ColorCst() { super(); } }