/css-themer

A postCSS plugin to create themes based on a single css file. -- under development

Primary LanguageJavaScriptMIT LicenseMIT

PostCSS Themer Build Status

PostCSS plugin themer reads through the css file and spits out theme files by swaping colors and fonts.

.foo {
	color: amin;
}
.foo {
  color: #000;
}

Usage

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

See PostCSS docs for examples for your environment.