Steady Wind API

Test and explore the Steady Wind CSS Framework API

How to use
Generate CSS
Available Classes
API Health

How to Use

Steady Wind includes a Prune API that allows you to generate optimized CSS builds with only the classes you need. This helps reduce the file size of your CSS and improves performance.

Send a POST request to the Prune API endpoint with a list of class names:

fetch('/api/prune', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    classes: ['flex', 'p-4', 'bg-blue-500', 'text-white', 'md__flex']
  })
})
.then(response => response.text())
.then(css => console.log(css));

Generate Pruned CSS

Enter the class names you want to include in your CSS, and we'll generate a pruned version with only those classes.

Available Classes

View all available utility classes in the Steady Wind framework.

API Health

Check the health and status of the Steady Wind API.