#74c2b3 Color
Color Codes | |
---|---|
Hex Code | #74c2b3 |
RGB Code | rgb(116, 194, 179) |
HSL Code | hsl(168, 39%, 61%) |
#74c2b3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(116, 194, 179); }
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(168, 39%, 61%); }
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 #74c2b3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(116, 194, 179, 10%) | #74c2b31a | |
rgb(116, 194, 179, 20%) | #74c2b333 | |
rgb(116, 194, 179, 40%) | #74c2b34C | |
rgb(116, 194, 179, 60%) | #74c2b399 | |
rgb(116, 194, 179, 80%) | #74c2b3CC | |
rgb(116, 194, 179, 100%) | #74c2b3FF |
Saturated and desaturated colors of #74c2b3
HSL Code | Preview |
---|---|
hsl(168, 10%, 61%) | |
hsl(168, 20%, 61%) | |
hsl(168, 40%, 61%) | |
hsl(168, 60%, 61%) | |
hsl(168, 80%, 61%) | |
hsl(168, 100%, 61%) |
#74c2b3 Color Usage In CSS
body { color: #74c2b3; } p { color: rgb(116, 194, 179); } header { border-bottom:1px solid #74c2b3; }