Skip to content

ac-amygdala/postcss-themeize

Repository files navigation

PostCSS Themeize Build Status

PostCSS plugin walks through rules and and creates themed rules according to config.

It uses @your_variable syntax to determine which css declarations should be wrapped in theme. It copies selectors and prepend them with theme classname and appends all needed css properties with theme-dependent values.

/* Input css */

.foo {
  color: @base_color;
  /* some other styles */
}
/* Config with themes passed to PostCSS */

{
  themes: {
    green: {
      base_color: '#00ff00';
    },
    pink: {
      base_color: 'rgb(255,20,147)';
    }
  }
}
/* Output css */

.foo {
  /* some other styles */
}

.green .foo {
  color: #00ff00;
}

.pink .foo {
  color: rgb(255,20,147);
}

Usage

postcss([ require('postcss-themeize') ])

See PostCSS docs for examples for your environment.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published