From 9e249a7fd3bcb131fefbc3566214ca901a930aa8 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 27 Sep 2021 01:36:23 +0900 Subject: Web/CSS/@media/prefers-color-scheme を更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/08/13 時点の英語版に同期 --- .../web/css/@media/prefers-color-scheme/index.md | 98 +++++++++------------- 1 file changed, 39 insertions(+), 59 deletions(-) (limited to 'files/ja') diff --git a/files/ja/web/css/@media/prefers-color-scheme/index.md b/files/ja/web/css/@media/prefers-color-scheme/index.md index 270ae10125..fee34abeb6 100644 --- a/files/ja/web/css/@media/prefers-color-scheme/index.md +++ b/files/ja/web/css/@media/prefers-color-scheme/index.md @@ -6,47 +6,43 @@ tags: - CSS - Reference - Web - - prefers-color-scheme - - ウェブ - メディア特性 + - prefers-color-scheme +browser-compat: css.at-rules.media.prefers-color-scheme translation_of: Web/CSS/@media/prefers-color-scheme --- -
-

privacy.resistFingerprintingtrue に設定している場合は、 {{cssxref("@media/prefers-color-scheme", "prefers-color-scheme")}} の設定は light に上書きされます。
- あるいは、ユーザーは ui.systemUsesDarkTheme という数値設定を作成して既定の動作を上書きし、 light (値: 0)、 dark (値: 1)、 no-preference (値: 2) の何れかの値を返すようにすることもできます。 (それ以外の値を指定すると、Firefox は light を返します。)

-
- -

prefers-color-schemeCSSメディア特性で、ユーザーがシステムに要求したカラーテーマが明色か暗色かを検出するために使用します。

- -

構文

- -
-
no-preference
-
ユーザーが知られている設定をシステムに対して行っていないことを示します。このキーワード値は boolean context では false と評価されます。
-
light
-
ユーザーがシステムに、明色のテーマを持つインターフェイスを好むと通知したことを示します。
-
dark
-
ユーザーがシステムに、暗色のテーマを持つインターフェイスを好むと通知したことを示します。
+**`prefers-color-scheme`** は [CSS](/ja/docs/Web/CSS) の[メディア特性](/ja/docs/Web/CSS/Media_Queries/Using_media_queries#media_features)で、ユーザーがシステムに要求したカラーテーマが明色か暗色かを検出するために使用します。 + +ユーザーはオペレーティングシステムの設定 (ライトまたはダークモードなど) やユーザーエージェントの設定で、この設定を示す場合があります。 + +## 構文 + +- `light` + - : ユーザーがシステムに、明色のテーマを持つインターフェイスにしたいと通知したか、アクティブな設定を示さなかったことを示します。 +- `dark` + - : ユーザーがシステムに、暗色のテーマを持つインターフェイスにしたいと通知したことを示します。
-

+

-

以下の要素は初期の色のテーマを持っています。これらの要素は、ユーザーの配色の好みに応じて、さらにテーマを設定することができます。

+以下の要素は初期の色のテーマを持っています。これらの要素は、ユーザーの配色の好みに応じて、さらにテーマを設定することができます。 -

HTML

+### HTML -
<div class="day">Day (initial)</div>
-<div class="day light-scheme">Day (changes in light scheme)</div>
-<div class="day dark-scheme">Day (changes in dark scheme)</div> <br>
+```html
+
Day (initial)
+
Day (changes in light scheme)
+
Day (changes in dark scheme)

-<div class="night">Night (initial)</div> -<div class="night light-scheme">Night (changes in light scheme)</div> -<div class="night dark-scheme">Night (changes in dark scheme)</div> -
+
Night (initial)
+
Night (changes in light scheme)
+
Night (changes in dark scheme)
+``` -

CSS

+### CSS -
.day   { background: #eee; color: black; }
+```css
+.day   { background: #eee; color: black; }
 .night { background: #333; color: white; }
 
 @media (prefers-color-scheme: dark) {
@@ -66,41 +62,25 @@ translation_of: Web/CSS/@media/prefers-color-scheme
   height: 2em;
   vertical-align: middle;
 }
-
+``` -

結果

+### 結果 -

{{EmbedLiveSample("Examples")}}

+{{EmbedLiveSample("Examples")}} -

仕様書

+## 仕様書 - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('CSS5 Media Queries', '#descdef-media-prefers-color-scheme', 'prefers-color-scheme')}}{{Spec2('CSS5 Media Queries')}}初回定義
+{{Specifications}} -

ブラウザーの互換性

+## ブラウザーの互換性 -

{{Compat("css.at-rules.media.prefers-color-scheme")}}

+{{Compat}} -

関連情報

+## 関連情報 - +- [Firefox での prefers-color-scheme のシミュレーション](/ja/docs/Tools/Page_Inspector/How_to/Examine_and_edit_CSS#view_media_rules_for_prefers-color-scheme) (Firefox Page Inspector > Examine and edit CSS) +- [Video tutorial: Coding a Dark Mode for your Website](https://www.youtube.com/watch?v=jmepqJ5UbuM) +- [Redesigning your product and website for dark mode](https://stuffandnonsense.co.uk/blog/redesigning-your-product-and-website-for-dark-mode) +- 色スキームの変更: [Windows](https://blogs.windows.com/windowsexperience/2019/04/01/windows-10-tip-dark-theme-in-file-explorer/)、[macOS](https://developer.apple.com/design/human-interface-guidelines/macos/visual-design/dark-mode/)、[Android](https://www.theverge.com/2019/5/7/18530599/google-android-q-features-hands-on-dark-mode-gestures-accessibility-io-2019)、[その他のプラットフォーム](https://support.mozilla.org/en-US/questions/1271928) -
{{QuickLinksWithSubpages("/ja/docs/Web/CSS/@media/")}}
+{{QuickLinksWithSubpages("/ja/docs/Web/CSS/@media/")}} -- cgit v1.2.3-54-g00ecf