#9069bc Color
Color Codes | |
---|---|
Hex Code | #9069bc |
RGB Code | rgb(144, 105, 188) |
HSL Code | hsl(268, 38%, 57%) |
#9069bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 105, 188); }
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(268, 38%, 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 #9069bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 105, 188, 10%) | #9069bc1a | |
rgb(144, 105, 188, 20%) | #9069bc33 | |
rgb(144, 105, 188, 40%) | #9069bc4C | |
rgb(144, 105, 188, 60%) | #9069bc99 | |
rgb(144, 105, 188, 80%) | #9069bcCC | |
rgb(144, 105, 188, 100%) | #9069bcFF |
Saturated and desaturated colors of #9069bc
HSL Code | Preview |
---|---|
hsl(268, 10%, 57%) | |
hsl(268, 20%, 57%) | |
hsl(268, 40%, 57%) | |
hsl(268, 60%, 57%) | |
hsl(268, 80%, 57%) | |
hsl(268, 100%, 57%) |
#9069bc Color Usage In CSS
body { color: #9069bc; } p { color: rgb(144, 105, 188); } header { border-bottom:1px solid #9069bc; }