Home Reference Source

app/styles/colors.js

/**
 * @desc The app's color palette is based on this Adobe color theme:
https://color.adobe.com/Color-Theme-4-color-theme-8030401/edit/?copy=true
It consists of the five colors below:
darkBlue, midBlue, lightBlue, caramel, cream

To access colors in any other file, import colors object
and access individual colors as properties
 */
export const colors = {
  primary1: '#5979A8', // darkBlue
  primary2: '#A2C2EB', // midBlue
  secondary1: '#FFFCE9', // cream
  secondary2: '#CFE5FC', // lightBlue
  neutral: '#F1D4C2', // caramel
};