{"id":15748122,"url":"https://github.com/jakejarvis/stitches-normalize","last_synced_at":"2026-03-04T11:03:12.406Z","repository":{"id":41984781,"uuid":"466514396","full_name":"jakejarvis/stitches-normalize","owner":"jakejarvis","description":"🧵 @sindresorhus's modern-normalize.css as a plug-and-play JavaScript object compatible with Stitches.","archived":false,"fork":false,"pushed_at":"2023-10-05T16:41:50.000Z","size":380,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-29T15:56:41.933Z","etag":null,"topics":["css","css-in-js","normalize","reset","stitches"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jakejarvis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-03-05T16:57:53.000Z","updated_at":"2025-02-16T03:48:42.000Z","dependencies_parsed_at":"2024-10-04T05:40:50.880Z","dependency_job_id":"1a98a2d2-027f-42db-8a3c-855ae5d2efcd","html_url":"https://github.com/jakejarvis/stitches-normalize","commit_stats":{"total_commits":10,"total_committers":2,"mean_commits":5.0,"dds":0.09999999999999998,"last_synced_commit":"aa51aaea60ee25920ecd10aecbbf36077559230b"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/jakejarvis/stitches-normalize","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fstitches-normalize","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fstitches-normalize/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fstitches-normalize/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fstitches-normalize/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jakejarvis","download_url":"https://codeload.github.com/jakejarvis/stitches-normalize/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jakejarvis%2Fstitches-normalize/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30078418,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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","css-in-js","normalize","reset","stitches"],"created_at":"2024-10-04T05:40:40.079Z","updated_at":"2026-03-04T11:03:12.362Z","avatar_url":"https://github.com/jakejarvis.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧵 stitches-normalize\n\n[![npm](https://img.shields.io/npm/v/stitches-normalize)](https://www.npmjs.com/package/stitches-normalize)\n[![MIT License](https://img.shields.io/github/license/jakejarvis/stitches-normalize)](LICENSE)\n\n@sindresorhus's [**modern-normalize.css**](https://github.com/sindresorhus/modern-normalize) as a plug-and-play JavaScript object compatible with Stitches.\n\n## Install\n\n```sh\nnpm install stitches-normalize\n# or...\nyarn add stitches-normalize\n```\n\n## Usage\n\nThis assumes you already have a `stitches.config.js` (or `.ts`) file that re-exports the `globalCss()` function generated by `createStitches()`.\n\nYou can read more about setting that file up [in Stitches' awesome documentation](https://stitches.dev/docs/installation#create-your-config-file).\n\n```jsx\nimport { globalCss } from \"./stitches.config\";\nimport normalizeCss from \"stitches-normalize\";\n\nconst globalStyles = globalCss(\n  ...normalizeCss({\n    // default options, see below:\n    systemFonts: true,\n    webkitPrefixes: true,\n    mozPrefixes: true,\n  }), {\n  // you can put the rest of your global styles here if necessary.\n  // these rules will override stitches-normalize's.\n  body: {\n    fontFamily: \"'Comic Sans MS', sans-serif\",\n  },\n});\n\nconst App = () =\u003e {\n  globalStyles();\n  return \u003ch1\u003eHello, normalized world!\u003c/h1\u003e;\n};\n```\n\n## API\n\n### normalizeCss(options?)\n\n#### options\n\nType: `object`\n\n##### systemFonts\n\nType: `boolean`\\\nDefault: `true`\n\nInclude the [default system font stacks](https://github.com/sindresorhus/modern-normalize/issues/3) (sans-serif fonts for `html`, monospace fonts for `code`, `kbd`, `samp`, and `pre`.)\n\n##### webkitPrefixes\n\nType: `boolean`\\\nDefault: `true`\n\nInclude non-standard WebKit compatibility rules for older Safari versions on iOS and macOS.\n\n##### mozPrefixes\n\nType: `boolean`\\\nDefault: `true`\n\nInclude non-standard Mozilla compatibility rules for older Firefox versions.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakejarvis%2Fstitches-normalize","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjakejarvis%2Fstitches-normalize","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjakejarvis%2Fstitches-normalize/lists"}