
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
tailwindcss-elevation
Advanced tools
Tailwind CSS plugin for Material Components elevation classes.
Add Material Components elevation classes to your Tailwind CSS project. Check out the demo!
To install the package, run
npm install tailwindcss-elevation
To activate the plugin, add a tailwind.config.js
file to the root of your project:
module.exports = {
plugins: [
require('tailwindcss-elevation'),
]
}
To learn more about configuring your Tailwind CSS installation, see https://tailwindcss.com/docs/configuration.
To change the default configurations, you can include an options object:
module.exports = {
plugins: [
require('tailwindcss-elevation')(
{
color: '77,192,181',
opacityBoost: '0.23'
}
)
]
}
Options accept the following properties:
color
changes the default box-shadow base color and accepts an RGB (e.g. '77,192,181'
) or HEX triplet (e.g. '#4dc0b5'
) as its value. When using a CSS custom property (variable) as the value, you have to use an RGB triplet.opacityBoost
is added to the default box-shadow opacity and accepts a number between 0.0 and 1.0You can apply elevation to an element using the .elevation-{z-value}
utilities.
<button class="elevation-2">Button</button>
The z values range from 0 to 24.
FAQs
Tailwind CSS plugin for Material Components elevation classes.
The npm package tailwindcss-elevation receives a total of 4,966 weekly downloads. As such, tailwindcss-elevation popularity was classified as popular.
We found that tailwindcss-elevation 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.