package se.dat255.grupp12; import android.graphics.Color; /** * Created by Oscar on 2013-10-10. */ public class AppTheme { // BACKGROUNDS public static int PRIORITY_LOW(){ return Color.rgb(146, 179, 36);} public static int PRIORITY_MEDIUM(){ return Color.rgb(253, 207, 0);} public static int PRIORITY_HIGH(){ return Color.rgb(234, 97, 65);} public static int ITEM_DONE(){ return Color.rgb(211, 211, 211);} }