Skip to content

Instantly share code, notes, and snippets.

@cimmanon
Created July 29, 2014 15:51
Show Gist options
  • Save cimmanon/ca845a186b5296c370a6 to your computer and use it in GitHub Desktop.
Save cimmanon/ca845a186b5296c370a6 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.0.rc.1)
// Compass (v1.0.0.alpha.20)
// ----
@function palette($palette, $tone: 'base') {
@return map-get( map-get($palettes, $palette), $tone );
}
$palettes: (
neutral: (
base : #ccc,
xlight: #efefef,
)
);
$default-color: palette( neutral, xlight );
.foo {
color: $default-color;
}
.foo {
color: #efefef;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment