Install
openclaw skills install border-radiusGenerate 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.
openclaw skills install border-radiusGenerate border-radius CSS for uniform rounding or per-corner customization, including special shapes like blobs and leaves.
uniform (all corners equal) or per-corner16)16 16 16 16)border-radius: <value>;border-radius: <value>px;border-radius: <tl>px <tr>px <br>px <bl>px;rounded-nonerounded-fullrounded-[<value>px]rounded-[<tl>px_<tr>px_<br>px_<bl>px]0 0 0 04 4 4 48 8 8 816 16 16 1624 24 24 249999 9999 9999 999930px 70px 70px 30px0px 50px 0px 50pxtopLeft: 0–9999 — default 16topRight: 0–9999 — default 16bottomRight: 0–9999 — default 16bottomLeft: 0–9999 — default 16linked: if true, all corners use the same valueInput: "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-full
Input: "Top corners 24px, bottom corners 0" Output:
border-radius: 24px 24px 0px 0px;
Tailwind: rounded-[24px_24px_0px_0px]
rounded-full).