interface Colors {
  lochmara: string;
}

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

  &:hover {
    text-decoration: underline;
  }
`;
