#0faebf Color
Color Codes | |
---|---|
Hex Code | #0faebf |
RGB Code | rgb(15, 174, 191) |
HSL Code | hsl(186, 85%, 40%) |
#0faebf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(15, 174, 191); }
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(186, 85%, 40%); }
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 #0faebf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(15, 174, 191, 10%) | #0faebf1a | |
rgb(15, 174, 191, 20%) | #0faebf33 | |
rgb(15, 174, 191, 40%) | #0faebf4C | |
rgb(15, 174, 191, 60%) | #0faebf99 | |
rgb(15, 174, 191, 80%) | #0faebfCC | |
rgb(15, 174, 191, 100%) | #0faebfFF |
Saturated and desaturated colors of #0faebf
HSL Code | Preview |
---|---|
hsl(186, 10%, 40%) | |
hsl(186, 20%, 40%) | |
hsl(186, 40%, 40%) | |
hsl(186, 60%, 40%) | |
hsl(186, 80%, 40%) | |
hsl(186, 100%, 40%) |
#0faebf Color Usage In CSS
body { color: #0faebf; } p { color: rgb(15, 174, 191); } header { border-bottom:1px solid #0faebf; }