├── .editorconfig
├── .gitignore
├── README.md
├── index.html
├── invisible-background.png
└── logo.png
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | indent_style = space
5 | indent_size = 2
6 | end_of_line = lf
7 | charset = utf-8
8 | trim_trailing_whitespace = true
9 | insert_final_newline = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | *.log
2 | .DS_Store
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # slogan
2 |
3 |
4 |
5 | Slogan: generate logo for open-source projects ♨️ 👉 https://slogan.egoist.sh/
6 |
7 | ## Who's using this?
8 |
9 | - [hack](https://github.com/egoist/hack)
10 | - [vuepack](https://github.com/egoist/vuepack)
11 | - [eva.js](https://github.com/egoist/eva.js)
12 | - [bubleup](https://github.com/egoist/bubleup)
13 |
14 | ## License
15 |
16 | MIT © [EGOIST](https://github.com/egoist)
17 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |