anuraghazra / CanvasFun

:heart: Creative Coding Projects

Home Page:https://anuraghazra.github.io/CanvasFun

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] GitHub Icons hard to see in Dark Mode

vikasganiga05 opened this issue Β· comments

Hi πŸ‘‹ , The GitHub icons on the README.md file are hard to see on GitHub's dark theme. It looks clearly in light theme.

Dark Mode ScreenShot

I found a solution

Apply the below changes to all the github icons images.

- <img alt="source code" width="18px;" src="./thumbnails/github_icon.png" />
+ <img width="18px" src="https://user-images.githubusercontent.com/3369400/139447912-e0f43f33-6d9f-45f8-be46-2df5bbc91289.png#gh-dark-mode-only" />
+ <img width="18px" src="https://user-images.githubusercontent.com/3369400/139448065-39a229ba-4b06-434b-bc67-616e2ed80c8f.png#gh-light-mode-only" />

Preview

It will change GitHub image according to the GitHub theme your set. πŸ‘‡
Want to know more click here -> Specify theme context for images in Markdown

image