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.