/Colorful-Contributions

🎨 Make your contribution graph colorful !

Primary LanguageJavaScriptGNU General Public License v2.0GPL-2.0

Colorful Contributions

Make your contribution graph colorful !

🎨 Colorful Contributions is an chrome extension app that makes graphs colorful

📌 Pull requests and issue are welcome :)


Installation

  1. Clone or Download this repository
  2. Enter chrome://extensions/ in chrome
  3. Click on LOAD UNPACKED button
  4. Upload local repository directory

Customizing

  • Using UI on tab

    • User customizing UI
    • Refectoring
  • Direct access to code

    • Add the code you want in /css/colorful.css
    /*
        ./css/colorful.css
    */
    
    #custom-style>li:nth-child(1)
    background-color: #EBEDF0;
    ...
    #custom-style>li:nth-child(5)
    background-color: #0080FF;
    • Add the code in ./popup.html
    <!--
        ./popup.html
    -->
    
    <tr>
        <td>
            <div class="contrib-legend">
                <ul class="legend" id="custom-style"> <!--custom-style id-->
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                    <li></li>
                </ul>
            </div>
        </td>
        <td>
            <input type="radio" name="customRadio" value="custom-style"> <!--custom-style value-->
        </td>
    </tr>

Browser Support

chrome Firefox Edge IE Safari Opera
✔ - - - -

Chrome-only (chrome extension app)


© 2021 XENIA101 - Released under GPL License 2.0