#Quantum-Colors
Use the color palette from Google's Material Design spec in your Sass projects.
Picked up the colors from https://github.com/nickpfisterer/quantum-colors Added maps for individual color palettes Added functions to define palettes and retreive palette colors
Import "quantum-colors" into your sass file
@import "quantum-colors";
Modify it to define your palette instead of the cyan-yellow-orange palette currently defined.
$primary: create-palette($blue-pal);
Use functions "xdark-pal", "dark-pal", "base-pal", "light-pal", "xlight-pal" to use colors in your project. For example:
.myHeader{
background-color: base-pal($primary);
}
v1.0.0 (06-25-2015):
- First release