#69ffec Color
Color Codes | |
---|---|
Hex Code | #69ffec |
RGB Code | rgb(105, 255, 236) |
HSL Code | hsl(172, 100%, 71%) |
#69ffec Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 255, 236); }
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(172, 100%, 71%); }
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 #69ffec
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 255, 236, 10%) | #69ffec1a | |
rgb(105, 255, 236, 20%) | #69ffec33 | |
rgb(105, 255, 236, 40%) | #69ffec4C | |
rgb(105, 255, 236, 60%) | #69ffec99 | |
rgb(105, 255, 236, 80%) | #69ffecCC | |
rgb(105, 255, 236, 100%) | #69ffecFF |
Saturated and desaturated colors of #69ffec
HSL Code | Preview |
---|---|
hsl(172, 10%, 71%) | |
hsl(172, 20%, 71%) | |
hsl(172, 40%, 71%) | |
hsl(172, 60%, 71%) | |
hsl(172, 80%, 71%) | |
hsl(172, 100%, 71%) |
#69ffec Color Usage In CSS
body { color: #69ffec; } p { color: rgb(105, 255, 236); } header { border-bottom:1px solid #69ffec; }