1.0.2 • Published 9 years ago

postcss-closure-variables v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

PostCSS Closure Variables Build Status

PostCSS plugin to enable GWT/Closure stylesheet variables with conditionals.

Examples

Standard usage

@def BLUE_500 #00a6fb;

.foo {
  color: BLUE_500;
}
.foo {
  color: #00a6fb;
}

With conditionals

@def VALUE 4;

@if(VALUE < 3) {
  @def COLOR blue;
} @elseif(VALUE < 5) {
  @def COLOR red;
} @else {
  @def COLOR black;
}

body {
  background-color: COLOR;
}
body {
  background-color: red;
}

Usage

postcss([ require('postcss-closure-variables') ])

See PostCSS docs for examples for your environment.