CSS 데모: outline-color 데모 버튼을 클릭해 보세요!
selector {
    outline-color: <색상>
}
/* <색상> 값: CSS에서 지원하는 색상 값 */
outline-color: blue;
outline-color: #00a0e9;
outline-color: rgba(0, 0, 0, 0.5);
outline-color: currentcolor; /* 현재 요소의 글자색 */

/* 전역 값 */
outline-color: inherit;
outline-color: initial;
outline-color: revert;
outline-color: revert-layer;
outline-color: unset;
<p>outline(외곽선) 색상의 초깃값</p>
p {
    color: red;
    outline-width: 7px;
    outline-style: solid;
    /* outline(외곽선) 색상은 글자색인 red로 설정된다. */
} 

/* 요소에 마우스를 올려 놓았을 동안에는
   outline(외곽선) 색상은 글자색인 blue로 설정된다. */
p:hover {
    color: blue;
}
실제 적용된 모습 요소에 마우스 커서를 올려 보세요.
요소에 마우스 커서를 올려 놓았을 동안에는 outline(외곽선) 색상이 글자색인 blue로 설정됩니다.
<button>포커스 스타일 버튼</button>
button {
    border: 1px solid #6699ff;
    padding: 0.8em;
    border-radius: 0.4em;
    background-color: #e6eeff;
}
button:focus { /*  포커스 스타일을 설정 */
    background-color: #ccddff;
    outline-width: 2px;
    outline-style: dashed;
    outline-color: #003cb3;
    outline-offset: 3px;
}
실제 적용된 모습 버튼을 클릭하려고 누르면 포커스됩니다.