Last active
August 29, 2015 14:18
-
-
Save patrickpietens/ffbef22fbc81493ded6b to your computer and use it in GitHub Desktop.
Color maps
This file contains 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
$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