{"id":14988569,"url":"https://github.com/sweetalert2/sweetalert2-themes","last_synced_at":"2025-05-14T23:04:57.224Z","repository":{"id":29493990,"uuid":"121848782","full_name":"sweetalert2/sweetalert2-themes","owner":"sweetalert2","description":"Themes for SweetAlert2: Dark, Minimal, Borderless, Bootstrap, Material UI, WordPress Admin, Bulma, ...","archived":false,"fork":false,"pushed_at":"2025-04-14T20:11:25.000Z","size":1367,"stargazers_count":231,"open_issues_count":12,"forks_count":93,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-05-05T17:25:35.517Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"SCSS","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/sweetalert2.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"limonte","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"custom":"https://sweetalert2.github.io/#donations"}},"created_at":"2018-02-17T11:12:39.000Z","updated_at":"2025-05-02T21:51:57.000Z","dependencies_parsed_at":"2022-08-28T02:53:31.625Z","dependency_job_id":"32e41405-5339-4d00-b9cc-b8fd76e35974","html_url":"https://github.com/sweetalert2/sweetalert2-themes","commit_stats":{"total_commits":239,"total_committers":12,"mean_commits":"19.916666666666668","dds":0.4728033472803347,"last_synced_commit":"3c5583646fa02535244a1859a9687f6225b2544f"},"previous_names":[],"tags_count":68,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sweetalert2%2Fsweetalert2-themes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sweetalert2%2Fsweetalert2-themes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sweetalert2%2Fsweetalert2-themes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sweetalert2%2Fsweetalert2-themes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sweetalert2","download_url":"https://codeload.github.com/sweetalert2/sweetalert2-themes/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254243358,"owners_count":22038046,"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":["bootstrap","bulma","dark-theme","material-ui","minimal-theme","sweetalert","sweetalert2","themes","wordpress"],"created_at":"2024-09-24T14:16:57.600Z","updated_at":"2025-05-14T23:04:52.156Z","avatar_url":"https://github.com/sweetalert2.png","language":"SCSS","funding_links":["https://github.com/sponsors/limonte","https://sweetalert2.github.io/#donations","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=TKTWHJGUWLR7E"],"categories":[],"sub_categories":[],"readme":"# @sweetalert2/themes - Official Themes for [SweetAlert2](https://github.com/sweetalert2/sweetalert2)\n\n[![npm version](https://img.shields.io/npm/v/@sweetalert2/themes.svg)](https://www.npmjs.com/package/@sweetalert2/themes)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/sweetalert2/sweetalert2-themes/blob/main/CHANGELOG.md)\n\n## Available themes\n\n- [`Dark`](https://github.com/sweetalert2/sweetalert2-themes/tree/main/dark)\n- [`Minimal`](https://github.com/sweetalert2/sweetalert2-themes/tree/main/minimal)\n- [`Bootstrap 4`](https://github.com/sweetalert2/sweetalert2-themes/tree/main/bootstrap-4)\n- [`Material UI`](https://github.com/sweetalert2/sweetalert2-themes/tree/main/material-ui)\n- [`Bulma`](https://github.com/sweetalert2/sweetalert2-themes/tree/main/bulma)\n\n## Installation\n\nYou can install all themes at once:\n\n```sh\nnpm install --save @sweetalert2/themes\n```\n\nOr just a single theme `@sweetalert2/theme-\u003ctheme_name\u003e`, e.g.\n\n```sh\nnpm install --save @sweetalert2/theme-dark\n```\n\nOr grab them both from [jsdelivr CDN](https://cdn.jsdelivr.net/npm/@sweetalert2/themes), for example:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/@sweetalert2/theme-dark@5/dark.css\" /\u003e\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.js\"\u003e\u003c/script\u003e\n```\n\n## Usage\n\nWith CSS:\n\n```html\n\u003c!-- Include a required theme --\u003e\n\u003clink rel=\"stylesheet\" href=\"@sweetalert2/themes/dark/dark.css\" /\u003e\n\n\u003cscript src=\"sweetalert2/dist/sweetalert2.min.js\"\u003e\u003c/script\u003e\n```\n\nWith SASS:\n\n`your-app.js`:\n\n```js\nimport Swal from 'sweetalert2/dist/sweetalert2.js';\n```\n\n`your-app.scss`:\n\n```scss\n@import '@sweetalert2/themes/dark/dark.scss';\n```\n\n## Contributing\n\nIf you would like to contribute enhancements or fixes, please do the following:\n\n1. Fork the `sweetalert2-themes` repository and clone it locally.\n\n2. When in the `sweetalert2-themes` directory, run `yarn install` to install dependencies.\n\n3. To begin active development, run `yarn start` and `yarn watch` simultaneously.\n\n4. Or, if you want to quickly start a new theme, run `yarn create-new-theme my-awesome-theme`. This will create the theme's default files.\n\n## Donations\n\nHas SweetAlert2 helped you create an amazing application? You can show your support by making a donation:\n\n- [GitHub Sponsors :heart:](https://github.com/sponsors/limonte)\n- [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=TKTWHJGUWLR7E)\n\n### [Hall of Donators :trophy:](https://github.com/sweetalert2/sweetalert2/blob/main/DONATIONS.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsweetalert2%2Fsweetalert2-themes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsweetalert2%2Fsweetalert2-themes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsweetalert2%2Fsweetalert2-themes/lists"}