1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

CSSでダークモード時のスタイルを指定する

Posted at

prefers-color-scheme: darkの中にダークモード時のスタイルを記述する

@charset "UTF-8";

body {
    color: #333;
}

/* ダークモード */
@media (prefers-color-scheme: dark) {
    body {
        background: #333;
        color: #fff;
    }
}

その他

2020年8月時点でIEは未対応
https://caniuse.com/#feat=mdn-css_at-rules_media_prefers-color-scheme

@media (prefers-color-scheme: light) もある
https://developer.mozilla.org/ja/docs/Web/CSS/@media/prefers-color-scheme

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?