#07f1af Color
Color Codes | |
---|---|
Hex Code | #07f1af |
RGB Code | rgb(07, 241, 175) |
HSL Code | hsl(163, 94%, 49%) |
#07f1af Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 241, 175); }
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(163, 94%, 49%); }
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 #07f1af
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 241, 175, 10%) | #07f1af1a | |
rgb(07, 241, 175, 20%) | #07f1af33 | |
rgb(07, 241, 175, 40%) | #07f1af4C | |
rgb(07, 241, 175, 60%) | #07f1af99 | |
rgb(07, 241, 175, 80%) | #07f1afCC | |
rgb(07, 241, 175, 100%) | #07f1afFF |
Saturated and desaturated colors of #07f1af
HSL Code | Preview |
---|---|
hsl(163, 10%, 49%) | |
hsl(163, 20%, 49%) | |
hsl(163, 40%, 49%) | |
hsl(163, 60%, 49%) | |
hsl(163, 80%, 49%) | |
hsl(163, 100%, 49%) |
#07f1af Color Usage In CSS
body { color: #07f1af; } p { color: rgb(07, 241, 175); } header { border-bottom:1px solid #07f1af; }