#c14de7 Color
Color Codes | |
---|---|
Hex Code | #c14de7 |
RGB Code | rgb(193, 77, 231) |
HSL Code | hsl(285, 76%, 60%) |
#c14de7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 77, 231); }
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, 76%, 60%); }
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 #c14de7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 77, 231, 10%) | #c14de71a | |
rgb(193, 77, 231, 20%) | #c14de733 | |
rgb(193, 77, 231, 40%) | #c14de74C | |
rgb(193, 77, 231, 60%) | #c14de799 | |
rgb(193, 77, 231, 80%) | #c14de7CC | |
rgb(193, 77, 231, 100%) | #c14de7FF |
Saturated and desaturated colors of #c14de7
HSL Code | Preview |
---|---|
hsl(285, 10%, 60%) | |
hsl(285, 20%, 60%) | |
hsl(285, 40%, 60%) | |
hsl(285, 60%, 60%) | |
hsl(285, 80%, 60%) | |
hsl(285, 100%, 60%) |
#c14de7 Color Usage In CSS
body { color: #c14de7; } p { color: rgb(193, 77, 231); } header { border-bottom:1px solid #c14de7; }