A simple tool to customize your GitHub contributions graph with any color, theme, and display mode you want.
Perfect for adding a personal touch to your README β quick and easy, ready in seconds through the website.
See your graph here: https://gitcolors.vercel.app
- Go to https://gitcolors.vercel.app
- Enter your GitHub username
- Customize the graph
- Copy the image
- Paste into your README
- π Rainbow
- π Sunset
- π Wave
- π Girly
- π» Dev
- π Rainbow2
- β¨ Pink
- π GitHub contributions graph in any color you want
Updates automatically based on your GitHub activity- π Supports both light and dark themes
- β‘ Easy to integrate into any README or portfolio
- π» Dedicated website to generate and view your graph
- β¨ Beautiful preset themes like Rainbow, Sunset and more
- π View contributions by intensity or simply contributed / not contributed
You can also hit the API directly to generate the image, without going through the site:
https://gitcolors.vercel.app/api/svg?username=YOUR_USERNAME&color=HEX&theme=dark|light&mode=solid|levels&preset=rainbow|sunset|wave|girly|dev
colorβ hex color, no#(used whenpresetisn't set)themeβdarkorlightmodeβsolid(flat color) orlevels(intensity-based)presetβ overridescolorwith a built-in palette (rainbow,sunset,wave,girly,dev)
If you want an image that automatically switches between dark and light depending on the user's system theme, you can set it up like this:
<a href="https://gitcolors.vercel.app" target="_blank" rel="noopener">
<picture>
<source srcset="https://gitcolors.vercel.app/api/svg?username=a104437ana&color=ff2d95&theme=dark&mode=mono&preset=dev" media="(prefers-color-scheme: dark)" />
<source srcset="https://gitcolors.vercel.app/api/svg?username=a104437ana&color=ff2d95&theme=light&mode=mono&preset=dev" media="(prefers-color-scheme: light)" />
<img src="https://gitcolors.vercel.app/api/svg?username=a104437ana&color=ff2d95&theme=light&mode=mono&preset=dev" alt="a104437ana contributions" width="1000" />
</picture>
</a>Then just replace the values (username, color, theme, mode, preset) with whatever you'd like, following the options described in the API section above.
If you like this project, please consider giving it a star β