CSS 데모: color 데모 버튼을 클릭해 보세요!
/* 키워드 값 */
color: currentcolor;

/* 컬러 이름 값 */
color: green;
color: orange;
color: darkslateblue;

/* 16진수(hex) 값 */
color: #f00; /* 빨강 */
color: #ff6347; /* 토마토색 */
color: #ff6347aa; /* 토마토색, 반투명 */

/* rgb() 값 */
color: rgb(255, 99, 71, 0.8); /* 토마토 */
color: rgba(255, 99, 71, 0.8); /* 토마토, 투명도 */
color: rgb(255 99 71 / 0.5); /* 토마토, 50% 투명도 */
color: rgba(255 99 71 / 0.3); /* 토마토, 30% 투명도 */
color: rgb(255 99 71 / 60%); /* 토마토, 60% 투명도 */
color: rgba(255.6 99 71 / 40%); /* 토마토, 40% 투명도 */

/* hsl() 값 */
color: hsl(120, 100%, 25%, 0.5); /* 녹색 */
color: hsla(120, 100%, 25%, 0.5); /* 녹색, 투명도 */
color: hsl(120 100% 25% / 0.5); /* 녹색, 투명도 */
color: hsla(120 100% 25% / 50%); /* 녹색, 50% 투명도 */
color: hsl(120 100% 25% / 70%); /* 녹색, 70% 투명도 */
color: hsla(120.2 100% 25% / 80%); /* 녹색, 80% 투명도 */

/* 글로벌 값 */
color: inherit;
color: initial;
color: unset;
selector {
    color: /* value */
}
/* 그라디언트 값은 사용할 수 없습니다. */
color: linear-gradient(#f69d3c, #3f87a6);
<p>텍스트 색상에 그라디언트를 적용</p>
p {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(red, blue);
}
실제 적용된 모습
<p>환영합니다. 반갑습니다!😃</p>
p {
    color: red;
}
실제 적용된 모습
<div>
    <p>currentcolor</p>
</div>
/* 부모 요소 */
div {
  color: blue;
}

/* 자식 요소 */
p {
  color: currentcolor; /* 부모 요소의 색상 값인 blue를 참조 */
}
실제 적용된 모습