#27b38b Color
Color Codes | |
---|---|
Hex Code | #27b38b |
RGB Code | rgb(39, 179, 139) |
HSL Code | hsl(163, 64%, 43%) |
#27b38b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(39, 179, 139); }
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, 64%, 43%); }
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 #27b38b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(39, 179, 139, 10%) | #27b38b1a | |
rgb(39, 179, 139, 20%) | #27b38b33 | |
rgb(39, 179, 139, 40%) | #27b38b4C | |
rgb(39, 179, 139, 60%) | #27b38b99 | |
rgb(39, 179, 139, 80%) | #27b38bCC | |
rgb(39, 179, 139, 100%) | #27b38bFF |
Saturated and desaturated colors of #27b38b
HSL Code | Preview |
---|---|
hsl(163, 10%, 43%) | |
hsl(163, 20%, 43%) | |
hsl(163, 40%, 43%) | |
hsl(163, 60%, 43%) | |
hsl(163, 80%, 43%) | |
hsl(163, 100%, 43%) |
#27b38b Color Usage In CSS
body { color: #27b38b; } p { color: rgb(39, 179, 139); } header { border-bottom:1px solid #27b38b; }