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

https://github.com/hsluv/hsluv-stylus

HSLuv as Stylus plugin
https://github.com/hsluv/hsluv-stylus

Last synced: about 1 year ago
JSON representation

HSLuv as Stylus plugin

Awesome Lists containing this project

README

          

[![Package Version](https://img.shields.io/npm/v/hsluv-stylus.svg)](https://www.npmjs.com/package/hsluv-stylus)

[HSLuv](http://www.hsluv.org) is a perceptually-uniform alternative to HSL. Here is some
[Stylus](http://stylus-lang.com/) code that generates 6 tiles with well-contrasting
complementary colors:

```Stylus
tile(hue)
background-color hsluv(hue, 90%, 80%)
color hsluv(hue + 190deg, 90%, 10%)

for hue in 0deg 30deg 60deg 90deg 120deg 150deg
.colored-tile-{hue}
tile(hue)
```

# Usage

Install the plugin:

```Shell
npm install hsluv-stylus
```

To use from command line, run stylus like this:

```Shell
stylus -u hsluv-stylus < input.styl
```

To use programmatically, do this:

```JavaScript
var stylus = require('stylus');
var hsluvStylus = require('hsluv-stylus');

function renderWithHsluv(str) {
return stylus(str).use(hsluvStylus()).render();
}
```

This module adds two following two Stylus functions that let you specify colors using HSLuv and its
pastel variant HPLuv:

**hsluv(H, S, L, [A])**

**hpluv(H, S, L, [A])**

*H* represents hue as a number between 0 and 360, *S* represents saturation as a number between 0 and
100 and *L* represents lightness as a number between 0 and 100. *A* is an optional value between 0 and
1 representing the alpha channel.

# License

Copyright (C) 2016 Alexei Boronine

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.