#0ef774 Color
Color Codes | |
---|---|
Hex Code | #0ef774 |
RGB Code | rgb(14, 247, 116) |
HSL Code | hsl(146, 94%, 51%) |
#0ef774 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(14, 247, 116); }
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(146, 94%, 51%); }
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 #0ef774
RGB Code | Hex Code | Preview |
---|---|---|
rgb(14, 247, 116, 10%) | #0ef7741a | |
rgb(14, 247, 116, 20%) | #0ef77433 | |
rgb(14, 247, 116, 40%) | #0ef7744C | |
rgb(14, 247, 116, 60%) | #0ef77499 | |
rgb(14, 247, 116, 80%) | #0ef774CC | |
rgb(14, 247, 116, 100%) | #0ef774FF |
Saturated and desaturated colors of #0ef774
HSL Code | Preview |
---|---|
hsl(146, 10%, 51%) | |
hsl(146, 20%, 51%) | |
hsl(146, 40%, 51%) | |
hsl(146, 60%, 51%) | |
hsl(146, 80%, 51%) | |
hsl(146, 100%, 51%) |
#0ef774 Color Usage In CSS
body { color: #0ef774; } p { color: rgb(14, 247, 116); } header { border-bottom:1px solid #0ef774; }