Constants.java
/*
* Copyright (C) 2015 eXo Platform SAS.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.exoplatform.calendar.util;
/**
* @author <a href="trongtt@gmail.com">Trong Tran</a>
* @version $Revision$
*/
public interface Constants {
String N_ASPARAGUS = "asparagus";
String N_MUNSELL_BLUE = "munsell_blue";
String N_NAVY_BLUE = "navy_blue";
String N_PURPLE = "purple";
String N_RED = "red";
String N_BROWN = "brown";
String N_LAUREL_GREEN = "laurel_green";
String N_SKY_BLUE = "sky_blue";
String N_BLUE_GRAY = "blue_gray";
String N_LIGHT_PURPLE = "light_purple";
String N_HOT_PINK = "hot_pink";
String N_LIGHT_BROWN = "light_brown";
String N_MOSS_GREEN = "moss_green";
String N_POWDER_BLUE = "powder_blue";
String N_LIGHT_BLUE = "light_blue";
String N_PINK = "pink";
String N_ORANGE = "orange";
String N_GRAY = "gray";
String N_GREEN = "green";
String N_BABY_BLUE = "baby_blue";
String N_LIGHT_GRAY = "light_gray";
String N_BEIGE = "beige";
String N_YELLOW = "yellow";
String N_PLUM_PURPLE = "#CEA6AC";
String[] COLORS = { N_ASPARAGUS, N_MUNSELL_BLUE, N_NAVY_BLUE, N_PURPLE, N_RED, N_BROWN,
N_LAUREL_GREEN, N_SKY_BLUE, N_BLUE_GRAY, N_LIGHT_PURPLE, N_HOT_PINK, N_LIGHT_BROWN,
N_MOSS_GREEN, N_POWDER_BLUE, N_LIGHT_BLUE, N_PINK, N_ORANGE, N_GRAY,
N_GREEN, N_BABY_BLUE, N_LIGHT_GRAY, N_BEIGE, N_YELLOW, N_PLUM_PURPLE };
}