Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

颜色 HSL 和 HSLA


HSL 计算器


 
rgb(255, 0, 0)
#ff0000


H
S
L

HSL 颜色

Edge、Chrome、Firefox、Safari、Opera 10+ 和 IE9+ 支持 HSL 颜色值。

HSL 代表色相、饱和度和亮度。

HSL 颜色值使用以下格式指定

hsl(色相, 饱和度, 亮度)


色相

色相是色轮上的一个角度,范围从 0 到 360。0(或 360)是红色,120 是绿色,240 是蓝色。


饱和度

饱和度可以描述为颜色的强度。它是一个百分比值,范围从 0% 到 100%。

100% 是全彩色,没有灰色阴影。

50% 是 50% 灰色,但您仍然可以看到颜色。

0% 是完全灰色;您再也看不到颜色了。


亮度

颜色的亮度可以描述为想要赋予颜色的光量,其中 0% 表示没有光(暗),50% 表示 50% 光(既不暗也不亮),100% 表示全光。


亲自尝试

所有主流浏览器都支持 HSL 颜色值。

示例

<style>
div {
    background-color: hsl(170, 50%, 50%);
    color: hsl(0, 50%, 50%);
}
</style>
亲自尝试 »

HSLA 颜色值

HSLA 颜色值是 HSL 颜色值的扩展,带有一个 Alpha 通道 - 用于指定颜色的不透明度。

HSLA 颜色值使用以下格式指定

hsla(色相, 饱和度, 亮度, alpha)

alpha 参数是一个介于 0.0(完全透明)和 1.0(完全不透明)之间的数字

示例

<h1 style="background-color:hsla(120, 100%, 50%, 0.2);">hsla(0, 100%, 50%, 0.2)</h1>
<h1 style="background-color:hsla(120, 100%, 50%, 0.4);">hsla(0, 100%, 50%, 0.4)</h1>
<h1 style="background-color:hsla(120, 100%, 50%, 0.6);">hsla(0, 100%, 50%, 0.6)</h1>
<h1 style="background-color:hsla(120, 100%, 50%, 0.8);">hsla(0, 100%, 50%, 0.8)</h1>
亲自尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.