Socket
Socket
Sign inDemoInstall

tailwind-easing-gradients

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tailwind-easing-gradients

tailwind easing gradient utilities


Version published
Weekly downloads
123
increased by59.74%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Easing Gradients Tailwind CSS Plugin

Credit

Based largely on @benface’s GitHub - benface/tailwindcss-gradients: Tailwind CSS plugin to generate gradient background utilities. The color functions are from @larsenwork’s GitHub - larsenwork/postcss-easing-gradients: PostCSS plugin to create smooth linear-gradients that approximate easing functions.

Installation

npm install tailwind-easing-gradients

Usage

// In your Tailwind CSS config
{
  plugins: [
    require('tailwind-easing-gradients')({
      variants: ['responsive'],
      // required
      gradients: {
        'ex1': ['#a4e', '#03d'], // must be two colors
        'ex2': { easing: 'ease-in-out', steps: 5, color: ['#4ae', '#0da'] },
        'ex3': { easing: 'cubic-bezier(0.48, 0.3, 0.64, 1)', color: ['#4ae', '#0da'] },
        'ex4': { easing: 'steps(4, skip-none)', color: ['#4ae', '#0da'] }
      },
      // defaults
      alphaDecimals: 5,
      colorMode: 'lrgb',
      type: 'linear',
      easing: 'ease', // default settings
      colorStops: 10
      directions: {
        't': 'to top',
        'r': 'to right',
        'b': 'to bottom',
        'l': 'to left'
      },
    }),
  ],
}

Options

You can overwrite the easing, type, colorStops per gradient.

ease: 'ease'

is the default, see for more examples

type: 'linear'

is the default, you could use radial, but you will need to create a compatible direction

See here for more info

colorStops: 15

is the default. A lower number creates a more "low poly" gradient with less code but a higher risk of banding.

alphaDecimals: 5

is the default. A lower number can result in banding.

colorMode: 'lrgb'

This plugin generates the following utilities:

/* configurable with the "directions" and "gradients" options */
.bg-easing-[direction-name]-[gradient-name] {
	background-image: linear-gradient(
		[direction-value],
		hsl([gradient-color-1]),
		hsl([gradient-color-2])
	);
}

Keywords

FAQs

Last updated on 15 Jan 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc