#ae00c8 Color
Color Codes | |
---|---|
Hex Code | #ae00c8 |
RGB Code | rgb(174, 00, 200) |
HSL Code | hsl(292, 100%, 39%) |
#ae00c8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 00, 200); }
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(292, 100%, 39%); }
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 #ae00c8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 00, 200, 10%) | #ae00c81a | |
rgb(174, 00, 200, 20%) | #ae00c833 | |
rgb(174, 00, 200, 40%) | #ae00c84C | |
rgb(174, 00, 200, 60%) | #ae00c899 | |
rgb(174, 00, 200, 80%) | #ae00c8CC | |
rgb(174, 00, 200, 100%) | #ae00c8FF |
Saturated and desaturated colors of #ae00c8
HSL Code | Preview |
---|---|
hsl(292, 10%, 39%) | |
hsl(292, 20%, 39%) | |
hsl(292, 40%, 39%) | |
hsl(292, 60%, 39%) | |
hsl(292, 80%, 39%) | |
hsl(292, 100%, 39%) |
#ae00c8 Color Usage In CSS
body { color: #ae00c8; } p { color: rgb(174, 00, 200); } header { border-bottom:1px solid #ae00c8; }