postcss-closure-variables

1.0.2 • Public • Published

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.

Package Sidebar

Install

npm i postcss-closure-variables

Weekly Downloads

4

Version

1.0.2

License

MIT

Last publish

Collaborators

  • ddprrt