0.0.8 • Published 4 years ago

tailwindcss-shadow-outline-colors v0.0.8

Weekly downloads
161
License
MIT
Repository
github
Last release
4 years ago

Tailwind CSS Shadow Outline Colors

license npm

Installation

npm install tailwindcss-shadow-outline-colors

or using if you are using yarn

yarn add tailwindcss-shadow-outline-colors

Add the plugin to the plugins array in your Tailwind CSS configuration.

plugins: [
    require('tailwindcss-shadow-outline-colors')()
]

Colors

By default we use the colors variable from you TailwindCSS config. But if you want to use different colors you can add shadowOutlineColors variable in your config

// tailwind.config.js
module.exports = {
  theme: {
    shadowOutlineColors: {
        'primary': {
            500: '#EA4C89',
            600: '#D3447B',
            700: '#BE3D6F',
        },
    }
  },
  variants: {},
  plugins: [
    plugins: [ require('tailwindcss-shadow-outline-colors')() ]
  ],
}

Variants

You can add hover, focus or any othe variant just place shadowOutline in your variants

// tailwind.config.js
module.exports = {
  theme: {},
  variants: {
    'shadowOutline': ['focus']
  },
  plugins: [
    plugins: [ require('tailwindcss-shadow-outline-colors')() ]
  ],
}

Shadow and Opacity

You can also change the your shadow style and the opacity of the color

// tailwind.config.js
module.exports = {
  theme: {
    shadowOutline: {
        'shadow': '0 0 0 0.2em',
        'alpha': '0.5'
    }
  },
  plugins: [
    plugins: [ require('tailwindcss-shadow-outline-colors')() ]
  ],
}
0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago