#bf4097 Color
Color Codes | |
---|---|
Hex Code | #bf4097 |
RGB Code | rgb(191, 64, 151) |
HSL Code | hsl(319, 50%, 50%) |
#bf4097 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 64, 151); }
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(319, 50%, 50%); }
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 #bf4097
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 64, 151, 10%) | #bf40971a | |
rgb(191, 64, 151, 20%) | #bf409733 | |
rgb(191, 64, 151, 40%) | #bf40974C | |
rgb(191, 64, 151, 60%) | #bf409799 | |
rgb(191, 64, 151, 80%) | #bf4097CC | |
rgb(191, 64, 151, 100%) | #bf4097FF |
Saturated and desaturated colors of #bf4097
HSL Code | Preview |
---|---|
hsl(319, 10%, 50%) | |
hsl(319, 20%, 50%) | |
hsl(319, 40%, 50%) | |
hsl(319, 60%, 50%) | |
hsl(319, 80%, 50%) | |
hsl(319, 100%, 50%) |
#bf4097 Color Usage In CSS
body { color: #bf4097; } p { color: rgb(191, 64, 151); } header { border-bottom:1px solid #bf4097; }