1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Added yellow to message colors

This commit is contained in:
Sebastian Kaspari 2010-03-06 20:59:22 +01:00
parent 082bc6f5bd
commit 9fb8460b6d

View File

@ -33,9 +33,10 @@ import android.text.style.ImageSpan;
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class Message {
public static final int COLOR_GREEN = 0xFF458509;
public static final int COLOR_RED = 0xFFcc0000;
public static final int COLOR_BLUE = 0xFF729fcf;
public static final int COLOR_GREEN = 0xFF458509;
public static final int COLOR_RED = 0xFFcc0000;
public static final int COLOR_BLUE = 0xFF729fcf;
public static final int COLOR_YELLOW = 0xFFbe9b01;
private int icon = -1;
private String text;