#f3b174 Color
Color Codes | |
---|---|
Hex Code | #f3b174 |
RGB Code | rgb(243, 177, 116) |
HSL Code | hsl(29, 84%, 70%) |
#f3b174 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 177, 116); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(29, 84%, 70%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #f3b174
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 177, 116, 10%) | #f3b1741a | |
rgb(243, 177, 116, 20%) | #f3b17433 | |
rgb(243, 177, 116, 40%) | #f3b1744C | |
rgb(243, 177, 116, 60%) | #f3b17499 | |
rgb(243, 177, 116, 80%) | #f3b174CC | |
rgb(243, 177, 116, 100%) | #f3b174FF |
Saturated and desaturated colors of #f3b174
HSL Code | Preview |
---|---|
hsl(29, 10%, 70%) | |
hsl(29, 20%, 70%) | |
hsl(29, 40%, 70%) | |
hsl(29, 60%, 70%) | |
hsl(29, 80%, 70%) | |
hsl(29, 100%, 70%) |
#f3b174 Color Usage In CSS
body { color: #f3b174; } p { color: rgb(243, 177, 116); } header { border-bottom:1px solid #f3b174; }