#d14043 Color
Color Codes | |
---|---|
Hex Code | #d14043 |
RGB Code | rgb(209, 64, 67) |
HSL Code | hsl(359, 61%, 54%) |
#d14043 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 64, 67); }
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(359, 61%, 54%); }
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 #d14043
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 64, 67, 10%) | #d140431a | |
rgb(209, 64, 67, 20%) | #d1404333 | |
rgb(209, 64, 67, 40%) | #d140434C | |
rgb(209, 64, 67, 60%) | #d1404399 | |
rgb(209, 64, 67, 80%) | #d14043CC | |
rgb(209, 64, 67, 100%) | #d14043FF |
Saturated and desaturated colors of #d14043
HSL Code | Preview |
---|---|
hsl(359, 10%, 54%) | |
hsl(359, 20%, 54%) | |
hsl(359, 40%, 54%) | |
hsl(359, 60%, 54%) | |
hsl(359, 80%, 54%) | |
hsl(359, 100%, 54%) |
#d14043 Color Usage In CSS
body { color: #d14043; } p { color: rgb(209, 64, 67); } header { border-bottom:1px solid #d14043; }