To maintain some project patterns, we've added this contribution guide for help those who want to contribute to this project.
- Fork this project: (https://github.com/github-unicorn/github-unicorn/fork)
- Clone the forked repository and create a new branch: (
git checkout -b branch_name) - Commit your changes: (
git commit -m 'Type: small description')- Available Types (replace in Type): add|feat|fix|docs|theme
- Push commited changes: (
git push origin branch_name) - Create a new Pull Request (if it is your first PR, follow this tutorial to understand how it does)
- First, you need to fill all color levels and give a name to the new theme. So, add the code below at the themes.json file with your changes:
,
"Theme_Name": {
"lv1": "#",
"lv2": "#",
"lv3": "#",
"lv4": "#"
}- After this, add a new select option on popup.html file:
<option value="Theme_Name">Theme Name</option>- Finally, add in alphabetical order the name of the new theme on the Available themes list in the README file:
<li> Theme Name </li>