Back to project page DIYgenomics_Android.
The source code is released under:
/** * Copyright (C) 2010 DIYgenomics diygenomics.org * Copyright (C) 2010 Melanie Swan mxswan@gmail * Copyright (C) 2010 Michael Kolb * Copyright (C) 2010 Lawrence S. Wong * All rights reserved. * * M...
If you think the Android project DIYgenomics_Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.diygenomics.pg; //from ww w .j av a 2s. c o m import android.graphics.Color; public class Constants { private Constants() { } public static final int COLOR_BG1 = Color.WHITE; public static final int COLOR_BG2 = Color.argb(255, 245, 248, 245); public static final int COLOR_COMP1 = Color.argb(255, 117, 164, 251); public static final int COLOR_COMP2 = Color.argb(255, 254, 153, 85); public static final int COLOR_COMP3 = Color.argb(255, 127, 198, 89); }