Skip to content

Instantly share code, notes, and snippets.

@adtaylor
Created May 15, 2015 17:03
Show Gist options
  • Save adtaylor/b3d66478ff3ea451e7a1 to your computer and use it in GitHub Desktop.
Save adtaylor/b3d66478ff3ea451e7a1 to your computer and use it in GitHub Desktop.
SCSS Colour lists
$blue-shades: #002050, #00188F, #4668C5 !default;
@function blue($shade:2) {
@return nth($blue-shades, $shade);
}
color: blue(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment