New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tailwindcss-shadow

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwindcss-shadow

A Tailwind CSS plugin to add shadow utilities.

latest
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

TailwindCSS Shadow Plugin

A plugin to extend TailwindCSS's functionality with a rich set of text-shadow, box-shadow, and drop-shadow utilities.

Features

  • Supports multiple shadow styles such as normal, mirror, inset, outline, and more
  • Configurable via Tailwind's theme
  • Supports dynamic values for text shadow

Credits

Originally inspired by DesignByCode/tailwindcss-text-shadow

Installation

npm install --save tailwindcss-shadow

Usage

  • Add the plugin to your tailwind.config.js:
module.exports = {
  plugins: [
    require('tailwindcss-shadow')
  ],
}
  • Add the configuration in the theme:
module.exports = {
  theme: {
    textShadowSteps: {
			
      // Your steps here
    },
    dropShadowSteps: {
		(mulitplier) => myDropShadow * mulitplier
      // Your steps here
    },
    shadowSteps: {
      // Your steps here
    },
  },
}

Classes

Here are some classes that you can use:

  • text-shadow: Adds a default text shadow.
  • text-shadow-x-1px, text-shadow-y-2px, text-shadow-blur-3px: Dynamic values for text shadow.
  • shadow-normal, shadow-mirror-left, shadow-inset, drop-shadow-normal, drop-shadow-equal: Variants of shadows. (Those are applying the shadow directive)
  • shadow-normal, shadow-x-2, shadow-y-2, shadow-blur-2, shadow-color-red-500: Dynamic values for shadows. (Those are applying the shadow variables)
  • drop-shadow-normal, drop-shadow-mirror-left, drop-shadow-inset...
  • drop-shadow-x-2, drop-shadow-y-2, drop-shadow-blur-2, drop-shadow-color-red-500...

Customization

You can customize the steps and variants through the theme section in your tailwind.config.js.

Example

<div class="text-shadow inset-shadow-normal drop-shadow-normal">
  This text has multiple shadows!
</div>

Contributing

If you'd like to contribute to this project, feel free to open an issue or submit a pull request.

License

MIT

Feel free to modify the README according to the specifics of your plugin.

Keywords

tailwind

FAQs

Package last updated on 21 Sep 2023

Did you know?

Socket

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