Dark mode support for language card #3441
-
Describe the bugThe language card doesn't seem to reflect in dark mode, no matter what I do. Expected behaviorNo response Screenshots / Live demo linkAdditional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hey, @theja-vanka! Looks like you have made an error inside <div align='center'>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github-readme-stats.vercel.app/api?username=theja-vanka&show_icons=true&count_private=true&include_all_commits=true&custom_title=My%20Stats&hide_border=true&theme=github_dark">
<img src='https://github-readme-stats.vercel.app/api?username=theja-vanka&show_icons=true&count_private=true&include_all_commits=true&custom_title=My%20Stats&hide_border=true' alt='My-Github-Stats'>
</picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://github-readme-stats.vercel.app/api/top-langs/?username=theja-vanka&custom_title=Extensions&langs_count=3&hide_border=true&hide=html%23css%23MATLAB&theme=github_dark">
<img src='https://github-readme-stats.vercel.app/api/top-langs/?username=theja-vanka&custom_title=Extensions&langs_count=3&hide_border=true&hide=html%23css%23MATLAB' alt='Top-Extensions'>
</picture>
</div> |
Beta Was this translation helpful? Give feedback.
-
Thank you very much. It worked like a charm !! Keep up the good work. |
Beta Was this translation helpful? Give feedback.
-
Hey, I just noticed that by adding ignore languages with %23 doesn't hide the language in the card. If you see the output above, HTML is clearly shown despite being added to ignore language. |
Beta Was this translation helpful? Give feedback.
Hey, @theja-vanka! Looks like you have made an error inside
hide
querystring parameter value and all parameters listed after it does not affect on the card. I made this to work by replacing&hide=html,css,MATLAB
with&hide=html%23css%23MATLAB
inside your querystring.