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

export default (Colors: Colors) => (rest: string) => `
  ${rest};
  background-color: ${Colors.white};
  color: ${Colors.lochmara};
  border: 2px solid ${Colors.lochmara};

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