Color
RGB, RGBA
RGB (Red, Green, Blue)
- r: Red, 紅色, 0 ~ 255 或 0% ~ 100%
- g: Green, 綠色, 0 ~ 255 或 0% ~ 100%
- b: Blue, 藍色, 0 ~ 255 或 0% ~ 100%
- a: Alpha, 不透明度, 0% ~ 100%
HSL, HSLA
- h: Hue, 色相
- s: Saturation, 飽和度
- l: Lightness, 亮度
- a: Alpha, 不透明度
語法
十進位 255 = 十六進位 FF
紅色
background-color: red;
background-color: #ff0000;
background-color: rgb(255,0,0);
background-color: hsl(0, 100%, 50%);
黃色
background-color: yellow;
background-color: #ffff00;
background-color: rgb(255,255,0);
background-color: hsl(60, 100%, 50%);
白色
background-color: white;
background-color: #ffffff;
background-color: rgb(255,255,255);
黑色
background-color: black;
background-color: #000000;
background-color: rgb(0,0,0);