
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
tailwindcss-shadow
Advanced tools
A plugin to extend TailwindCSS's functionality with a rich set of text-shadow, box-shadow, and drop-shadow utilities.
Originally inspired by DesignByCode/tailwindcss-text-shadow
npm install --save tailwindcss-shadow
tailwind.config.js:module.exports = {
plugins: [
require('tailwindcss-shadow')
],
}
theme:module.exports = {
theme: {
textShadowSteps: {
// Your steps here
},
dropShadowSteps: {
(mulitplier) => myDropShadow * mulitplier
// Your steps here
},
shadowSteps: {
// Your steps here
},
},
}
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...You can customize the steps and variants through the theme section in your tailwind.config.js.
<div class="text-shadow inset-shadow-normal drop-shadow-normal">
This text has multiple shadows!
</div>
If you'd like to contribute to this project, feel free to open an issue or submit a pull request.
MIT
Feel free to modify the README according to the specifics of your plugin.
FAQs
A Tailwind CSS plugin to add shadow utilities.
We found that tailwindcss-shadow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.