#bc3065 Color
Color Codes | |
---|---|
Hex Code | #bc3065 |
RGB Code | rgb(188, 48, 101) |
HSL Code | hsl(337, 59%, 46%) |
#bc3065 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 48, 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(337, 59%, 46%); }
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 #bc3065
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 48, 101, 10%) | #bc30651a | |
rgb(188, 48, 101, 20%) | #bc306533 | |
rgb(188, 48, 101, 40%) | #bc30654C | |
rgb(188, 48, 101, 60%) | #bc306599 | |
rgb(188, 48, 101, 80%) | #bc3065CC | |
rgb(188, 48, 101, 100%) | #bc3065FF |
Saturated and desaturated colors of #bc3065
HSL Code | Preview |
---|---|
hsl(337, 10%, 46%) | |
hsl(337, 20%, 46%) | |
hsl(337, 40%, 46%) | |
hsl(337, 60%, 46%) | |
hsl(337, 80%, 46%) | |
hsl(337, 100%, 46%) |
#bc3065 Color Usage In CSS
body { color: #bc3065; } p { color: rgb(188, 48, 101); } header { border-bottom:1px solid #bc3065; }