{"id":31847939,"url":"https://github.com/wireapp/brand","last_synced_at":"2025-10-12T09:58:41.845Z","repository":{"id":48448264,"uuid":"120774872","full_name":"wireapp/brand","owner":"wireapp","description":"Brand assets \u0026 styleguide content · brand.wire.com","archived":false,"fork":false,"pushed_at":"2022-10-19T10:07:08.000Z","size":1831,"stargazers_count":3,"open_issues_count":2,"forks_count":6,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-05-09T16:41:52.600Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://brand.wire.com","language":"HTML","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/wireapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-08T14:52:27.000Z","updated_at":"2023-04-15T02:28:54.000Z","dependencies_parsed_at":"2023-01-20T04:45:44.656Z","dependency_job_id":null,"html_url":"https://github.com/wireapp/brand","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/wireapp/brand","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fbrand","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fbrand/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fbrand/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fbrand/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wireapp","download_url":"https://codeload.github.com/wireapp/brand/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wireapp%2Fbrand/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010951,"owners_count":26084841,"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-10-12T02:00:06.719Z","response_time":53,"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":[],"created_at":"2025-10-12T09:58:38.471Z","updated_at":"2025-10-12T09:58:41.835Z","avatar_url":"https://github.com/wireapp.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wire — Brand Elements\n\n**Wire** brand assets — logo, symbol, color, text, and typography guidelines.\n\nPublished via [GitHub Pages][1] \u0026 [Jekyll][2] to [brand.wire.com][3].\n\n## Purpose\n\n- Used by marketing and sales to create presentation slides based on Wire's corporate identity\n- Used by customer success when onboarding new team members to introduce them to Wire's look \u0026 feel\n- Reference by product when working with external designers to create a consistent Wire user experience\n\n## Suggesting changes\n\n- If you find a typo or would like to suggest a new topic for the [writing guidelines][4], you can [create an issue][5].\n\n- If you know how to fix the issue yourself, [submit a pull request][6] with the proposed changes.\n\n---\n\n### Technical details\n\n\u003cdetails\u003e\n\u003csummary\u003eSetting up a local testing environment and formatting code\u003c/summary\u003e\n\n## Setting up a local testing environment\n\nThe `brand` microsite can be set up to run locally on your computer so you can preview your changes before submitting a pull request.\n\nThe instructions below assume you're on a Mac with [Homebrew][7] installed.\n\n1.  Install the latest Ruby version via Homebrew:\n\n    ```sh\n    brew install ruby\n    ```\n\n2.  Install [Bundler][8]:\n\n    ```sh\n    gem install bundler jekyll\n    ```\n\n3.  Install the GitHub Pages gem and bundled dependencies:\n\n    ```sh\n    bundle install\n    ```\n\n4.  Run [Jekyll][9]:\n\n    ```sh\n    bundle exec jekyll serve\n    ```\n\nThis runs the site locally, so you can view your local clone of the `brand` microsite at [http://127.0.0.1:4000/][10].\n\nAt this stage, what you see there should be identical to the production version of the site at [brand.wire.com][3].\n\n**Note:** For more details, see [Setting up your GitHub Pages site locally with Jekyll][11].\n\n## Formatting code with Prettier\n\nThe `brand` microsite uses [Prettier][12] to automatically format code and enforce consistency across the project.\n\nThe [prettier-setup][13] installs Prettier and various dependencies, configures formatting rules and sets up commit hooks to ensure files are formatted correctly before commiting.\n\n1.  Install the [yarn][14] JavaScript package manager via Homebrew:\n\n    ```sh\n    brew install yarn\n    ```\n\n2.  Run `yarn` to install Prettier and dependencies:\n\n    ```sh\n    yarn\n    ```\n\nNow when you edit any of the JSON, Markdown, Sass, or YAML files in the project, they will be automatically reformatted when you stage your changes in Git.\n\n**Tip:** You can also run Prettier manually via the `yarn fix` command to verify the results before committing.\n\n\u003c/details\u003e\n\n[1]: https://pages.github.com\n[2]: https://jekyllrb.com\n[3]: https://brand.wire.com\n[4]: https://brand.wire.com/text/\n[5]: https://github.com/wireapp/brand/issues/new\n[6]: https://help.github.com/articles/using-pull-requests/\n[7]: https://brew.sh\n[8]: https://bundler.io\n[9]: https://jekyllrb.com\n[10]: http://127.0.0.1:4000/\n[11]: https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/\n[12]: https://prettier.io\n[13]: https://github.com/lipis/prettier-setup\n[14]: https://yarnpkg.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwireapp%2Fbrand","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwireapp%2Fbrand","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwireapp%2Fbrand/lists"}