#b04669 Color
Color Codes | |
---|---|
Hex Code | #b04669 |
RGB Code | rgb(176, 70, 105) |
HSL Code | hsl(340, 43%, 48%) |
#b04669 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 70, 105); }
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(340, 43%, 48%); }
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 #b04669
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 70, 105, 10%) | #b046691a | |
rgb(176, 70, 105, 20%) | #b0466933 | |
rgb(176, 70, 105, 40%) | #b046694C | |
rgb(176, 70, 105, 60%) | #b0466999 | |
rgb(176, 70, 105, 80%) | #b04669CC | |
rgb(176, 70, 105, 100%) | #b04669FF |
Saturated and desaturated colors of #b04669
HSL Code | Preview |
---|---|
hsl(340, 10%, 48%) | |
hsl(340, 20%, 48%) | |
hsl(340, 40%, 48%) | |
hsl(340, 60%, 48%) | |
hsl(340, 80%, 48%) | |
hsl(340, 100%, 48%) |
#b04669 Color Usage In CSS
body { color: #b04669; } p { color: rgb(176, 70, 105); } header { border-bottom:1px solid #b04669; }