ikkou / postcss-japanese-stylesheets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PostCSS Japanese Stylesheets Build Status

πŸ‘Ί PostCSS plugin for writing Japanese Stylesheets, especially for Japanese Traditional Colors.

Input

.foo {
  θƒŒζ™―: θ‚Œθ‰² !重要;
  εΉ…: 300px;
  ι«˜γ•: 200px;
}

.bar {
  色: ζš—ι»’θ‰²;
  θ‘Œζƒγˆ: **寄せ;
  ε€ͺさ: ε€ͺい;
  葌高: 1.6;
}

Output

.foo {
  background: #fce2c4 !important;
  width: 300px;
  height: 200px;
}

.bar {
  color: #16160e;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}

Usage

postcss([ require('postcss-japanese-stylesheets') ])

See PostCSS docs for examples for your environment.

Thanks to

Inspiration from postcss-russian-stylesheets

About

License:MIT License


Languages

Language:JavaScript 100.0%