#d60a24 Color
Color Codes | |
---|---|
Hex Code | #d60a24 |
RGB Code | rgb(214, 10, 36) |
HSL Code | hsl(352, 91%, 44%) |
#d60a24 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 10, 36); }
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(352, 91%, 44%); }
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 #d60a24
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 10, 36, 10%) | #d60a241a | |
rgb(214, 10, 36, 20%) | #d60a2433 | |
rgb(214, 10, 36, 40%) | #d60a244C | |
rgb(214, 10, 36, 60%) | #d60a2499 | |
rgb(214, 10, 36, 80%) | #d60a24CC | |
rgb(214, 10, 36, 100%) | #d60a24FF |
Saturated and desaturated colors of #d60a24
HSL Code | Preview |
---|---|
hsl(352, 10%, 44%) | |
hsl(352, 20%, 44%) | |
hsl(352, 40%, 44%) | |
hsl(352, 60%, 44%) | |
hsl(352, 80%, 44%) | |
hsl(352, 100%, 44%) |
#d60a24 Color Usage In CSS
body { color: #d60a24; } p { color: rgb(214, 10, 36); } header { border-bottom:1px solid #d60a24; }