{"id":22310321,"url":"https://github.com/AnandChowdhary/language-icons","last_synced_at":"2025-07-29T07:32:58.855Z","repository":{"id":34245172,"uuid":"173449593","full_name":"AnandChowdhary/language-icons","owner":"AnandChowdhary","description":"🈹 Better icons for languages, because flags just don't cut it","archived":false,"fork":false,"pushed_at":"2025-06-14T22:33:35.000Z","size":314,"stargazers_count":66,"open_issues_count":9,"forks_count":21,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-21T15:06:47.997Z","etag":null,"topics":["generator","icons","languages"],"latest_commit_sha":null,"homepage":"https://anandchowdhary.github.io/language-icons/","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/AnandChowdhary.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,"zenodo":null}},"created_at":"2019-03-02T13:13:08.000Z","updated_at":"2025-06-14T22:33:39.000Z","dependencies_parsed_at":"2024-04-23T02:03:32.078Z","dependency_job_id":"31992362-51a3-4a08-be46-c44f1cda8668","html_url":"https://github.com/AnandChowdhary/language-icons","commit_stats":{"total_commits":24,"total_committers":8,"mean_commits":3.0,"dds":0.375,"last_synced_commit":"a2606f2b7dc4cf26271f5263ca81353886881707"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/AnandChowdhary/language-icons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnandChowdhary%2Flanguage-icons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnandChowdhary%2Flanguage-icons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnandChowdhary%2Flanguage-icons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnandChowdhary%2Flanguage-icons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnandChowdhary","download_url":"https://codeload.github.com/AnandChowdhary/language-icons/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnandChowdhary%2Flanguage-icons/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267646063,"owners_count":24120932,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["generator","icons","languages"],"created_at":"2024-12-03T21:01:15.695Z","updated_at":"2025-07-29T07:32:58.847Z","avatar_url":"https://github.com/AnandChowdhary.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# 🌐 Language icons\n\n\u003e Forked from [AnandChowdhary/language-icons](https://github.com/AnandChowdhary/language-icons)\n\n[![NPM](https://img.shields.io/npm/v/language-icons.svg)](https://www.npmjs.com/package/language-icons)\n![Icon size](https://img.shields.io/github/size/heinerwalter/language-icons/two-colors.svg.svg)\n[![Build](https://github.com/heinerwalter/language-icons/actions/workflows/build.yml/badge.svg)](https://github.com/heinerwalter/language-icons/actions/workflows/build.yml)\n![Type definitions](https://img.shields.io/npm/types/language-icons.svg?color=brightgreen)\n[![GitHub](https://img.shields.io/github/license/heinerwalter/language-icons.svg)](https://github.com/heinerwalter/language-icons/blob/master/LICENSE)\n\n[Flags are not languages](http://www.flagsarenotlanguages.com/blog/), so we shouldn't use country flags as language icons.\n\nYou can use these icons instead.\n\nThey are generated using the language's ISO 639-1 code, combined with some colors. Colors are flag-inspired. For example, green/red for [Portuguese](https://unpkg.com/language-icons/icons/pt.svg), and they fallback to blue for unknown colors. If you want to color a currently blue icon, edit the [`colors.json`](https://github.com/AnandChowdhary/language-icons/blob/master/colors.json) file and make a pull request.\n\nEach icon is an SVG, around 300 ± 10 bytes.\n\n## 🖼️ Usage\n\nYou can use a CDN like Unpkg to embed a flag icon:\n\n```\nhttps://unpkg.com/language-icons/icons/LANGUAGE_CODE.svg\n```\n\nIn HTML, for example:\n\n```html\n\u003cimg alt=\"English\" src=\"https://unpkg.com/language-icons/icons/en.svg\"\u003e\n```\n\nWith the CSS style `style=\"border-radius: 50%\"` the icon can be converted to a circle:\n\n```html\n\u003cimg alt=\"English\" src=\"https://unpkg.com/language-icons/icons/en.svg\" style=\"border-radius: 50%\"\u003e\n```\n\nIcons are also available on NPM:\n\n```bash\nnpm install language-icons\n```\n\nThey are in the `./icons` folder, you can use an SVG loader to import them:\n\n```js\nimport English from \"./node_modules/language-icons/icons/en.svg\"\n```\n\n## ⭐ Why\n\n![Example of flags versus language icons](https://raw.githubusercontent.com/AnandChowdhary/language-icons/master/example.png)\n\n## 🎨 Icons\n\nSee the list of icons: https://unpkg.com/language-icons/icons/\n\n![English](https://unpkg.com/language-icons/icons/en.svg)\n![Hindi](https://unpkg.com/language-icons/icons/hi.svg)\n![Portuguese](https://unpkg.com/language-icons/icons/pt.svg)\n![German](https://unpkg.com/language-icons/icons/de.svg)\n![French](https://unpkg.com/language-icons/icons/fr.svg)\n![Chinese](https://unpkg.com/language-icons/icons/zh.svg)\n![Spanish](https://unpkg.com/language-icons/icons/es.svg)\n![Dutch](https://unpkg.com/language-icons/icons/nl.svg)\n![Urdu](https://unpkg.com/language-icons/icons/ur.svg)\n![Twi](https://unpkg.com/language-icons/icons/tw.svg)\n![Slovenian](https://unpkg.com/language-icons/icons/sl.svg)\n![Danish](https://unpkg.com/language-icons/icons/da.svg)\n\n## ⚒️ Building\n\nInstall Typescript dependencies and build icons using the `npm run build` command.\n\n## 📝 License\n\nIcons and code, both MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAnandChowdhary%2Flanguage-icons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAnandChowdhary%2Flanguage-icons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAnandChowdhary%2Flanguage-icons/lists"}