#bc4f64 Color
Color Codes | |
---|---|
Hex Code | #bc4f64 |
RGB Code | rgb(188, 79, 100) |
HSL Code | hsl(348, 45%, 52%) |
#bc4f64 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 79, 100); }
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(348, 45%, 52%); }
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 #bc4f64
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 79, 100, 10%) | #bc4f641a | |
rgb(188, 79, 100, 20%) | #bc4f6433 | |
rgb(188, 79, 100, 40%) | #bc4f644C | |
rgb(188, 79, 100, 60%) | #bc4f6499 | |
rgb(188, 79, 100, 80%) | #bc4f64CC | |
rgb(188, 79, 100, 100%) | #bc4f64FF |
Saturated and desaturated colors of #bc4f64
HSL Code | Preview |
---|---|
hsl(348, 10%, 52%) | |
hsl(348, 20%, 52%) | |
hsl(348, 40%, 52%) | |
hsl(348, 60%, 52%) | |
hsl(348, 80%, 52%) | |
hsl(348, 100%, 52%) |
#bc4f64 Color Usage In CSS
body { color: #bc4f64; } p { color: rgb(188, 79, 100); } header { border-bottom:1px solid #bc4f64; }