CSS Box Shadow Generator
Build CSS box-shadow values with a live preview — stack multiple shadows for depth.
Layer 1
CSS
box-shadow: 0px 4px 12px -2px rgba(0, 0, 0, 0.15);
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/box-shadow-generator/run \
-H "Content-Type: application/json" \
-d '{
"layers": [
{
"inset": false,
"x": 1,
"y": 1,
"blur": 1,
"spread": 1,
"color": "#ff0000",
"alpha": 1
}
]
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/box-shadow-generator/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"layers": [
{
"inset": false,
"x": 1,
"y": 1,
"blur": 1,
"spread": 1,
"color": "#ff0000",
"alpha": 1
}
]
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_box_shadow_generatorFull reference: developer docs · OpenAPI spec
You might also like
- CSS Border Radius GeneratorSculpt rounded corners with per-corner control, including elliptical and 'squircle' shapes.
- CSS Gradient GeneratorBuild linear, radial, and conic CSS gradients with a live preview and copy-ready output.
- CSS Specificity CalculatorScore one or more CSS selectors and see which one wins the cascade.
- CSS Unit ConverterConvert px ↔ rem ↔ em ↔ pt ↔ % with an adjustable base font size.