Skip to content

Instantly share code, notes, and snippets.

@Alvai
Last active May 25, 2019 19:28
Show Gist options
  • Save Alvai/7a2ccc6365f699e63bb23234dfb40e78 to your computer and use it in GitHub Desktop.
Save Alvai/7a2ccc6365f699e63bb23234dfb40e78 to your computer and use it in GitHub Desktop.
[Palette] color palette #scss
/* HSLa */
$alvai-blue: HSLa(210, 77%, 57%, 1);
$alvai-dark: HSLa(210, 29%, 24%, 1);
$alvai-rose: HSLa(356, 92%, 71%, 1);
$alvai-yellow: HSLa(43, 100%, 73%, 1);
$alvai-snow: HSLa(0, 0%, 98%, 1);
/* RGBA */
$alvai-blue: rgba(60, 145, 230, 1);
$alvai-dark: rgba(44, 62, 80, 1);
$alvai-rose: rgba(249, 112, 121, 1);
$alvai-yellow: rgba(255, 217, 117, 1);
$alvai-snow: rgba(249, 249, 249, 1);
/* HEX */
$alvai-blue: #3C91E6;
$alvai-dark: #2C3E50;
$alvai-rose: #F97079;
$alvai-yellow: #FFD975;
$alvai-snow: #F9F9F9;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment