π¦ ClawHub
Border Radius
by @ohernandez-dev-blossom
Generate CSS border-radius code. Use when the user asks to generate rounded corners, create a border radius, make a blob shape, or produce border-radius CSS.
π‘ Examples
Input: "Rounded corners, 12px all sides" Output:
border-radius: 12px;
Tailwind: rounded-[12px]Input: "Blob shape border radius" Output:
border-radius: 30px 70px 70px 30px;
Tailwind: rounded-[30px_70px_70px_30px]Input: "Full pill / circle border radius" Output:
border-radius: 9999px;
Tailwind: rounded-fullInput: "Top corners 24px, bottom corners 0" Output:
border-radius: 24px 24px 0px 0px;
Tailwind: rounded-[24px_24px_0px_0px]βοΈ Configuration
topLeft: 0β9999 β default 16topRight: 0β9999 β default 16bottomRight: 0β9999 β default 16bottomLeft: 0β9999 β default 16linked: if true, all corners use the same valueTERMINAL
clawhub install border-radius