Skip to content

Instantly share code, notes, and snippets.

@stevekinney
Created December 15, 2019 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevekinney/7e0be23d7f0e3947bbb16e947d547e52 to your computer and use it in GitHub Desktop.
Save stevekinney/7e0be23d7f0e3947bbb16e947d547e52 to your computer and use it in GitHub Desktop.
/* HSL */
$teal: hsla(180%, 78%, 62%, 1);
$black: hsla(96%, 20%, 5%, 1);
$pink: hsla(339%, 100%, 56%, 1);
$yellow: hsla(61%, 100%, 54%, 1);
$white: hsla(0%, 0%, 100%, 1);
/* RGB */
$teal: rgba(81, 234, 234, 1);
$black: rgba(12, 15, 10, 1);
$pink: rgba(255, 32, 110, 1);
$yellow: rgba(251, 255, 18, 1);
$white: rgba(255, 255, 255, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment