Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/letsjaam/postcss-letter-tracking

PostCSS plugin to generate relative, Photoshop-compatible letter tracking for improved letter spacing.
https://github.com/letsjaam/postcss-letter-tracking

letter-spacing letter-tracking postcss postcss-plugin typography

Last synced: about 1 month ago
JSON representation

PostCSS plugin to generate relative, Photoshop-compatible letter tracking for improved letter spacing.

Awesome Lists containing this project

README

        

# PostCSS Letter Tracking [![Build Status][ci-img]][ci]

[PostCSS] plugin to generate relative, Photoshop-compatible letter tracking for improved letter spacing.

[PostCSS]: https://github.com/postcss/postcss
[ci-img]: https://travis-ci.org/letsjaam/postcss-letter-tracking.svg
[ci]: https://travis-ci.org/letsjaam/postcss-letter-tracking

#### Input
```css
.foo {
letter-tracking: 100;
}
```

#### Output
```css
.foo {
letter-spacing: 0.1em;
}
```

## Usage

```js
postcss([ require('postcss-letter-tracking') ])
```

See [PostCSS] docs for examples for your environment.