#bf11e7 Color
Color Codes | |
---|---|
Hex Code | #bf11e7 |
RGB Code | rgb(191, 17, 231) |
HSL Code | hsl(289, 86%, 49%) |
#bf11e7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 17, 231); }
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(289, 86%, 49%); }
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 #bf11e7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 17, 231, 10%) | #bf11e71a | |
rgb(191, 17, 231, 20%) | #bf11e733 | |
rgb(191, 17, 231, 40%) | #bf11e74C | |
rgb(191, 17, 231, 60%) | #bf11e799 | |
rgb(191, 17, 231, 80%) | #bf11e7CC | |
rgb(191, 17, 231, 100%) | #bf11e7FF |
Saturated and desaturated colors of #bf11e7
HSL Code | Preview |
---|---|
hsl(289, 10%, 49%) | |
hsl(289, 20%, 49%) | |
hsl(289, 40%, 49%) | |
hsl(289, 60%, 49%) | |
hsl(289, 80%, 49%) | |
hsl(289, 100%, 49%) |
#bf11e7 Color Usage In CSS
body { color: #bf11e7; } p { color: rgb(191, 17, 231); } header { border-bottom:1px solid #bf11e7; }