Skip to content

Instantly share code, notes, and snippets.

@patrickpietens
Last active August 29, 2015 14:18
Show Gist options
  • Save patrickpietens/ffbef22fbc81493ded6b to your computer and use it in GitHub Desktop.
Save patrickpietens/ffbef22fbc81493ded6b to your computer and use it in GitHub Desktop.
Color maps
$colors: (
// Basic colors
black: rgb(34, 34, 34),
white: rgb(255, 255, 255),
grey: rgb(245, 245, 245),
// Text styles
default-text-color: rgb(34, 34, 34),
dimmed-text-color: rgb(178, 178, 178),
// Stroke colors
default-stroke-color: rgb(218, 218, 220),
dark-stroke-color: rgb(67, 67, 69),
// Placeholder colors
image-placeholder-color: rgb(218, 218, 218),
video-placeholder-color: rgb(0, 0, 0),
green: rgb(0, 150, 148)
);
$categories: (
hiphop: #1999b2,
recordings: #ce3f3d,
selections: #4fa066,
overig: #846b9c
);
// Color mixins
@function color($name) {
@return map-get($colors, $name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment