/**
* MemberCard component background color options.
* Treat this file as an enum.
* @module memberCardColorOptions
* @category ChoirMembers
* @author Dan Levy <danlevy124@gmail.com>
*/
/**
* Primary blue color
*/
export const PRIMARY_BLUE = "primaryBlue";
/**
* Secondary blue color
*/
export const SECONDARY_BLUE = "secondaryBlue";
/**
* Tertiary blue color
*/
export const TERTIARY_BLUE = "tertiaryBlue";
/**
* Green color
*/
export const GREEN = "green";
/**
* Orange color
*/
export const ORANGE = "orange";
/**
* Red color
*/
export const RED = "red";
Source