有三种表示方法:
(1)色彩关键字:例如 red, blue, brown;
(2)使用RGB立体坐标(RGB cubic-coordinate)系统:十六进制符号 #RRGGBB 和#RGB,如#f00,#ff0000,RGB(255,0,0),RGB(100%,0,0)均表示红色;
(3)使用 hsl() 函数符,色相-饱和度-明度(Hue-saturation-lightness)模式,如hsl(0,100%,100%)表示红色。
红色:red,#f00,RGB(255,0,0),hsl(0,100%,100%)
绿色:green,#0f0,RGB(0,255,0),hsl(120,100%,100%)
蓝色:blue,#00f,RGB(0,0,255),hsl(240,100%,100%)
白色:white,#fff,RGB(255,255,255),hsl(0,0,100%)
黑色:black,#000,RGB(0,0,0),hsl(0,0,0)
透明黑色:rgba(0,0,0,0),hsla(0,0,0,0)
#ccc:灰色,等于rgb(204,204,204)
#eee:浅灰色,等于rgb(238,238,238)
#333:深灰色,等于rgb(51,51,51)
网友评论