• #dev 2023-11-09
  • Prev
    Next
  • #indieweb
  • #dev
  • #wordpress
  • #meta
  • #stream
  • #microformats
  • #known
  • #events
#dev ≡
  • ←
  • →
2023-11-09 UTC
# 09:56
Loqi
[preview] [BMO] SVG allows you to embed CSS. CSS can detect dark mode. Make your favicons in SVG!Simple example:<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"> <style> @media (prefers-color-scheme: dark) { .r {fill: white} } </style> ...