#d6414f Color
Color Codes | |
---|---|
Hex Code | #d6414f |
RGB Code | rgb(214, 65, 79) |
HSL Code | hsl(354, 65%, 55%) |
#d6414f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 65, 79); }
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(354, 65%, 55%); }
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 #d6414f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 65, 79, 10%) | #d6414f1a | |
rgb(214, 65, 79, 20%) | #d6414f33 | |
rgb(214, 65, 79, 40%) | #d6414f4C | |
rgb(214, 65, 79, 60%) | #d6414f99 | |
rgb(214, 65, 79, 80%) | #d6414fCC | |
rgb(214, 65, 79, 100%) | #d6414fFF |
Saturated and desaturated colors of #d6414f
HSL Code | Preview |
---|---|
hsl(354, 10%, 55%) | |
hsl(354, 20%, 55%) | |
hsl(354, 40%, 55%) | |
hsl(354, 60%, 55%) | |
hsl(354, 80%, 55%) | |
hsl(354, 100%, 55%) |
#d6414f Color Usage In CSS
body { color: #d6414f; } p { color: rgb(214, 65, 79); } header { border-bottom:1px solid #d6414f; }