### Install Plugin with PNPM Source: https://github.com/dulltackle/tailwindcss-claymorphism/blob/main/README.md Install the tailwindcss-claymorphism package using PNPM. This command adds the plugin as a development dependency. ```SH pnpm add -D tailwindcss-claymorphism ``` -------------------------------- ### Basic Claymorphism Usage Source: https://github.com/dulltackle/tailwindcss-claymorphism/blob/main/README.md Apply claymorphism styles using the 'clay--' utility classes. This example demonstrates 'clay-md-red' for a medium shadow with a red background. ```HTML

Say hello to
Claymorphism

Hi 👋🏻
``` -------------------------------- ### Claymorphism with Rounded Corners Source: https://github.com/dulltackle/tailwindcss-claymorphism/blob/main/README.md Combine claymorphism styles with Tailwind's 'rounded' utilities to achieve a squircle-like appearance. This example uses 'rounded-3xl' and 'rounded-xl'. ```HTML

Say hello to
Claymorphism

Hi 👋🏻
``` -------------------------------- ### Load Plugin in Tailwind Config Source: https://github.com/dulltackle/tailwindcss-claymorphism/blob/main/README.md Configure your tailwind.config.cjs file to load the tailwindcss-claymorphism plugin. Ensure the 'plugins' array includes 'require("tailwindcss-claymorphism")'. ```JS // tailwind.config.cjs module.exports = { content: [/* ... */], plugins: [require("tailwindcss-claymorphism")], }; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.