If you use Sass extension, you can work with CSS variables.
First, let's create our css variable.
html, :root
--MyColor: #5966D2
// :root is not an element for Sass. But you can use html before.
// Put this into functions.php | |
// Learn more : http://codex.wordpress.org/Post_Types | |
function custom_post_type() { | |
$labels = array( | |
'name' => 'Books', | |
'singular_name' => 'Book', | |
'add_new' => 'Add New', | |
'add_new_item' => 'Add New Book', | |
'edit_item' => 'Edit Book', |
var gulp = require('gulp'); | |
var modernizr = require('gulp-modernizr'); | |
gulp.task('modernizr', function() { | |
return gulp.src(['js/**/*.js', 'scss/**/*.scss']) | |
.pipe(modernizr({ | |
'cache': true, | |
'options': [ | |
'setClasses' | |
] |