W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> #p1 {background-color:hsl(120,100%,50%);} #p2 {background-color:hsl(120,100%,75%);} #p3 {background-color:hsl(120,100%,25%);} #p4 {background-color:hsl(120,60%,70%);} #p5 {background-color:hsl(290,100%,50%);} #p6 {background-color:hsl(290,60%,70%);} </style> </head> <body> <p>HSL 颜色:</p> <p id="p1">绿色</p> <p id="p2">浅绿色</p> <p id="p3">深绿色</p> <p id="p4">淡绿色</p> <p id="p5">紫色</p> <p id="p6">淡紫色</p> </body> </html>