Beautiful Colors
Life is colorful, but elapse remains, so that capturing those beautiful colors is worth.
Usage
Install
npm i beautiful-colors --save
PostCSS & Webpack
-
install devDependencies.
npm i webpack style-loader css-loader postcss-loader postcss-simple-vars --save-dev
-
config webpack.config.js.
...
module: {
loaders: [
...
{
test: /\.css$/
loader: 'style!css!postcss'
}
...
]
}
...
postcss: function() {
return [
...
postcssSimpleVars
...
]
}
...
-
import.
@import 'beautiful-colors';
body {
background: $beautiful-color;
}
Author
bjmin
License
MIT