#e65b6b Color
Color Codes | |
---|---|
Hex Code | #e65b6b |
RGB Code | rgb(230, 91, 107) |
HSL Code | hsl(353, 74%, 63%) |
#e65b6b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 91, 107); }
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(353, 74%, 63%); }
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 #e65b6b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 91, 107, 10%) | #e65b6b1a | |
rgb(230, 91, 107, 20%) | #e65b6b33 | |
rgb(230, 91, 107, 40%) | #e65b6b4C | |
rgb(230, 91, 107, 60%) | #e65b6b99 | |
rgb(230, 91, 107, 80%) | #e65b6bCC | |
rgb(230, 91, 107, 100%) | #e65b6bFF |
Saturated and desaturated colors of #e65b6b
HSL Code | Preview |
---|---|
hsl(353, 10%, 63%) | |
hsl(353, 20%, 63%) | |
hsl(353, 40%, 63%) | |
hsl(353, 60%, 63%) | |
hsl(353, 80%, 63%) | |
hsl(353, 100%, 63%) |
#e65b6b Color Usage In CSS
body { color: #e65b6b; } p { color: rgb(230, 91, 107); } header { border-bottom:1px solid #e65b6b; }