#b35fc6 Color
Color Codes | |
---|---|
Hex Code | #b35fc6 |
RGB Code | rgb(179, 95, 198) |
HSL Code | hsl(289, 47%, 57%) |
#b35fc6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(179, 95, 198); }
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, 47%, 57%); }
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 #b35fc6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(179, 95, 198, 10%) | #b35fc61a | |
rgb(179, 95, 198, 20%) | #b35fc633 | |
rgb(179, 95, 198, 40%) | #b35fc64C | |
rgb(179, 95, 198, 60%) | #b35fc699 | |
rgb(179, 95, 198, 80%) | #b35fc6CC | |
rgb(179, 95, 198, 100%) | #b35fc6FF |
Saturated and desaturated colors of #b35fc6
HSL Code | Preview |
---|---|
hsl(289, 10%, 57%) | |
hsl(289, 20%, 57%) | |
hsl(289, 40%, 57%) | |
hsl(289, 60%, 57%) | |
hsl(289, 80%, 57%) | |
hsl(289, 100%, 57%) |
#b35fc6 Color Usage In CSS
body { color: #b35fc6; } p { color: rgb(179, 95, 198); } header { border-bottom:1px solid #b35fc6; }