#d46349 Color
Color Codes | |
---|---|
Hex Code | #d46349 |
RGB Code | rgb(212, 99, 73) |
HSL Code | hsl(11, 62%, 56%) |
#d46349 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 99, 73); }
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(11, 62%, 56%); }
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 #d46349
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 99, 73, 10%) | #d463491a | |
rgb(212, 99, 73, 20%) | #d4634933 | |
rgb(212, 99, 73, 40%) | #d463494C | |
rgb(212, 99, 73, 60%) | #d4634999 | |
rgb(212, 99, 73, 80%) | #d46349CC | |
rgb(212, 99, 73, 100%) | #d46349FF |
Saturated and desaturated colors of #d46349
HSL Code | Preview |
---|---|
hsl(11, 10%, 56%) | |
hsl(11, 20%, 56%) | |
hsl(11, 40%, 56%) | |
hsl(11, 60%, 56%) | |
hsl(11, 80%, 56%) | |
hsl(11, 100%, 56%) |
#d46349 Color Usage In CSS
body { color: #d46349; } p { color: rgb(212, 99, 73); } header { border-bottom:1px solid #d46349; }