#430956 Color
Color Codes | |
---|---|
Hex Code | #430956 |
RGB Code | rgb(67, 09, 86) |
HSL Code | hsl(285, 81%, 19%) |
#430956 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(67, 09, 86); }
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(285, 81%, 19%); }
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 #430956
RGB Code | Hex Code | Preview |
---|---|---|
rgb(67, 09, 86, 10%) | #4309561a | |
rgb(67, 09, 86, 20%) | #43095633 | |
rgb(67, 09, 86, 40%) | #4309564C | |
rgb(67, 09, 86, 60%) | #43095699 | |
rgb(67, 09, 86, 80%) | #430956CC | |
rgb(67, 09, 86, 100%) | #430956FF |
Saturated and desaturated colors of #430956
HSL Code | Preview |
---|---|
hsl(285, 10%, 19%) | |
hsl(285, 20%, 19%) | |
hsl(285, 40%, 19%) | |
hsl(285, 60%, 19%) | |
hsl(285, 80%, 19%) | |
hsl(285, 100%, 19%) |
#430956 Color Usage In CSS
body { color: #430956; } p { color: rgb(67, 09, 86); } header { border-bottom:1px solid #430956; }