Created
May 15, 2015 17:03
-
-
Save adtaylor/b3d66478ff3ea451e7a1 to your computer and use it in GitHub Desktop.
SCSS Colour lists
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
$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