Repository for the HealthTool which enables Apple users to analyse their health data from the Apple health app and prepares the data for contributing it for future studies on wearable data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
981 B

package application.res;
import javafx.scene.paint.Color;
public class Colors
{
/** used to indicate elements with selected sub elements (but not all sub elements are selected)**/
public static Color lightGreen= Color.valueOf("#a2c69f");
/** Used to indicate selected elements**/
public static Color green= Color.valueOf("#668c63");
/** Main color**/
public static Color darkBlue= Color.valueOf("#01283f");
/** A very slight grey for light accents**/
public static Color lightGrey= Color.valueOf("#e6e6e6");
/** A medium grey, for normal accents**/
public static Color grey= Color.valueOf("#bebebe");
/** Accent color for the navigation**/
public static Color red= Color.valueOf("#c82254");
/** A dark grey which can't be differentiated from black or the main color much. Should be used sparsely **/
public static Color darkGrey= Color.valueOf("#919191");
/** A bright blue which can be used for links **/
public static Color blue= Color.valueOf("#004877");
}