#05f9ac Color
Color Codes | |
---|---|
Hex Code | #05f9ac |
RGB Code | rgb(05, 249, 172) |
HSL Code | hsl(161, 96%, 50%) |
#05f9ac Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 249, 172); }
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(161, 96%, 50%); }
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 #05f9ac
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 249, 172, 10%) | #05f9ac1a | |
rgb(05, 249, 172, 20%) | #05f9ac33 | |
rgb(05, 249, 172, 40%) | #05f9ac4C | |
rgb(05, 249, 172, 60%) | #05f9ac99 | |
rgb(05, 249, 172, 80%) | #05f9acCC | |
rgb(05, 249, 172, 100%) | #05f9acFF |
Saturated and desaturated colors of #05f9ac
HSL Code | Preview |
---|---|
hsl(161, 10%, 50%) | |
hsl(161, 20%, 50%) | |
hsl(161, 40%, 50%) | |
hsl(161, 60%, 50%) | |
hsl(161, 80%, 50%) | |
hsl(161, 100%, 50%) |
#05f9ac Color Usage In CSS
body { color: #05f9ac; } p { color: rgb(05, 249, 172); } header { border-bottom:1px solid #05f9ac; }