interface Colors {
  lochmara: string;
  regalBlue: string;
  white: string;
}

export default (Colors: Colors) => `
  background-color: ${Colors.white};
  color: ${Colors.lochmara};

  &:hover { color: ${Colors.regalBlue}; }
`;
