postcss-easing-gradients
postcss-easing-gradients copied to clipboard
PostCSS plugin to create smooth linear-gradients that approximate easing functions.
* Changed `postcss` dependency version to 8 :new:, [plugin migration guide](https://evilmartians.com/chronicles/postcss-8-plugin-migration). * Changed Node.js version to 10. Note: PostCSS v8 dropped Node.js 6.x, 8.x, 11.x, and 13.x versions support. Closes...
Is this library still actively maintained? It looks like it has not been updated for a while and also no issues or PR are being looked at.
```scss $bg-color: #181818; $gradient-primary-raw: linear-gradient( 0deg, $color-primary, $color-primary2 ); background-image: linear-gradient(to right, $bg-color, $bg-color), $gradient-primary-raw; ``` generate this ` background-image: linear-gradient(0deg; #181818; #181818), ...correct second gradient here...` Expected code `...
I would find it very useful to be able to generate an easing gradient with a starting point, a via point, and an ending point.
Sometimes I need to start a gradient at a point past 0% or stop it before 100%. Would it be possible to add support for this? For example, a gradient...
**Thanks for your PostCSS plugin!** As you probably know, [PostCSS 8] was released a few days ago. It would be great if you could make this plugin compatible with the...
The name and the default value of stops were documented wrong
Hi there, Great plugin, but it doesn't seem to work with CSS variables. // Works background: linear-gradient(to right, green, ease, red); // Fails :root { --red: red; --green: green; }...
_I'm not used to how PostCSS works under the hood so this might be a silly question._ Is it possible this plugin could support a subset of the positional arguments...
Just a note to the docs. Looks like the 'options' expect 'stops' instead of 'colorStops'. https://github.com/larsenwork/postcss-easing-gradients/blob/2a1856694e9492e4061465a07d742fbf2cc05182/index.js#L12 https://github.com/larsenwork/postcss-easing-gradients#colorstops-15