1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
---
title: accent-color
slug: Web/CSS/accent-color
tags:
- CSS
- CSS プロパティ
- CSS ユーザーインターフェイス
- HTML 色
- Input
- リファレンス
- HTML 整形
- accent-color
- recipe:css-property
browser-compat: css.properties.accent-color
translation_of: Web/CSS/accent-color
---
{{CSSRef}}
**`accent-color`** は [CSS](/ja/docs/Web/CSS) のプロパティで、一部の要素で生成されるユーザーインターフェイス要素の{{Glossary("accent", "強調表示")}}色を設定します。
{{EmbedInteractiveExample("pages/css/accent-color.html")}}
現在 `accent-color` に対応しているブラウザーは、以下の HTML 要素に適用します。
- [`<input type="checkbox">`](/ja/docs/Web/HTML/Element/input/checkbox)
- [`<input type="radio">`](/ja/docs/Web/HTML/Element/input/radio)
- [`<input type="range">`](/ja/docs/Web/HTML/Element/input/range)
- [`<progress>`](/ja/docs/Web/HTML/Element/progress)
## 構文
```css
/* キーワード値 */
accent-color: auto;
/* <color> 値 */
accent-color: red;
accent-color: #5729e9;
accent-color: rgb(0, 200, 0);
accent-color: hsl(228, 4%, 24%);
/* グローバル値 */
accent-color: inherit;
accent-color: initial;
accent-color: revert;
accent-color: unset;
```
### 値
- `auto`
- : UA が選択した色を表します。プラットフォームの強調色がある場合は、それと一致します。
- {{cssxref("<color>")}}
- : 強調色として使用される色を指定します。
## 公式定義
{{cssinfo}}
## 形式文法
{{csssyntax}}
## 例
### 独自の強調色を設定
#### HTML
```html
<input type="checkbox" checked />
<input type="checkbox" class="custom" checked />
```
#### CSS
```css
input {
accent-color: auto;
display: block;
width: 30px;
height: 30px;
}
input.custom {
accent-color: rebeccapurple;
}
```
#### 結果
{{EmbedLiveSample('Setting_a_custom_accent_color', 500, 200)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- {{HTMLElement("input")}} 要素
- [CSS を使った HTML の要素への色の適用](/ja/docs/Web/HTML/Applying_color)
- {{cssxref("<color>")}} データ型
- その他の色に関するプロパティ: {{cssxref("color")}}, {{cssxref("background-color")}}, {{cssxref("border-color")}}, {{cssxref("outline-color")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-emphasis-color")}}, {{cssxref("text-shadow")}}, {{cssxref("caret-color")}}, {{cssxref("column-rule-color")}}
|