Color Variables

This commit is contained in:
Alex Wolfe 2015-02-23 21:44:23 -08:00
parent 9af4a31457
commit adb097cf69
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
/*
* Color Variables
*
* Colors are ordered from light to dark (top to bottom).
* Do not use hex codes directly in other Sass files. The
* following colors are the only approved colors for this site.
*/
// GREEN COLORS
$cactus: #61BC67;
// BLUE COLORS
$sky: #0085D3;
$regal: #0273D4;
$blueberry: #0262C2;
$ocean: #0143A3;
// RED COLORS
$squid: #EF3872;
$cardinal: #E23237;
$ruby: #B52E31;
// DARK GRAY COLORS
$charcoal: #000000;
$steel: #36474F;
$silver: #445A64;
$platinum: #536E7A;
// LIGHT GRAY COLORS
$cloud: #AFBEC5;
$fog: #CFD8DC;
$mist: #ECEFF1;
$snow: #FFFFFF;