HSV에서 HSL로
디자인 시스템에서 다양한 색상 조작을 위해 HSV 색상 값을 HSL로 변환합니다.
색상 변환기
HSL Output
HSL Values
0-360° color wheel position
0-100% color intensity
0-100% brightness
hsl(0°, 100%, 50%)
추가 형식
HSV Value
hsv(0°, 100%, 100%)
RGB Value
rgb(255, 0, 0)
CSS 사용
color: hsl(0°, 100%, 50%);
background-color: hsl(0°, 100%, 50%);
전환 인사이트
이 생생한 빨간색은 두 색상 모델 모두에서 완전한 채도를 유지하지만 밝기 측정값이 달라 값(HSV)과 명도(HSL) 간의 주요 차이점을 보여줍니다.
변환 예제
생생한 레드
포레스트 그린
로얄 블루
소프트 핑크
뮤티드 퍼플
그레이 톤
권장 도구
이 도구에 관하여
HSV-HSL 변환기는 두 가지 직관적인 색상 모델 간의 원활한 전환을 용이하게 하며, 각각은 서로 다른 디자인 작업과 워크플로에 대해 뚜렷한 장점을 제공합니다.
HSV (Hue, Saturation, Value) represents colors based on human perception, with Value controlling the brightness from black to full color. This makes it particularly intuitive for tasks like adjusting lightness while preserving chromatic intensity, common in interface design.
HSL (Hue, Saturation, Lightness) structures color around perceived lightness, with Lightness ranging from black through the pure color to white. This model excels at creating consistent color scales and harmonies, as equal increments in lightness produce perceptually consistent steps.
두 모델 모두 색조와 채도 구성 요소를 공유하지만, 밝기(명도 대 명도) 처리 방식은 근본적으로 다릅니다. 이 변환기는 정밀한 수학적 알고리즘을 사용하여 시각적 일관성을 유지하면서 두 모델 간의 변환을 수행하므로 디자이너는 워크플로우 전반에 걸쳐 각 모델의 장점을 활용할 수 있습니다.