{"id":15117065,"url":"https://github.com/stevebauman/curlwind","last_synced_at":"2026-02-25T12:14:37.037Z","repository":{"id":218263301,"uuid":"742963514","full_name":"stevebauman/curlwind","owner":"stevebauman","description":"Generate Tailwind utility stylesheets on demand.","archived":false,"fork":false,"pushed_at":"2025-03-03T12:28:17.000Z","size":74321,"stargazers_count":127,"open_issues_count":1,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-29T19:06:37.474Z","etag":null,"topics":["css","generator","laravel","tailwind","tailwindcss"],"latest_commit_sha":null,"homepage":"https://curlwind.com","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stevebauman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-13T22:17:10.000Z","updated_at":"2025-03-03T12:28:20.000Z","dependencies_parsed_at":"2025-02-12T10:15:54.976Z","dependency_job_id":"d5e7c173-8e15-4ce9-8960-dbcf1fe0a82a","html_url":"https://github.com/stevebauman/curlwind","commit_stats":null,"previous_names":["stevebauman/curlwind"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevebauman%2Fcurlwind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevebauman%2Fcurlwind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevebauman%2Fcurlwind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stevebauman%2Fcurlwind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stevebauman","download_url":"https://codeload.github.com/stevebauman/curlwind/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247393570,"owners_count":20931812,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","generator","laravel","tailwind","tailwindcss"],"created_at":"2024-09-26T01:45:48.554Z","updated_at":"2026-02-25T12:14:37.032Z","avatar_url":"https://github.com/stevebauman.png","language":"CSS","funding_links":[],"categories":["CSS"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://curlwind.com\" target=\"_blank\"\u003e\u003cimg src=\"https://curlwind.com/logo-dark.svg\" width=\"200\" alt=\"Curlwind Logo Logo\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\nDynamically generate Tailwind (v3) CSS utility stylesheets. \n\u003c/p\u003e\n\n\u003chr/\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/stevebauman/curlwind/actions\"\u003e\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/stevebauman/curlwind/run-tests.yml?branch=master\u0026style=flat-square\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Usage\n\n### Insert Tag\n\nAdd the stylesheet tag to your site's head tag:\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n    \u003chead\u003e\n        \u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com\"\u003e\n    \u003c/head\u003e\n\n    \u003cbody\u003e\n        \u003c!-- ... --\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n```\n\n### Attach Classes\n\nAttach the `classes` query parameter to URL receive a stylesheet with only the classes you need.\n\nUse commas and wildcards to match multiple classes:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com?classes=p-*,m-*\"\u003e\n```\n\n### Receive Stylesheet\n\nThe generated stylesheet will contain only the classes you need:\n\n```css\n/* output.css */\n \n.p-0 {\n    padding: 0px;\n}\n \n.p-1 {\n    padding: 0.25rem;\n}\n \n/* ... */\n \n.m-0 {\n    margin: 0px;\n}\n \n.m-1 {\n    margin: 0.25rem;\n}\n \n/* ... */\n```\n\n### Options\n\n### Generate Variants\n\nInsert a colon (:) after the class name to generate variants:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com?classes=p-*:sm|md,m-*:hover\"\u003e\n```\n\n### Exclude Preflight\n\nGenerate stylesheets without Tailwind's Preflight CSS:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com?preflight=0\"\u003e\n```\n\n### Prefixed Utilities\n\nGenerate utility classes with a prefix:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com?prefix=tw\"\u003e\n```\n\n### Unminified CSS\n\nGenerate stylesheets unminified:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com?minify=0\"\u003e\n```\n\n### Enable Plugins\n\nGenerate stylesheets with built-in Tailwind plugins enabled.\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.curlwind.com?plugins=forms,typography,aspect-ratio,container-queries\"\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevebauman%2Fcurlwind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstevebauman%2Fcurlwind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstevebauman%2Fcurlwind/lists"}