{"id":15511715,"url":"https://github.com/movableink/tailwind-config","last_synced_at":"2025-07-05T07:32:44.131Z","repository":{"id":39990893,"uuid":"227469998","full_name":"movableink/tailwind-config","owner":"movableink","description":"Tailwind Config for Fluid","archived":false,"fork":false,"pushed_at":"2025-04-15T15:03:07.000Z","size":42001,"stargazers_count":5,"open_issues_count":4,"forks_count":1,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-05-28T14:55:15.675Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://movableink.github.io/tailwind-config","language":"JavaScript","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/movableink.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2019-12-11T22:11:13.000Z","updated_at":"2025-04-15T15:03:12.000Z","dependencies_parsed_at":"2024-10-02T10:04:29.540Z","dependency_job_id":null,"html_url":"https://github.com/movableink/tailwind-config","commit_stats":{"total_commits":551,"total_committers":8,"mean_commits":68.875,"dds":0.484573502722323,"last_synced_commit":"a5b7d58fe0e1697378ec9d94600b63452bb34055"},"previous_names":[],"tags_count":56,"template":false,"template_full_name":null,"purl":"pkg:github/movableink/tailwind-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movableink%2Ftailwind-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movableink%2Ftailwind-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movableink%2Ftailwind-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movableink%2Ftailwind-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/movableink","download_url":"https://codeload.github.com/movableink/tailwind-config/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/movableink%2Ftailwind-config/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263476337,"owners_count":23472561,"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":[],"created_at":"2024-10-02T09:53:11.610Z","updated_at":"2025-07-05T07:32:44.111Z","avatar_url":"https://github.com/movableink.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# `@movable/tailwind-config` [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits\u0026logoColor=white)](https://conventionalcommits.org)\n\n![Verify](https://github.com/movableink/tailwind-config/workflows/Verify/badge.svg)\n[![This project is using Percy.io for visual regression testing.](https://percy.io/static/images/percy-badge.svg)](https://percy.io/movableink/tailwind-config)\n[![Create CodePen with Template](https://img.shields.io/badge/CodePen-Use%20Template-yellow)](https://codepen.io/pen?template=jOPWJdW)\n\n\u003e [Tailwind][tailwind] configuration file for Movable Ink's Fluid Design System\n\n_Note: if you wish to contribute to `@movable/tailwind-config`, please see our [contribution documentation](./CONTRIBUTING.md)._\n\n## Installation\n\n### Default Process\n\nTailwind provides good installation instructions on how to get set up with their tools, which you can find [here][tailwind-installation].\n\nWith the imports from Tailwind in place, you can leverage the Movable Ink configuration like so:\n\n```javascript\n// tailwind.config.js\nmodule.exports = {\n  presets: [require('@movable/tailwind-config')],\n};\n```\n\n### Pre-Built File\n\nFor cases where you do not want to set up PostCSS or the Tailwind command line tool, a pre-built version of the Tailwind CSS is included in this package. Note that with this approach, you probably miss out on the ability to statically analyze your templates and remove any unused CSS classes.\n\n#### From your dependencies\n\nFor tools that allow you to include a pre-existing CSS file into your application, this package includes a pre-built version of the CSS file that you can import. For example, if you are using `create-react-app`, you could add the following to your `src/index.js`\n\n```javascript\nimport '@movable/tailwind-config/dist/fluid-tailwind.css';\n```\n\nAnd the CSS classes will be made available to you.\n\n#### From a CDN\n\nIf you want to go even _simpler_, you can link against the pre-built CSS file on [`unpkg`][unpkg]. Include the following in the `head` of your document.\n\n```html\n\u003clink\n  rel=\"stylesheet\"\n  href=\"https://unpkg.com/@movable/tailwind-config/dist/fluid-tailwind.min.css\"\n/\u003e\n```\n\nNote that with this approach, you will _always_ get the latest version of the Tailwind CSS -- even if there was a major version bump. See the `unpkg` documentation if you want to link against a specific version the package.\n\n### Fonts\n\nRegardless of which approach you take to including the Tailwind CSS into your application, you _also_ must link to the font definitions that we use as part of Fluid.\n\nInclude the following `link` in the `head` of your document, _before_ any other CSS files\n\n```html\n\u003clink\n  rel=\"stylesheet\"\n  href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600|Source+Code+Pro:400,600\u0026display=swap\"\n/\u003e\n```\n\n[tailwind]: https://tailwindcss.com\n[tailwind-installation]: https://tailwindcss.com/docs/installation\n[unpkg]: https://unpkg.com\n\n## Conventional Commits\n\nThis repo has [conventional-commits](https://www.conventionalcommits.org/en/v1.0.0/#summary) We lint for this both pre-commit and on PR actions. It is **required** and will not pass without it.\n\nEx:\n\n```\nfix(percy): added percy snapshots for all component states\n\n- active\n- disabled\n- focused\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmovableink%2Ftailwind-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmovableink%2Ftailwind-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmovableink%2Ftailwind-config/lists"}