├── .gitattributes ├── logo-white-bg.png ├── logo.ai ├── logo.png ├── logo.svg ├── popsicle.ai ├── popsicle.png ├── popsicle.svg ├── readme.md ├── sad-panda.ai ├── sad-panda.png ├── sad-panda.svg ├── twitter-bg.ai └── twitter-bg.png /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.ai binary 3 | -------------------------------------------------------------------------------- /logo-white-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/logo-white-bg.png -------------------------------------------------------------------------------- /logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/logo.ai -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsicle.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/popsicle.ai -------------------------------------------------------------------------------- /popsicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/popsicle.png -------------------------------------------------------------------------------- /popsicle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Media 2 | 3 | > TasteJS logo and artwork 4 | 5 | ![](logo.png) 6 | 7 | Created by [Leonardo Maia](http://leonardomaia.com.br). 8 | 9 | Media for TodoMVC can be found in its [repo](https://github.com/tastejs/todomvc/tree/master/media). 10 | 11 | 12 | ## License 13 | 14 | [![Creative Commons License](http://i.creativecommons.org/l/by/4.0/80x15.png)](http://creativecommons.org/licenses/by/4.0/) © TasteJS 15 | -------------------------------------------------------------------------------- /sad-panda.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/sad-panda.ai -------------------------------------------------------------------------------- /sad-panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/sad-panda.png -------------------------------------------------------------------------------- /sad-panda.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /twitter-bg.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/twitter-bg.ai -------------------------------------------------------------------------------- /twitter-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tastejs/media/3a3082dcf77dfe7667a0c9c68616f471c747cee9/twitter-bg.png --------------------------------------------------------------------------------