#d45b28 Color
Color Codes | |
---|---|
Hex Code | #d45b28 |
RGB Code | rgb(212, 91, 40) |
HSL Code | hsl(18, 68%, 49%) |
#d45b28 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 91, 40); }
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(18, 68%, 49%); }
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 #d45b28
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 91, 40, 10%) | #d45b281a | |
rgb(212, 91, 40, 20%) | #d45b2833 | |
rgb(212, 91, 40, 40%) | #d45b284C | |
rgb(212, 91, 40, 60%) | #d45b2899 | |
rgb(212, 91, 40, 80%) | #d45b28CC | |
rgb(212, 91, 40, 100%) | #d45b28FF |
Saturated and desaturated colors of #d45b28
HSL Code | Preview |
---|---|
hsl(18, 10%, 49%) | |
hsl(18, 20%, 49%) | |
hsl(18, 40%, 49%) | |
hsl(18, 60%, 49%) | |
hsl(18, 80%, 49%) | |
hsl(18, 100%, 49%) |
#d45b28 Color Usage In CSS
body { color: #d45b28; } p { color: rgb(212, 91, 40); } header { border-bottom:1px solid #d45b28; }