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"); }