#d43703 Color
Color Codes | |
---|---|
Hex Code | #d43703 |
RGB Code | rgb(212, 55, 03) |
HSL Code | hsl(15, 97%, 42%) |
#d43703 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 55, 03); }
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(15, 97%, 42%); }
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 #d43703
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 55, 03, 10%) | #d437031a | |
rgb(212, 55, 03, 20%) | #d4370333 | |
rgb(212, 55, 03, 40%) | #d437034C | |
rgb(212, 55, 03, 60%) | #d4370399 | |
rgb(212, 55, 03, 80%) | #d43703CC | |
rgb(212, 55, 03, 100%) | #d43703FF |
Saturated and desaturated colors of #d43703
HSL Code | Preview |
---|---|
hsl(15, 10%, 42%) | |
hsl(15, 20%, 42%) | |
hsl(15, 40%, 42%) | |
hsl(15, 60%, 42%) | |
hsl(15, 80%, 42%) | |
hsl(15, 100%, 42%) |
#d43703 Color Usage In CSS
body { color: #d43703; } p { color: rgb(212, 55, 03); } header { border-bottom:1px solid #d43703; }