#1f979b Color
Color Codes | |
---|---|
Hex Code | #1f979b |
RGB Code | rgb(31, 151, 155) |
HSL Code | hsl(182, 67%, 36%) |
#1f979b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(31, 151, 155); }
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(182, 67%, 36%); }
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 #1f979b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(31, 151, 155, 10%) | #1f979b1a | |
rgb(31, 151, 155, 20%) | #1f979b33 | |
rgb(31, 151, 155, 40%) | #1f979b4C | |
rgb(31, 151, 155, 60%) | #1f979b99 | |
rgb(31, 151, 155, 80%) | #1f979bCC | |
rgb(31, 151, 155, 100%) | #1f979bFF |
Saturated and desaturated colors of #1f979b
HSL Code | Preview |
---|---|
hsl(182, 10%, 36%) | |
hsl(182, 20%, 36%) | |
hsl(182, 40%, 36%) | |
hsl(182, 60%, 36%) | |
hsl(182, 80%, 36%) | |
hsl(182, 100%, 36%) |
#1f979b Color Usage In CSS
body { color: #1f979b; } p { color: rgb(31, 151, 155); } header { border-bottom:1px solid #1f979b; }