LoopPerfect / buckaroo

The decentralized package manager for C++ and friends 🏝️
https://buckaroo.pm
MIT License
933 stars 33 forks source link

README optimized for dark mode #379

Open oberrich opened 2 years ago

oberrich commented 2 years ago

Currently the Buckaroo logo as well as the How Buckaroo Works image aren't optimized for dark mode in the README. A possible solution for this would be to include an svg instead of a png and to add something like this:

<style>
  path {
    fill: #000;
  }
  @media (prefers-color-scheme: dark) {
    path {
      fill: #fff;
    }
  }
</style>

_See https://www.reddit.com/r/github/comments/knb6c6/comment/gizm69r/?utm_source=share&utm_medium=web2x&context=3_