#bd0a65 Color
Color Codes | |
---|---|
Hex Code | #bd0a65 |
RGB Code | rgb(189, 10, 101) |
HSL Code | hsl(329, 90%, 39%) |
#bd0a65 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(189, 10, 101); }
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(329, 90%, 39%); }
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 #bd0a65
RGB Code | Hex Code | Preview |
---|---|---|
rgb(189, 10, 101, 10%) | #bd0a651a | |
rgb(189, 10, 101, 20%) | #bd0a6533 | |
rgb(189, 10, 101, 40%) | #bd0a654C | |
rgb(189, 10, 101, 60%) | #bd0a6599 | |
rgb(189, 10, 101, 80%) | #bd0a65CC | |
rgb(189, 10, 101, 100%) | #bd0a65FF |
Saturated and desaturated colors of #bd0a65
HSL Code | Preview |
---|---|
hsl(329, 10%, 39%) | |
hsl(329, 20%, 39%) | |
hsl(329, 40%, 39%) | |
hsl(329, 60%, 39%) | |
hsl(329, 80%, 39%) | |
hsl(329, 100%, 39%) |
#bd0a65 Color Usage In CSS
body { color: #bd0a65; } p { color: rgb(189, 10, 101); } header { border-bottom:1px solid #bd0a65; }