#ffaee5 Color
Color Codes | |
---|---|
Hex Code | #ffaee5 |
RGB Code | rgb(255, 174, 229) |
HSL Code | hsl(319, 100%, 84%) |
#ffaee5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(255, 174, 229); }
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(319, 100%, 84%); }
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 #ffaee5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(255, 174, 229, 10%) | #ffaee51a | |
rgb(255, 174, 229, 20%) | #ffaee533 | |
rgb(255, 174, 229, 40%) | #ffaee54C | |
rgb(255, 174, 229, 60%) | #ffaee599 | |
rgb(255, 174, 229, 80%) | #ffaee5CC | |
rgb(255, 174, 229, 100%) | #ffaee5FF |
Saturated and desaturated colors of #ffaee5
HSL Code | Preview |
---|---|
hsl(319, 10%, 84%) | |
hsl(319, 20%, 84%) | |
hsl(319, 40%, 84%) | |
hsl(319, 60%, 84%) | |
hsl(319, 80%, 84%) | |
hsl(319, 100%, 84%) |
#ffaee5 Color Usage In CSS
body { color: #ffaee5; } p { color: rgb(255, 174, 229); } header { border-bottom:1px solid #ffaee5; }