#f3b380 Color
Color Codes | |
---|---|
Hex Code | #f3b380 |
RGB Code | rgb(243, 179, 128) |
HSL Code | hsl(27, 83%, 73%) |
#f3b380 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(243, 179, 128); }
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(27, 83%, 73%); }
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 #f3b380
RGB Code | Hex Code | Preview |
---|---|---|
rgb(243, 179, 128, 10%) | #f3b3801a | |
rgb(243, 179, 128, 20%) | #f3b38033 | |
rgb(243, 179, 128, 40%) | #f3b3804C | |
rgb(243, 179, 128, 60%) | #f3b38099 | |
rgb(243, 179, 128, 80%) | #f3b380CC | |
rgb(243, 179, 128, 100%) | #f3b380FF |
Saturated and desaturated colors of #f3b380
HSL Code | Preview |
---|---|
hsl(27, 10%, 73%) | |
hsl(27, 20%, 73%) | |
hsl(27, 40%, 73%) | |
hsl(27, 60%, 73%) | |
hsl(27, 80%, 73%) | |
hsl(27, 100%, 73%) |
#f3b380 Color Usage In CSS
body { color: #f3b380; } p { color: rgb(243, 179, 128); } header { border-bottom:1px solid #f3b380; }