
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.
tailwind-glassclass
Advanced tools
A customizable Tailwind CSS utility for effortlessly adding Glassmorphism design effects to your web projects.
Glassmorphism is a modern design trend that brings a frosted glass-like appearance with a blurred background, providing a sleek and contemporary feel to your user interface.
Install the package via npm:
npm install tailwind-glassmorphism
Include the Plugin in Tailwind Config:
Add the custom utility to your tailwind.config.js file:
// tailwind.config.js
module.exports = {
// ... other configurations
plugins: [
// ... other plugins
require('tailwind-glassmorphism'),
],
};
Apply the Glassmorphism Class:
Use the .glassmorph class in your HTML or JSX to apply the Glassmorphism effect:
<div class="glassmorph">
<!-- Your content goes here -->
</div>
Example in React JSX:
import React from 'react';
const App = () => {
return (
<div className="glassmorph">
{/* Your content goes here */}
</div>
);
};
export default App;
Apply additional styles to customize the effect further:
<div class="glassmorph my-custom-styles">
<!-- Your content goes here -->
</div>
const App = () => {
return (
<div className="glassmorph my-custom-styles">
{/* Your content goes here */}
</div>
);
};
For advanced customization, you can modify the .glassmorph class in your plugin file (glassmorphism-plugin.js). Adjust colors, shadows, and other properties to suit your design preferences:
// glassmorphism-plugin.js
const plugin = ({ addUtilities }) => {
const newUtilities = {
'.glassmorph': {
background: 'rgba(255, 255, 255, 0.1)', // Adjust the alpha channel for transparency
// ... other styles
},
};
addUtilities(newUtilities, ['responsive', 'hover']);
};
module.exports = plugin;
Check the examples/ directory for usage examples and demos.
For detailed documentation and advanced customization options, refer to the official documentation.
If you encounter any issues, please check the Troubleshooting Guide for common solutions.
We welcome contributions! Check out the Contribution Guidelines for details.
This project is licensed under the MIT License - see the LICENSE.md file for details.
FAQs
Unknown package
We found that tailwind-glassclass 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.