{"id":13406986,"url":"https://github.com/LeCoupa/vuedarkmode","last_synced_at":"2025-03-14T11:30:53.155Z","repository":{"id":42969979,"uuid":"150027583","full_name":"LeCoupa/vuedarkmode","owner":"LeCoupa","description":"👩‍🎨👨‍🎨 A minimalist dark design system for Vue.js. Based components designed for the insomniacs who enjoy dark interfaces as much as we do.","archived":false,"fork":false,"pushed_at":"2022-12-30T19:31:48.000Z","size":4955,"stargazers_count":1091,"open_issues_count":8,"forks_count":70,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-03-03T12:59:00.242Z","etag":null,"topics":["bootstrap","components","darkmode","design-system","nuxtjs","vuejs"],"latest_commit_sha":null,"homepage":"https://www.growthbunker.dev/vuedarkmode","language":"Vue","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/LeCoupa.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-23T21:35:51.000Z","updated_at":"2025-02-28T03:02:33.000Z","dependencies_parsed_at":"2023-01-31T14:31:10.550Z","dependency_job_id":null,"html_url":"https://github.com/LeCoupa/vuedarkmode","commit_stats":null,"previous_names":["growthbunker/vuedarkmode"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeCoupa%2Fvuedarkmode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeCoupa%2Fvuedarkmode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeCoupa%2Fvuedarkmode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeCoupa%2Fvuedarkmode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LeCoupa","download_url":"https://codeload.github.com/LeCoupa/vuedarkmode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242714071,"owners_count":20173583,"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","components","darkmode","design-system","nuxtjs","vuejs"],"created_at":"2024-07-30T19:02:45.007Z","updated_at":"2025-03-14T11:30:53.130Z","avatar_url":"https://github.com/LeCoupa.png","language":"Vue","funding_links":[],"categories":["Vue","Components \u0026 Libraries","Frameworks","Frameworks [🔝](#readme)"],"sub_categories":["Frameworks","Component Collections"],"readme":"\u003cp align=\"center\" style=\"background: #1b2431; padding: 20px 0;\"\u003e\n  \u003ca href=\"https://www.growthbunker.dev/vuedarkmode\" target=\"_blank\"\u003e\n    \u003cimg width=\"100%\" src=\"https://raw.githubusercontent.com/growthbunker/vuedarkmode/master/src/images/vuedarkmode.jpg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n[![npm](https://img.shields.io/npm/v/@growthbunker/vuedarkmode.svg)](https://www.npmjs.com/package/@growthbunker/vuedarkmode)\n[![npm](https://img.shields.io/npm/dm/@growthbunker/vuedarkmode.svg)](https://npm-stat.com/charts.html?package=@growthbunker/vuedarkmode)\n[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/growthbunker/vuedarkmode.svg)](http://isitmaintained.com/project/growthbunker/vuedarkmode \"Average time to resolve an issue\")\n[![Percentage of issues still open](http://isitmaintained.com/badge/open/growthbunker/vuedarkmode.svg)](http://isitmaintained.com/project/growthbunker/vuedarkmode \"Percentage of issues still open\")\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/growthbunker/vuedarkmode/blob/master/LICENSE)\n[![Netlify Status](https://api.netlify.com/api/v1/badges/ae3d4112-1c84-4868-b4eb-271c3136ede6/deploy-status)](https://app.netlify.com/sites/growthbunker/deploys)\n\n## Documentation\n\nYou can browse the documentation for Vue Dark Mode [on the website](https://www.growthbunker.dev/vuedarkmode).\n\n## Installation\n\n```\nnpm install @growthbunker/vuedarkmode\n\n# Or if you prefer using yarn\nyarn add @growthbunker/vuedarkmode\n```\n\n### Vue.js\n\nIn your `main.js` file:\n\n```js\nimport Vue from \"vue\"\nimport VueDarkMode from \"@growthbunker/vuedarkmode\"\n\nVue.use(VueDarkMode)\n```\n\n### Nuxt.js\n\nCreate a new plugin in `plugins/vuedarkmode.js`:\n\n```js\nimport Vue from \"vue\"\nimport VueDarkMode from \"@growthbunker/vuedarkmode\"\n\nVue.use(VueDarkMode)\n```\n\nAdd this new plugin to `nuxt.config.js`.\n\n```js\nmodule.exports = {\n  // ...\n  plugins: [{ src: \"@/plugins/vuedarkmode.js\" }];\n}\n```\n\n### CDN\n\nGet the latest version from [jsdelivr](https://www.jsdelivr.com/), and import the JavaScript file in your page.\n\n```html\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/vue@2.5/dist/vue.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/@growthbunker/vuedarkmode@latest/dist/vuedarkmode.min.js\"\u003e\u003c/script\u003e\n```\n\nWe recommend our users to lock Vue Dark Mode's version when using CDN. Requesting the latest version (as opposed to \"latest major\" or \"latest minor\") is dangerous because major versions usually come with breaking changes. Only do this if you really know what you are doing. [Please refer to jsdelivr.com](https://www.jsdelivr.com/features) for more information.\n\n## Available Components\n\nWe are releasing new components on a monthly basis. [Subscribe to our newsletter](http://eepurl.com/dLlKBM) to stay in touch with coming releases.\n\n### Base Components\n\n- **BaseAlert**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseAlert) | [source code](/src/components/base/BaseAlert.vue).\n\n- **BaseAvatar**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseAvatar) | [source code](/src/components/base/BaseAvatar.vue).\n\n- **BaseBadge**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseBadge) | [source code](/src/components/base/BaseBadge.vue).\n\n- **BaseButton**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseButton) | [source code](/src/components/base/BaseButton.vue).\n\n- **BaseDivider**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseDivider) | [source code](/src/components/base/BaseDivider.vue).\n\n- **BaseHeading**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseHeading) | [source code](/src/components/base/BaseHeading.vue).\n\n- **BaseIcon**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseIcon) | [source code](/src/components/base/BaseIcon.vue).\n\n* **BaseProgressBar**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseProgressBar) | [source code](/src/components/base/BaseProgressBar.vue).\n\n* **BaseSpinner**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseSpinner) | [source code](/src/components/base/BaseSpinner.vue).\n\n* **BaseToast**: [documentation](https://www.growthbunker.dev/vuedarkmode/#baseToast) | [source code](/src/components/base/BaseToast.vue).\n\n### Field Components\n\n- **FieldCheckbox**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldCheckbox) | [source code](/src/components/fields/FieldCheckbox.vue).\n\n- **FieldImageUploader**: [documentation](https://www.growthbunker.dev/vuedarkmode/#FieldImageUploader) | [source code](/src/components/fields/FieldImageUploader.vue).\n\n- **FieldInput**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldInput) | [source code](/src/components/fields/FieldInput.vue).\n\n- **FieldInputNumber**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldInputNumber) | [source code](/src/components/fields/FieldInputNumber.vue).\n\n- **FieldRadio**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldRadio) | [source code](/src/components/fields/FieldRadio.vue).\n\n- **FieldSelect**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldSelect) | [source code](/src/components/fields/FieldSelect.vue).\n\n- **FieldTabs**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldTabs) | [source code](/src/components/fields/FieldTabs.vue).\n\n- **FieldTextarea**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldTextarea) | [source code](/src/components/fields/FieldTextarea.vue).\n\n- **FieldToggle**: [documentation](https://www.growthbunker.dev/vuedarkmode/#fieldToggle) | [source code](/src/components/fields/FieldToggle.vue).\n\n## Contributing\n\nYou are more than welcome to contribute to Vue Dark Mode. Just submit changes via pull request and I will review them before merging.\n\n1. Fork it! 🤙\n\n2. Create your feature branch: `git checkout -b my-new-feature`\n\n3. Commit your changes: `git commit -am \"Add some feature\"`\n\n4. Push to the branch: `git push origin my-new-feature`\n\n5. Submit a pull request 👍\n\nThe documentation is available in the `docs` folder. The Vue Dark Mode components are available in the `lib` folder.\n\n## License\n\nVue Dark Mode is [MIT licensed](LICENSE).\n\n## Cross-Browsing\n\nVue Dark Mode is using [BrowserStack](https://www.browserstack.com/) to make sure our components render properly on modern browsers.\n\n\u003cimg alt=\"BrowserStack Logo\" width=\"200px\" src=\"https://raw.githubusercontent.com/growthbunker/vuedarkmode/master/src/images/browserstack.png\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLeCoupa%2Fvuedarkmode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLeCoupa%2Fvuedarkmode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLeCoupa%2Fvuedarkmode/lists"}