├── .gitignore ├── LICENSE ├── README.md ├── doc ├── banner.png ├── banner@2x.png ├── juejin │ ├── 1@2x.png │ ├── 2@2x.png │ ├── 3@2x.png │ ├── 4@2x.png │ ├── 5@2x.png │ ├── 6@2x.png │ ├── 7@2x.png │ ├── 8@2x.png │ └── 9@2x.png ├── ribbons-classic-github.png ├── ribbons-classic-github@2x.png ├── ribbons-flat-icon-gitee.png ├── ribbons-flat-icon-gitee@2x.png ├── ribbons-flat-icon-github.png ├── ribbons-flat-icon-github@2x.png ├── ribbons-flat-icon-gitlab.png ├── ribbons-flat-icon-gitlab@2x.png ├── ribbons-flat-opacity-icon-gitee.png ├── ribbons-flat-opacity-icon-gitee@2x.png ├── ribbons-flat-opacity-icon-github.png ├── ribbons-flat-opacity-icon-github@2x.png ├── ribbons-flat-opacity-icon-gitlab.png ├── ribbons-flat-opacity-icon-gitlab@2x.png ├── ribbons-flat-opacity-text-gitee.png ├── ribbons-flat-opacity-text-gitee@2x.png ├── ribbons-flat-opacity-text-github.png ├── ribbons-flat-opacity-text-github@2x.png ├── ribbons-flat-opacity-text-gitlab.png ├── ribbons-flat-opacity-text-gitlab@2x.png ├── ribbons-flat-text-gitee.png ├── ribbons-flat-text-gitee@2x.png ├── ribbons-flat-text-github.png ├── ribbons-flat-text-github@2x.png ├── ribbons-flat-text-gitlab.png └── ribbons-flat-text-gitlab@2x.png ├── priview ├── classic │ └── github │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png ├── flat-icon │ ├── gitee │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png │ ├── github │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png │ └── gitlab │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png ├── flat-opacity-icon │ ├── gitee │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png │ ├── github │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png │ └── gitlab │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png ├── flat-opacity-text │ ├── gitee │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png │ ├── github │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png │ └── gitlab │ │ ├── left.png │ │ ├── left@2x.png │ │ ├── right.png │ │ └── right@2x.png └── flat-text │ ├── gitee │ ├── left.png │ ├── left@2x.png │ ├── right.png │ └── right@2x.png │ ├── github │ ├── left.png │ ├── left@2x.png │ ├── right.png │ └── right@2x.png │ └── gitlab │ ├── left.png │ ├── left@2x.png │ ├── right.png │ └── right@2x.png └── ribbons ├── flat-icon ├── gitee │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png ├── github │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png └── gitlab │ ├── left │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png │ └── right │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png ├── flat-opacity-icon ├── gitee │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png ├── github │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png └── gitlab │ ├── left │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png │ └── right │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png ├── flat-opacity-text ├── gitee │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png ├── github │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png └── gitlab │ ├── left │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png │ └── right │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png ├── flat-text ├── gitee │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png ├── github │ ├── left │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png │ └── right │ │ ├── darkblue.png │ │ ├── darkblue@2x.png │ │ ├── gray.png │ │ ├── gray@2x.png │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── white.png │ │ └── white@2x.png └── gitlab │ ├── left │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png │ └── right │ ├── darkblue.png │ ├── darkblue@2x.png │ ├── gray.png │ ├── gray@2x.png │ ├── green.png │ ├── green@2x.png │ ├── orange.png │ ├── orange@2x.png │ ├── red.png │ ├── red@2x.png │ ├── white.png │ └── white@2x.png └── github ├── left ├── darkblue.png ├── darkblue@2x.png ├── gray.png ├── gray@2x.png ├── green.png ├── green@2x.png ├── orange.png ├── orange@2x.png ├── red.png ├── red@2x.png ├── white.png └── white@2x.png └── right ├── darkblue.png ├── darkblue@2x.png ├── gray.png ├── gray@2x.png ├── green.png ├── green@2x.png ├── orange.png ├── orange@2x.png ├── red.png ├── red@2x.png ├── white.png └── white@2x.png /.gitignore: -------------------------------------------------------------------------------- 1 | design.sketch 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 D2 Projects 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 | ![banner](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/banner%402x.png) 2 | 3 | D2 Ribbons 是一套为开发者准备的开源社区绶带资源,你你可以下载图片到你的项目中使用或者直接使用仓库资源链接。 4 | 5 | ## Features 6 | 7 | * 扁平化风格 8 | * Github Gitlab Gitee 三套图标 9 | * 六色主题 10 | * 半透明 / 不透明样式 11 | * 文字 / 图标样式 12 | * @2x 资源 13 | * 统一尺寸(150 x 150 / 300 x 300 @2x) 14 | * 附带 Github 经典样式的绶带 15 | 16 | ## Story 17 | 18 | > 我想了想究竟是预览放在前面还是介绍放在前面,最后我觉得应该先写东西,因为预览图太多了 19 | 20 | 萌生做这么一个项目是从做 [D2Admin](https://github.com/d2-projects/d2-admin) 的时候,我想给我的项目页面角落加一个 “Fork me on github”,然后我就找了几个开源项目想看看他们用的是什么图片,都不很理想,后来找到了 Github 官方的 ribbons,但是和我的项目风格不是很搭配,Github 官方的 ribbons 还是以前的拟物风格,我希望有一个比较“扁平化”的绶带放在上面,于是我就临时画了一个放上去了,长这个样子: 21 | 22 | ![Snip20180711_32](http://fairyever.qiniudn.com/Snip20180711_32.png) 23 | 24 | 于是之后我就画了大概半天的事件,画了一套 ribbons 给以后用,自己用,也希望大家能用到,不仅有 github,还有 gitlab 和码云的版本,暂时只做了这些,以后有好的想法了再添加。 25 | 26 | ![Snip20180711_27](http://fairyever.qiniudn.com/Snip20180711_27.png) 27 | ![Snip20180711_29](http://fairyever.qiniudn.com/Snip20180711_29.png) 28 | 29 | > 所有的东西都出自一个程序员之手,没有经过专业的设计学习,请大家觉得丑的话轻喷 30 | 31 | sketch 是我最喜欢的设计软件,推荐给大家。 32 | 33 | 在设计这套图片的时候我也尽量发挥了 sketch 的特性,比如颜色配置,公用样式,symbol等很好用的功能,这些都可以达到改一处动全部和事半功倍的效果。 34 | 35 | 下面放上效果预览: 36 | 37 | ## Preview 38 | 39 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-opacity-text-github%402x.png) 40 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-text/github/left%402x.png) 41 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-text/github/right%402x.png) 42 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-opacity-text-gitlab%402x.png) 43 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-text/gitlab/left%402x.png) 44 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-text/gitlab/right%402x.png) 45 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-opacity-text-gitee%402x.png) 46 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-text/gitee/left%402x.png) 47 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-text/gitee/right%402x.png) 48 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-opacity-icon-github%402x.png) 49 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-icon/github/left%402x.png) 50 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-icon/github/right%402x.png) 51 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-opacity-icon-gitlab%402x.png) 52 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-icon/gitlab/left%402x.png) 53 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-icon/gitlab/right%402x.png) 54 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-opacity-icon-gitee%402x.png) 55 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-icon/gitee/left%402x.png) 56 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-opacity-icon/gitee/right%402x.png) 57 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-text-github%402x.png) 58 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-text/github/left%402x.png) 59 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-text/github/right%402x.png) 60 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-text-gitlab%402x.png) 61 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-text/gitlab/left%402x.png) 62 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-text/gitlab/right%402x.png) 63 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-text-gitee%402x.png) 64 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-text/gitee/left%402x.png) 65 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-text/gitee/right%402x.png) 66 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-icon-github%402x.png) 67 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-icon/github/left%402x.png) 68 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-icon/github/right%402x.png) 69 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-icon-gitlab%402x.png) 70 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-icon/gitlab/left%402x.png) 71 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-icon/gitlab/right%402x.png) 72 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-flat-icon-gitee%402x.png) 73 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-icon/gitee/left%402x.png) 74 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/flat-icon/gitee/right%402x.png) 75 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/doc/ribbons-classic-github%402x.png) 76 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/classic/github/left%402x.png) 77 | ![](https://raw.githubusercontent.com/d2-projects/d2-ribbons/master/priview/classic/github/right%402x.png) 78 | 79 | ## How to use 80 | 81 | 没有固定的使用方法,都是图片,你可以下载下来用到你的项目里,或者直接使用本仓库的图片链接。每款绶带都有 @2x 版本 82 | 83 | 后续还会陆续更新其它的图片资源。 84 | 85 | 其实不论 github 还是码云,官方提供的都有类似的 ribbon,看个人喜好选择 D2 还是官方就好 86 | 87 | 但是你把 [d2-ribbons](https://github.com/d2-projects/d2-ribbons) 收藏一下,以后不就不愁找了么~ 88 | 89 | -------------------------------------------------------------------------------- /doc/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/banner.png -------------------------------------------------------------------------------- /doc/banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/banner@2x.png -------------------------------------------------------------------------------- /doc/juejin/1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/1@2x.png -------------------------------------------------------------------------------- /doc/juejin/2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/2@2x.png -------------------------------------------------------------------------------- /doc/juejin/3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/3@2x.png -------------------------------------------------------------------------------- /doc/juejin/4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/4@2x.png -------------------------------------------------------------------------------- /doc/juejin/5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/5@2x.png -------------------------------------------------------------------------------- /doc/juejin/6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/6@2x.png -------------------------------------------------------------------------------- /doc/juejin/7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/7@2x.png -------------------------------------------------------------------------------- /doc/juejin/8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/8@2x.png -------------------------------------------------------------------------------- /doc/juejin/9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/juejin/9@2x.png -------------------------------------------------------------------------------- /doc/ribbons-classic-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-classic-github.png -------------------------------------------------------------------------------- /doc/ribbons-classic-github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-classic-github@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-icon-gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-icon-gitee.png -------------------------------------------------------------------------------- /doc/ribbons-flat-icon-gitee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-icon-gitee@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-icon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-icon-github.png -------------------------------------------------------------------------------- /doc/ribbons-flat-icon-github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-icon-github@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-icon-gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-icon-gitlab.png -------------------------------------------------------------------------------- /doc/ribbons-flat-icon-gitlab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-icon-gitlab@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-icon-gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-icon-gitee.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-icon-gitee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-icon-gitee@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-icon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-icon-github.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-icon-github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-icon-github@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-icon-gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-icon-gitlab.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-icon-gitlab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-icon-gitlab@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-text-gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-text-gitee.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-text-gitee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-text-gitee@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-text-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-text-github.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-text-github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-text-github@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-text-gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-text-gitlab.png -------------------------------------------------------------------------------- /doc/ribbons-flat-opacity-text-gitlab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-opacity-text-gitlab@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-text-gitee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-text-gitee.png -------------------------------------------------------------------------------- /doc/ribbons-flat-text-gitee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-text-gitee@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-text-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-text-github.png -------------------------------------------------------------------------------- /doc/ribbons-flat-text-github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-text-github@2x.png -------------------------------------------------------------------------------- /doc/ribbons-flat-text-gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-text-gitlab.png -------------------------------------------------------------------------------- /doc/ribbons-flat-text-gitlab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/doc/ribbons-flat-text-gitlab@2x.png -------------------------------------------------------------------------------- /priview/classic/github/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/classic/github/left.png -------------------------------------------------------------------------------- /priview/classic/github/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/classic/github/left@2x.png -------------------------------------------------------------------------------- /priview/classic/github/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/classic/github/right.png -------------------------------------------------------------------------------- /priview/classic/github/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/classic/github/right@2x.png -------------------------------------------------------------------------------- /priview/flat-icon/gitee/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitee/left.png -------------------------------------------------------------------------------- /priview/flat-icon/gitee/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitee/left@2x.png -------------------------------------------------------------------------------- /priview/flat-icon/gitee/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitee/right.png -------------------------------------------------------------------------------- /priview/flat-icon/gitee/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitee/right@2x.png -------------------------------------------------------------------------------- /priview/flat-icon/github/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/github/left.png -------------------------------------------------------------------------------- /priview/flat-icon/github/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/github/left@2x.png -------------------------------------------------------------------------------- /priview/flat-icon/github/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/github/right.png -------------------------------------------------------------------------------- /priview/flat-icon/github/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/github/right@2x.png -------------------------------------------------------------------------------- /priview/flat-icon/gitlab/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitlab/left.png -------------------------------------------------------------------------------- /priview/flat-icon/gitlab/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitlab/left@2x.png -------------------------------------------------------------------------------- /priview/flat-icon/gitlab/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitlab/right.png -------------------------------------------------------------------------------- /priview/flat-icon/gitlab/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-icon/gitlab/right@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitee/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitee/left.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitee/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitee/left@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitee/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitee/right.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitee/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitee/right@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/github/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/github/left.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/github/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/github/left@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/github/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/github/right.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/github/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/github/right@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitlab/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitlab/left.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitlab/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitlab/left@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitlab/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitlab/right.png -------------------------------------------------------------------------------- /priview/flat-opacity-icon/gitlab/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-icon/gitlab/right@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitee/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitee/left.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitee/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitee/left@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitee/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitee/right.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitee/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitee/right@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/github/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/github/left.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/github/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/github/left@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/github/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/github/right.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/github/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/github/right@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitlab/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitlab/left.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitlab/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitlab/left@2x.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitlab/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitlab/right.png -------------------------------------------------------------------------------- /priview/flat-opacity-text/gitlab/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-opacity-text/gitlab/right@2x.png -------------------------------------------------------------------------------- /priview/flat-text/gitee/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitee/left.png -------------------------------------------------------------------------------- /priview/flat-text/gitee/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitee/left@2x.png -------------------------------------------------------------------------------- /priview/flat-text/gitee/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitee/right.png -------------------------------------------------------------------------------- /priview/flat-text/gitee/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitee/right@2x.png -------------------------------------------------------------------------------- /priview/flat-text/github/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/github/left.png -------------------------------------------------------------------------------- /priview/flat-text/github/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/github/left@2x.png -------------------------------------------------------------------------------- /priview/flat-text/github/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/github/right.png -------------------------------------------------------------------------------- /priview/flat-text/github/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/github/right@2x.png -------------------------------------------------------------------------------- /priview/flat-text/gitlab/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitlab/left.png -------------------------------------------------------------------------------- /priview/flat-text/gitlab/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitlab/left@2x.png -------------------------------------------------------------------------------- /priview/flat-text/gitlab/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitlab/right.png -------------------------------------------------------------------------------- /priview/flat-text/gitlab/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/priview/flat-text/gitlab/right@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitee/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitee/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-icon/github/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/github/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-icon/gitlab/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-icon/gitlab/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitee/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitee/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/github/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/github/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-icon/gitlab/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-icon/gitlab/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitee/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitee/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/github/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/github/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-opacity-text/gitlab/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-opacity-text/gitlab/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitee/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitee/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-text/github/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/github/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/gray.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/green.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/orange.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/red.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/white.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/gray.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/green.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/orange.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/red.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/white.png -------------------------------------------------------------------------------- /ribbons/flat-text/gitlab/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/flat-text/gitlab/right/white@2x.png -------------------------------------------------------------------------------- /ribbons/github/left/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/darkblue.png -------------------------------------------------------------------------------- /ribbons/github/left/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/github/left/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/gray.png -------------------------------------------------------------------------------- /ribbons/github/left/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/gray@2x.png -------------------------------------------------------------------------------- /ribbons/github/left/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/green.png -------------------------------------------------------------------------------- /ribbons/github/left/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/green@2x.png -------------------------------------------------------------------------------- /ribbons/github/left/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/orange.png -------------------------------------------------------------------------------- /ribbons/github/left/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/orange@2x.png -------------------------------------------------------------------------------- /ribbons/github/left/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/red.png -------------------------------------------------------------------------------- /ribbons/github/left/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/red@2x.png -------------------------------------------------------------------------------- /ribbons/github/left/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/white.png -------------------------------------------------------------------------------- /ribbons/github/left/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/left/white@2x.png -------------------------------------------------------------------------------- /ribbons/github/right/darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/darkblue.png -------------------------------------------------------------------------------- /ribbons/github/right/darkblue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/darkblue@2x.png -------------------------------------------------------------------------------- /ribbons/github/right/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/gray.png -------------------------------------------------------------------------------- /ribbons/github/right/gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/gray@2x.png -------------------------------------------------------------------------------- /ribbons/github/right/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/green.png -------------------------------------------------------------------------------- /ribbons/github/right/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/green@2x.png -------------------------------------------------------------------------------- /ribbons/github/right/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/orange.png -------------------------------------------------------------------------------- /ribbons/github/right/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/orange@2x.png -------------------------------------------------------------------------------- /ribbons/github/right/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/red.png -------------------------------------------------------------------------------- /ribbons/github/right/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/red@2x.png -------------------------------------------------------------------------------- /ribbons/github/right/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/white.png -------------------------------------------------------------------------------- /ribbons/github/right/white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d2-projects/d2-ribbons/d94e6ca82f18d8c9ef1b9993b968dc7a4c0d5328/ribbons/github/right/white@2x.png --------------------------------------------------------------------------------