├── .gitignore ├── LICENSE ├── README.md ├── logos ├── 5-things-angular.svg ├── angular-404.svg ├── angular-academy.svg ├── angular-africa.svg ├── angular-after-dark.svg ├── angular-animations.svg ├── angular-apac.svg ├── angular-athens.svg ├── angular-augury.svg ├── angular-austria.svg ├── angular-auth-oidc-client-logo.svg ├── angular-belarus.svg ├── angular-belgrade.svg ├── angular-berlin.svg ├── angular-birmingham-uk.svg ├── angular-bogota.svg ├── angular-bolivia.svg ├── angular-cdk.svg ├── angular-challenge.svg ├── angular-chile.svg ├── angular-cli.svg ├── angular-college.svg ├── angular-communities-logo.svg ├── angular-compiler.svg ├── angular-components.svg ├── angular-connect.svg ├── angular-dart.svg ├── angular-de.svg ├── angular-denver-2018.svg ├── angular-devs-france.svg ├── angular-dresden.svg ├── angular-electron.svg ├── angular-evergreen.svg ├── angular-experts.svg ├── angular-extensions.svg ├── angular-finland-inverse.svg ├── angular-finland.svg ├── angular-firebase.svg ├── angular-for-the-visual-learner-black.svg ├── angular-for-the-visual-learner-white.svg ├── angular-formly.svg ├── angular-forms.svg ├── angular-fun.svg ├── angular-hamburg.svg ├── angular-highlight.svg ├── angular-http.svg ├── angular-i18n.svg ├── angular-ivy.svg ├── angular-jest.svg ├── angular-karma.svg ├── angular-kenya.svg ├── angular-kharkiv.svg ├── angular-labs.svg ├── angular-language-services.svg ├── angular-leipzig-logo.svg ├── angular-love.svg ├── angular-malaga.svg ├── angular-material.svg ├── angular-medellin-dark.svg ├── angular-medellin-light.svg ├── angular-meteor.svg ├── angular-nyc.svg ├── angular-pakistan.svg ├── angular-prerender.svg ├── angular-protractor.svg ├── angular-pwa.svg ├── angular-router.svg ├── angular-sf.svg ├── angular-share-buttons.svg ├── angular-swiss.svg ├── angular-taiwan.svg ├── angular-testing-library.svg ├── angular-teximate.svg ├── angular-thailand.svg ├── angular-three-logo.svg ├── angular-toronto.svg ├── angular-toulouse.svg ├── angular-universal-old.svg ├── angular-universal.svg ├── angular-venezuela.svg ├── angular-vienna.svg ├── angular-vietnam.svg ├── angular-wroclaw.svg ├── angular-zone.svg ├── angular-zurich.svg ├── angularday.svg ├── codelyzer.svg ├── covalent.svg ├── dutch-angular-group.svg ├── fluent-form.svg ├── graphql-angular.svg ├── jscutlery.svg ├── lumberjack.svg ├── nativescript-angular.svg ├── ng-Keralam.svg ├── ng-aarhus.svg ├── ng-arab.svg ├── ng-atlanta.svg ├── ng-baires.svg ├── ng-be.svg ├── ng-beer-brno.svg ├── ng-bolivia-2018.svg ├── ng-bolivia-2019.svg ├── ng-bootstrap.svg ├── ng-conf-2015.svg ├── ng-conf-2016.svg ├── ng-conf-2017.svg ├── ng-copenhagen.svg ├── ng-de.svg ├── ng-doc.svg ├── ng-dominican.svg ├── ng-dubai.svg ├── ng-europe.svg ├── ng-girls.svg ├── ng-heidelberg.svg ├── ng-lightning.svg ├── ng-morocco.svg ├── ng-norway.svg ├── ng-panama.svg ├── ng-potato.svg ├── ng-rome.svg ├── ng-turkey.svg ├── ng-vikings.svg ├── ng-zorro-antd.svg ├── ngconf-colombia-2020.svg ├── ngrev.svg ├── ngruair.svg ├── ngrx-ducks.svg ├── ngrx-legacy.svg ├── ngrx.svg ├── ngx-aws-deploy.svg ├── ngx-bar-rating.svg ├── ngx-bulma.svg ├── ngx-cookieconsent.svg ├── ngx-deploy-ftp.svg ├── ngx-deploy-npm.svg ├── ngx-disqus.svg ├── ngx-doc-gen.svg ├── ngx-electronify-logo.svg ├── ngx-lipsum.svg ├── ngx-localstorage.svg ├── ngx-plus-amber.svg ├── ngx-plus-blue.svg ├── ngx-plus-bluegrey.svg ├── ngx-plus-brown.svg ├── ngx-plus-cyan.svg ├── ngx-plus-deeporange.svg ├── ngx-plus-deeppurple.svg ├── ngx-plus-green.svg ├── ngx-plus-grey.svg ├── ngx-plus-indigo.svg ├── ngx-plus-lightblue.svg ├── ngx-plus-lightgreen.svg ├── ngx-plus-lime.svg ├── ngx-plus-orange.svg ├── ngx-plus-pink.svg ├── ngx-plus-purple.svg ├── ngx-plus-red.svg ├── ngx-plus-teal.svg ├── ngx-plus-yellow.svg ├── ngx-progress-bar.svg ├── ngx-scrollreveal.svg ├── ngx-signal-state.svg ├── ngx-uptodate.svg ├── ngx-wordpress.svg ├── ngxtension-blue.svg ├── pair-angular.svg ├── prime-ng.svg ├── spectacular.svg ├── ultimate-angular-white.svg └── ultimate-angular.svg ├── metadata.json └── pull_request_template.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Angular 2 | /dist 3 | /tmp 4 | /app/**/*.js 5 | /app/**/*.js.map 6 | /out-tsc 7 | 8 | # Dependencies 9 | /node_modules 10 | /bower_components 11 | 12 | # Misc 13 | /.sass-cache 14 | /connect.lock 15 | /coverage/* 16 | /libpeerconnection.log 17 | npm-debug.log 18 | testem.log 19 | /typings 20 | .c9/ 21 | *.sublime-workspace 22 | 23 | # E2E 24 | /e2e/*.js 25 | /e2e/*.map 26 | 27 | # System Files 28 | .DS_Store 29 | 30 | # Eclipse 31 | .metadata 32 | bin/ 33 | tmp/ 34 | *.tmp 35 | *.bak 36 | *.swp 37 | *~.nib 38 | local.properties 39 | .settings/ 40 | .loadpath 41 | .recommenders 42 | .externalToolBuilders/ 43 | *.launch 44 | *.pydevproject 45 | .cproject 46 | .autotools 47 | .factorypath 48 | .buildpath 49 | .target 50 | .tern-project 51 | .texlipse 52 | .springBeans 53 | .recommenders/ 54 | .apt_generated/ 55 | .cache-main 56 | .scala_dependencies 57 | .worksheet 58 | .project 59 | .classpath 60 | .apt_generated 61 | .sts4-cache/ 62 | 63 | # Git 64 | *.orig 65 | *.BACKUP.* 66 | *.BASE.* 67 | *.LOCAL.* 68 | *.REMOTE.* 69 | *_BACKUP_*.txt 70 | *_BASE_*.txt 71 | *_LOCAL_*.txt 72 | *_REMOTE_*.txt 73 | 74 | # Intellij 75 | /.idea 76 | .idea/**/workspace.xml 77 | .idea/**/tasks.xml 78 | .idea/**/usage.statistics.xml 79 | .idea/**/dictionaries 80 | .idea/**/shelf 81 | .idea/**/contentModel.xml 82 | .idea/**/dataSources/ 83 | .idea/**/dataSources.ids 84 | .idea/**/dataSources.local.xml 85 | .idea/**/sqlDataSources.xml 86 | .idea/**/dynamic.xml 87 | .idea/**/uiDesigner.xml 88 | .idea/**/dbnavigator.xml 89 | .idea/**/gradle.xml 90 | .idea/**/libraries 91 | auto-import. 92 | .idea/modules.xml 93 | .idea/*.iml 94 | .idea/modules 95 | *.iml 96 | *.ipr 97 | out/ 98 | .idea_modules/ 99 | atlassian-ide-plugin.xml 100 | .idea/replstate.xml 101 | com_crashlytics_export_strings.xml 102 | crashlytics.properties 103 | crashlytics-build.properties 104 | fabric.properties 105 | .idea/httpRequests 106 | .idea/caches/build_file_checksums.ser 107 | # *.iml 108 | # modules.xml 109 | # .idea/misc.xml 110 | # *.ipr 111 | .idea/sonarlint 112 | 113 | # Mac OSX 114 | .AppleDouble 115 | .LSOverride 116 | Icon 117 | # Thumbnails 118 | ._* 119 | .DocumentRevisions-V100 120 | .fseventsd 121 | .Spotlight-V100 122 | .TemporaryItems 123 | .Trashes 124 | .VolumeIcon.icns 125 | .com.apple.timemachine.donotpresent 126 | .AppleDB 127 | .AppleDesktop 128 | Network Trash Folder 129 | Temporary Items 130 | .apdisk 131 | 132 | # Node 133 | logs 134 | *.log 135 | npm-debug.log* 136 | yarn-debug.log* 137 | yarn-error.log* 138 | lerna-debug.log* 139 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 140 | pids 141 | *.pid 142 | *.seed 143 | *.pid.lock 144 | lib-cov 145 | coverage 146 | *.lcov 147 | .nyc_output 148 | .grunt 149 | bower_components 150 | .lock-wscript 151 | build/Release 152 | node_modules/ 153 | jspm_packages/ 154 | typings/ 155 | *.tsbuildinfo 156 | .npm 157 | .eslintcache 158 | .node_repl_history 159 | *.tgz 160 | .yarn-integrity 161 | .env 162 | .env.test 163 | .cache 164 | .next 165 | .nuxt 166 | .vuepress/dist 167 | .serverless/ 168 | .fusebox/ 169 | .dynamodb/ 170 | 171 | # Sass 172 | .sass-cache/ 173 | *.css.map 174 | *.sass.map 175 | *.scss.map 176 | 177 | # Visual Studio Code 178 | /.vscode 179 | .history 180 | 181 | # Windows 182 | Thumbs.db 183 | Thumbs.db:encryptable 184 | ehthumbs.db 185 | ehthumbs_vista.db 186 | *.stackdump 187 | [Dd]esktop.ini 188 | $RECYCLE.BIN/ 189 | *.cab 190 | *.msi 191 | *.msix 192 | *.msm 193 | *.msp 194 | *.lnk 195 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Maarten Tibau 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular Logos 2 | 3 | This repo is dedicated to collect all the different kinds of Angular badges / logos. This can be a logo from a conference, a NPM package, ... 4 | 5 | View all logos on the following website: 6 | ## 🅰️ [angularlogos.com](https://angularlogos.com/) 7 | 8 | ### Logo requirements 9 | - only .svg logo's 10 | - kebab-case file name (e.g. my-angular-logo.svg) 11 | 12 | ### How to submit a logo 13 | - Please create a pull request with your logo, to add it to the repo 14 | -------------------------------------------------------------------------------- /logos/5-things-angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 14 | 16 | 17 | 19 | 20 | 22 | 23 | -------------------------------------------------------------------------------- /logos/angular-404.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /logos/angular-africa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /logos/angular-after-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 27 | 29 | 31 | 34 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /logos/angular-animations.svg: -------------------------------------------------------------------------------- 1 | animations -------------------------------------------------------------------------------- /logos/angular-augury.svg: -------------------------------------------------------------------------------- 1 | augury -------------------------------------------------------------------------------- /logos/angular-bogota.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | 13 | 14 | 16 | 17 | 20 | 21 | 26 | 33 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /logos/angular-bolivia.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | 14 | 15 | 17 | 19 | 20 | -------------------------------------------------------------------------------- /logos/angular-cdk.svg: -------------------------------------------------------------------------------- 1 | cdk -------------------------------------------------------------------------------- /logos/angular-cli.svg: -------------------------------------------------------------------------------- 1 | cli -------------------------------------------------------------------------------- /logos/angular-college.svg: -------------------------------------------------------------------------------- 1 | angular-college -------------------------------------------------------------------------------- /logos/angular-compiler.svg: -------------------------------------------------------------------------------- 1 | compiler -------------------------------------------------------------------------------- /logos/angular-components.svg: -------------------------------------------------------------------------------- 1 | components -------------------------------------------------------------------------------- /logos/angular-connect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /logos/angular-dart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /logos/angular-de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | angular-de-logo 14 | Created with Sketch. 15 | 16 | 20 | 21 | 22 | 23 | 25 | 27 | 28 | 29 | 33 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /logos/angular-devs-france.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /logos/angular-evergreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ng-evergreen-logo 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /logos/angular-experts.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logos/angular-extensions.svg: -------------------------------------------------------------------------------- 1 | angular-extentions -------------------------------------------------------------------------------- /logos/angular-finland-inverse.svg: -------------------------------------------------------------------------------- 1 | Angular Finland (negative) -------------------------------------------------------------------------------- /logos/angular-finland.svg: -------------------------------------------------------------------------------- 1 | Angular Finland -------------------------------------------------------------------------------- /logos/angular-for-the-visual-learner-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /logos/angular-for-the-visual-learner-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /logos/angular-forms.svg: -------------------------------------------------------------------------------- 1 | forms -------------------------------------------------------------------------------- /logos/angular-highlight.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /logos/angular-http.svg: -------------------------------------------------------------------------------- 1 | http -------------------------------------------------------------------------------- /logos/angular-i18n.svg: -------------------------------------------------------------------------------- 1 | i18n -------------------------------------------------------------------------------- /logos/angular-jest.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | 11 | 12 | 13 | 19 | 32 | 33 | -------------------------------------------------------------------------------- /logos/angular-karma.svg: -------------------------------------------------------------------------------- 1 | karma -------------------------------------------------------------------------------- /logos/angular-kenya.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logos/angular-labs.svg: -------------------------------------------------------------------------------- 1 | labs -------------------------------------------------------------------------------- /logos/angular-language-services.svg: -------------------------------------------------------------------------------- 1 | language-services -------------------------------------------------------------------------------- /logos/angular-love.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 22 | 24 | 25 | 26 | 27 | 28 | 30 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /logos/angular-material.svg: -------------------------------------------------------------------------------- 1 | material -------------------------------------------------------------------------------- /logos/angular-medellin-dark.svg: -------------------------------------------------------------------------------- 1 | Asset 2 -------------------------------------------------------------------------------- /logos/angular-medellin-light.svg: -------------------------------------------------------------------------------- 1 | Asset 1 -------------------------------------------------------------------------------- /logos/angular-prerender.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | --> --> 36 | 37 | -------------------------------------------------------------------------------- /logos/angular-protractor.svg: -------------------------------------------------------------------------------- 1 | protractor -------------------------------------------------------------------------------- /logos/angular-pwa.svg: -------------------------------------------------------------------------------- 1 | pwa -------------------------------------------------------------------------------- /logos/angular-router.svg: -------------------------------------------------------------------------------- 1 | router -------------------------------------------------------------------------------- /logos/angular-sf.svg: -------------------------------------------------------------------------------- 1 | angular-sf -------------------------------------------------------------------------------- /logos/angular-teximate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /logos/angular-thailand.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xml 41 | 63 | 64 | -------------------------------------------------------------------------------- /logos/angular-three-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /logos/angular-toronto.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xml 57 | -------------------------------------------------------------------------------- /logos/angular-universal-old.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /logos/angular-universal.svg: -------------------------------------------------------------------------------- 1 | universal -------------------------------------------------------------------------------- /logos/angular-vietnam.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /logos/angular-wroclaw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /logos/angular-zone.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /logos/angularday.svg: -------------------------------------------------------------------------------- 1 | angularjsday-logo -------------------------------------------------------------------------------- /logos/codelyzer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /logos/fluent-form.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logos/graphql-angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 61 | 62 | 64 | 66 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /logos/jscutlery.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logos/nativescript-angular.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xml -------------------------------------------------------------------------------- /logos/ng-atlanta.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | ngATL_logo 9 | 10 | 11 | 13 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /logos/ng-be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ng-beer-brno.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /logos/ng-bootstrap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /logos/ng-copenhagen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /logos/ng-dubai.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | NgDubai 7 | Created with Sketch. 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /logos/ng-girls.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /logos/ng-heidelberg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logos/ng-lightning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ng-lightning shield 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ng-morocco.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 13 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /logos/ng-vikings.svg: -------------------------------------------------------------------------------- 1 | ng-vikings -------------------------------------------------------------------------------- /logos/ng-zorro-antd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /logos/ngrx-ducks.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /logos/ngrx-legacy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | badge 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngrx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logos/ngx-bar-rating.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | 14 | 15 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /logos/ngx-bulma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /logos/ngx-deploy-ftp.svg: -------------------------------------------------------------------------------- 1 | 3 | 16 | 17 | 19 | 21 | 22 | 23 | 24 | 26 | 27 | 28 | 29 | FTP 30 | 31 | -------------------------------------------------------------------------------- /logos/ngx-deploy-npm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | image/svg+xml 45 | 52 | 55 | 56 | 57 | 58 | 86 | -------------------------------------------------------------------------------- /logos/ngx-disqus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 14 | 15 | -------------------------------------------------------------------------------- /logos/ngx-doc-gen.svg: -------------------------------------------------------------------------------- 1 | 3 | 24 | 25 | 27 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 50 | 51 | -------------------------------------------------------------------------------- /logos/ngx-electronify-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | image/svg+xml 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /logos/ngx-lipsum.svg: -------------------------------------------------------------------------------- 1 | 3 | 16 | 17 | 19 | 21 | 22 | 23 | orem ipsum L 31 | 32 | 34 | 35 | -------------------------------------------------------------------------------- /logos/ngx-localstorage.svg: -------------------------------------------------------------------------------- 1 | 3 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 23 | 24 | 25 | 26 | 28 | 30 | 32 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /logos/ngx-plus-amber.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-amber 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-blue 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-bluegrey.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-bluegrey 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-brown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-brown 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-cyan.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-cyan 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-deeporange.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-deeporange 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-deeppurple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-deeppurple 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-green.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-green 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-grey.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-grey 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-indigo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-indigo 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-lightblue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-lightblue 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-lightgreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-lightgreen 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-lime.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-lime 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-orange.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-orange 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-pink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-pink 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-purple 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-red.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-red 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-teal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-teal 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-plus-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | ngx-plus-yellow 4 | Generator: https://github.com/ngx-plus/ngx-logos 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /logos/ngx-progress-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /logos/ngx-scrollreveal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Layer 1 5 | 6 | 7 | 8 | 9 | 10 | Layer 2 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /logos/ngx-signal-state.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /logos/ngx-uptodate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /logos/ngx-wordpress.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | 10 | 13 | 15 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /logos/ngxtension-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /logos/prime-ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Group 2 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /logos/spectacular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | 13 | 14 | 15 | 16 | 18 | 26 | 27 | -------------------------------------------------------------------------------- /logos/ultimate-angular-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 9 | 14 | 16 | 18 | 19 | -------------------------------------------------------------------------------- /logos/ultimate-angular.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Checklist for logo submission 2 | 3 | - [ ] Logo file added to the `logos` folder 4 | - [ ] Created a new entry in `metadata.json` (only `name` is mandatory) 5 | - [ ] Logo is an SVG with vector paths (no embedded pixel image) 6 | - [ ] The logo fills the image and there is no white margin (please remove the white margin if there is any 🙂 ) --------------------------------------------------------------------------------