#027f87 Color
Color Codes | |
---|---|
Hex Code | #027f87 |
RGB Code | rgb(02, 127, 135) |
HSL Code | hsl(184, 97%, 27%) |
#027f87 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(02, 127, 135); }
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(184, 97%, 27%); }
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 #027f87
RGB Code | Hex Code | Preview |
---|---|---|
rgb(02, 127, 135, 10%) | #027f871a | |
rgb(02, 127, 135, 20%) | #027f8733 | |
rgb(02, 127, 135, 40%) | #027f874C | |
rgb(02, 127, 135, 60%) | #027f8799 | |
rgb(02, 127, 135, 80%) | #027f87CC | |
rgb(02, 127, 135, 100%) | #027f87FF |
Saturated and desaturated colors of #027f87
HSL Code | Preview |
---|---|
hsl(184, 10%, 27%) | |
hsl(184, 20%, 27%) | |
hsl(184, 40%, 27%) | |
hsl(184, 60%, 27%) | |
hsl(184, 80%, 27%) | |
hsl(184, 100%, 27%) |
#027f87 Color Usage In CSS
body { color: #027f87; } p { color: rgb(02, 127, 135); } header { border-bottom:1px solid #027f87; }