Created
December 15, 2019 20:47
-
-
Save stevekinney/7e0be23d7f0e3947bbb16e947d547e52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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