タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

CSSとdarkmodeに関するbraitomのブックマーク (1)

  • Dark mode in a website with CSS

    This site has a dark mode and a light one. Which mode you see depends on the setting of your device. Try it! The instant change in appearance is accomplished by this appendix to the style sheet: @media (prefers-color-scheme: dark) { body { background-color: #444; color: #e4e4e4; } a { color: #e39777; } img { filter: grayscale(30%); } } This works in Firefox, Safari, and Chrome among other browsers

    Dark mode in a website with CSS
    braitom
    braitom 2019/10/10
    prefers-color-schemeを使ってのCSSによるDark mode設定方法について。
  • 1