accent-color
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
시도해보기
현재 accent-color
를 지원하는 브라우저에서는 다음 HTML 요소들에 이를 적용합니다.
각각의 사용자 에이전트는 가독성과 대비를 보장하기 위해 변형된 강조 색상을 가지고 있습니다. 강조 색상은 모든 사용자 인터페이스 컨트롤이나 컨트롤의 모든 상태에 사용되는 것은 아닙니다. accent-color
는 강조 색상을 사용하는 사용자 인터페이스 컨트롤에만, 그리고 해당 색상이 적용될 수 있는 상태에만 적용됩니다.
구문
css
/* 키워드 값 */
accent-color: auto;
/* <color> 값 */
accent-color: darkred;
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: revert-layer;
accent-color: unset;
값
형식 정의
초기값 | auto |
---|---|
적용대상 | all elements |
상속 | yes |
계산 값 | auto is computed as specified and <color> values are computed as defined for the color property. |
Animation type | by computed value type |
형식 구문
예제
사용자 정의 강조 색상 설정하기
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;
}
결과
명세서
Specification |
---|
CSS Basic User Interface Module Level 4 # widget-accent |
브라우저 호환성
BCD tables only load in the browser
같이 보기
background-color
,border-color
,caret-color
,color
,column-rule-color
,outline-color
,text-decoration-color
,text-emphasis-color
,text-shadow
: 다른 색상 관련된 속성들<color>
: 연관 데이터 타입<input>
: 연관 HTML 요소