#b27f91 Color
Color Codes | |
---|---|
Hex Code | #b27f91 |
RGB Code | rgb(178, 127, 145) |
HSL Code | hsl(339, 25%, 60%) |
#b27f91 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(178, 127, 145); }
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(339, 25%, 60%); }
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 #b27f91
RGB Code | Hex Code | Preview |
---|---|---|
rgb(178, 127, 145, 10%) | #b27f911a | |
rgb(178, 127, 145, 20%) | #b27f9133 | |
rgb(178, 127, 145, 40%) | #b27f914C | |
rgb(178, 127, 145, 60%) | #b27f9199 | |
rgb(178, 127, 145, 80%) | #b27f91CC | |
rgb(178, 127, 145, 100%) | #b27f91FF |
Saturated and desaturated colors of #b27f91
HSL Code | Preview |
---|---|
hsl(339, 10%, 60%) | |
hsl(339, 20%, 60%) | |
hsl(339, 40%, 60%) | |
hsl(339, 60%, 60%) | |
hsl(339, 80%, 60%) | |
hsl(339, 100%, 60%) |
#b27f91 Color Usage In CSS
body { color: #b27f91; } p { color: rgb(178, 127, 145); } header { border-bottom:1px solid #b27f91; }